Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Dokkabei97/forged-claude-code --skill mvp-scaffoldgit clone --depth 1 https://github.com/Dokkabei97/forged-claude-codeWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/dokkabei97/forged-claude-code/mvp-scaffold)<a href="https://agentmods.dev/skills/dokkabei97/forged-claude-code/mvp-scaffold"><img src="https://agentmods.dev/badge/skills/dokkabei97/forged-claude-code/mvp-scaffold/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/dokkabei97/forged-claude-code/mvp-scaffold"><img src="https://agentmods.dev/badge/skills/dokkabei97/forged-claude-code/mvp-scaffold.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00050 | $0.01653 |
| Opus 5 | $0.00025 | $0.00826 |
| Sonnet 5 | $0.00010 | $0.00331 |
| Haiku 4.5 | $0.00005 | $0.00165 |
Grade A, and why
mvp-scaffold scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MVP Scaffold - Startup Project Scaffolding
Overview
Generates a complete, production-ready project skeleton optimized for startup speed. From zero to deployable in minutes, not days.
1. When to Apply
| Trigger | Behavior |
|---|---|
| New project creation | Full scaffolding with interactive stack selection |
| Adding a new service to monorepo | Service scaffolding within existing structure |
| "scaffold", "init", "bootstrap" keywords | Activate scaffolding workflow |
2. Supported Stacks
Frontend
| Stack | Template | Best For |
|---|---|---|
| Next.js 15 (App Router) | next-startup |
Full-stack web app |
| React + Vite | react-vite |
SPA / Dashboard |
| React Native (Expo) | expo-startup |
Mobile-first product |
Backend
| Stack | Template | Best For |
|---|---|---|
| Next.js API Routes | (included in next-startup) | Simple API |
| FastAPI | fastapi-startup |
Python / AI / Data |
| Spring Boot (Kotlin) | spring-startup |
Enterprise B2B |
| NestJS | nest-startup |
Complex Node.js API |
Database
| Choice | Setup Included |
|---|---|
| Supabase (PostgreSQL) | Auth + DB + Storage + Realtime |
| Prisma + PostgreSQL | ORM + migrations + seeding |
| Drizzle + PostgreSQL | Lightweight ORM + type-safe |
| MongoDB Atlas | Mongoose models + connection |
3. Scaffolding Flow
Phase 1: Stack Selection
1. Ask product type (web/mobile/api/full-stack)
2. Ask backend preference (or recommend based on team skills)
3. Ask database preference (or recommend based on data model)
4. Ask auth method (Supabase Auth / Clerk / NextAuth)
5. Ask deployment target (Vercel / Railway / Docker)
Phase 2: Project Generation
Next.js Startup Template Structure:
{project-name}/
├── src/
│ ├── app/
│ │ ├── layout.tsx # Root layout with providers
│ │ ├── page.tsx # Landing page
│ │ ├── (auth)/
│ │ │ ├── login/page.tsx
│ │ │ └── signup/page.tsx
│ │ ├── (dashboard)/
│ │ │ └── page.tsx
│ │ └── api/
│ │ └── health/route.ts # Health check endpoint
│ ├── components/
│ │ ├── ui/ # shadcn/ui components
│ │ └── layout/
│ ├── lib/
│ │ ├── supabase.ts # DB client
│ │ ├── utils.ts
│ │ └── constants.ts
│ └── types/
│ └── index.ts
├── prisma/ # If Prisma selected
│ └── schema.prisma
├── public/
├── .env.example # Environment template
├── .env.local # (gitignored)
├── .gitignore
├── package.json
├── tsconfig.json
├── tailwind.config.ts
├── next.config.ts
├── docker-compose.yml # Local dev DB
├── Dockerfile # Production build
├── .github/
│ └── workflows/
│ └── ci.yml # CI pipeline
├── CLAUDE.md # AI context
└── README.md
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 204 lines · 50 tokens per session scan A af43263c9279
mvp-scaffold is a skill published in the GitHub repository Dokkabei97/forged-claude-code (2 stars, last pushed 6mo ago), licensed MIT. It adds 50 tokens to every session and 1,653 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
subagent-driven-development
Execute plans via delegatetask subagents (2-stage review).
mcporter
List, auth, and call MCP servers/tools from the terminal.
research-engineer
An uncompromising Academic Research Engineer. Operates with absolute scientific rigor, objective criticism, and zero flair. Focuses on theoretical correctness, formal verification, and optimal implementation across any required technology.
ha-data-stores
Map of Hope Agent's local data stores and safe read-only query workflow. Use when the user asks where Hope Agent stores data, wants to inspect sessions/messages/memory/logs/background jobs/knowledge indexes/settings, asks the model to query local app data, or debugging requires checking persisted state. Trigger…
telegram-setup
Connect a Telegram bot to the Vellum Assistant gateway with automated webhook registration and credential storage.
vellum-skills-catalog
Discover bundled skills and search/install community skills from the skills.sh registry.