SlopScore
00 crowd

personal-website

Personal website built with Claude Code mobile app
Open repo on GitHub Open the demogithub.com/andrewaarestad/personal-website
TypeScript · ★ 1 · 0 forks · MIT · paperwork by the Cap'mmostly ai (inferred)light human (inferred)works-on-my-machine (inferred)other🤖 claude-code
listed 2 hours ago by andrewaarestad · last checked 2 hours ago
The owner didn't write this. This repo never submitted itself. The Cap'm found it on a truffle trawl and wrote its paperwork from what GitHub already shows. Picked by hand by the Cap'm on 2026-09-14: Personal website built with Claude Code mobile app; its own README says "Personal website built with Claude Code mobile app". 1 stars; MIT license. The owner did not submit this. Votes count; awards don't until the owner claims it.

I'm not calling your project slop! Geeze, it's a joke... Do you own this repo?

Log in with GitHub as andrewaarestad. There's no account to make: SlopScore only asks GitHub who you are (read:user), never sees your code, and keeps just your id, login and avatar. Then you can:

  • Keep it, on your terms. Commit your own slopscore.md (spec) and press Refresh. Your paperwork replaces the Cap'm's, and you can submit it for Slop of the Day.
  • Take it down. One click on Remove. It stays gone; the trawl never brings it back.

Log in with GitHub

Can't log in as the owner? Request a takedown. No login needed, and a trawled listing comes down right away.

GitHub says
Personal website built with Claude Code mobile app
website
https://personal-website-website.vercel.app
created
2025-11-01 · pushed 1 month ago · 36 commits · 2 contributors
languages
TypeScript 96%CSS 4%Shell 1%JavaScript 0%
paperwork
licensereadme 42% health
dependencies
no dependency graph (no manifest, or disabled) · OSV.dev, checked 2 hours ago

Disclosures, inferred by the Cap'm

slopbucket
vibe-coded
category
other
ai_generated
mostly
human_touch
light
status
works-on-my-machine
built_with
claude-code
language (detected)
cssjavascriptshelltypescript
license (detected)
mit

The Cap'm's log

The Cap'm wrote this paperwork, not the owner. This repo never submitted itself to SlopScore. The Cap'm picked it by hand: Personal website built with Claude Code mobile app; its own README says "Personal website built with Claude Code mobile app". It carries the MIT license. The disclosures above are his best guess from what GitHub shows.

Is this yours? Commit a real slopscore.md and press Refresh to replace this, or remove the listing in one click. There's no account to make: you log in with GitHub.

README — the repo's own words, folded up so the grading fits on one screen

Personal Website

A modern personal website built with Next.js 15 - A playground and showcase for AI-assisted development

PR Checks License: MIT

Overview

This repository houses a personal website with a focus on modern web technologies and AI-assisted development workflows. It serves as both a functional website and a public example of how AI agents can effectively contribute to software development.

Tech Stack

  • Framework: Next.js 15 (App Router, React 19)
  • Language: TypeScript 5.7 (strict mode)
  • Database: PostgreSQL with Prisma ORM
  • Styling: Tailwind CSS 3 with shadcn/ui
  • Monorepo: Turborepo with pnpm workspaces
  • Testing: Vitest + Testing Library + Playwright
  • CI/CD: GitHub Actions

Project Structure

personal-website/
├── apps/
│   └── website/              # Next.js application
│       ├── src/
│       │   ├── app/         # App Router pages
│       │   ├── components/  # React components
│       │   └── lib/         # Utilities
│       └── public/          # Static assets
│
├── packages/
│   └── db-client/           # Shared database client (Prisma)
│       ├── src/             # Client code
│       └── prisma/          # Database schema
│
├── .github/
│   └── workflows/           # CI/CD workflows
│
└── docs/                    # Documentation

Getting Started

Prerequisites

  • Node.js: 22 or higher
  • pnpm: 9 or higher
  • PostgreSQL: 14 or higher (for database features)

Installation

  1. Clone the repository:

    git clone https://github.com/andrewaarestad/personal-website.git
    cd personal-website
  2. Install dependencies:

    pnpm install
  3. Set up environment variables:

    cp apps/website/.env.example apps/website/.env
    cp packages/db-client/.env.example packages/db-client/.env
    # Edit .env files with your configuration
  4. Generate Prisma client:

    cd packages/db-client
    pnpm db:generate
  5. Start development server:

    pnpm dev

Visit http://localhost:3000 to see the website.

Available Scripts

Root Commands

  • pnpm dev - Start all packages in development mode
  • pnpm build - Build all packages
  • pnpm test - Run tests across all packages
  • pnpm lint - Lint all packages
  • pnpm type-check - Type check all packages
  • pnpm format - Format all files with Prettier
  • pnpm format:check - Check formatting
  • pnpm clean - Clean all build artifacts and dependencies

Package-Specific Commands

# Run commands in specific packages
pnpm --filter @personal-website/website dev
pnpm --filter @personal-website/db-client build

Monorepo Architecture

This project uses Turborepo for high-performance monorepo management:

  • Intelligent Caching: Turborepo caches task outputs for faster rebuilds
  • Parallel Execution: Tasks run in parallel when possible
  • Dependency Graph: Automatic task ordering based on package dependencies

Packages

@personal-website/website

The main Next.js application with:

  • Server Components for optimal performance
  • shadcn/ui integration for beautiful UI components
  • Configured for content management (future)
  • Admin interface (future)

@personal-website/db-client

Shared database client with:

  • Prisma ORM for type-safe database access
  • PostgreSQL schema with migrations
  • Reusable across applications

AI-Assisted Development

This repository is designed as a showcase for AI agent collaboration. See docs/ai-agents.md for details on:

  • Using shadcn MCP for UI component generation
  • Using Playwright MCP for E2E testing
  • Best practices for AI-assisted development
  • Example prompts and workflows

Database

The project uses PostgreSQL with Prisma ORM:

# Generate Prisma client
pnpm --filter @personal-website/db-client db:generate

# Push schema to database (development)
pnpm --filter @personal-website/db-client db:push

# Create and run migrations (production)
pnpm --filter @personal-website/db-client db:migrate

# Open Prisma Studio (database GUI)
pnpm --filter @personal-website/db-client db:studio

Testing

Unit & Integration Tests

# Run all tests
pnpm test

# Watch mode
pnpm --filter @personal-website/website test:watch

E2E Tests (Future)

Playwright tests will be added for end-to-end testing with MCP integration.

Deployment

Deployment configurations will be added in future updates. The application is designed to work with:

  • Vercel - Recommended for Next.js
  • Railway - For PostgreSQL database
  • Docker - For containerized deployment

Contributing

This is a personal project, but contributions and suggestions are welcome! Feel free to:

  1. Open issues for bugs or feature requests
  2. Submit PRs for improvements
  3. Use this as a template for your own projects

CI/CD

GitHub Actions automatically runs on pull requests:

  • ✅ Format checking
  • ✅ Linting
  • ✅ Type checking
  • ✅ Building
  • ✅ Testing

See .github/workflows/pr-checks.yml for details.

Development Roadmap

  • Initial monorepo setup
  • Next.js app with shadcn/ui configuration
  • Database client with Prisma
  • GitHub Actions CI/CD
  • Content management system
  • Admin interface with authentication
  • Blog functionality
  • Image management
  • Playwright E2E tests
  • Production deployment

License

MIT © Andrew Aarestad

Read the rest on GitHub

Scan report · 2026-09-14
  • Prohibited terms or links
  • Repository eligibility
  • slopscore.md paperwork
  • Content policy
  • Risk review

0 comments

log in to comment.

report this listinglog in to report