app-scaffolder

app-scaffolder is an agent for Claude Code from avelikiy/great_cto. It costs 137 tokens per session (1,414 once invoked), scanned A, original, MIT.

A project setup agent that creates the basic working structure for a web application using a fixed technology stack. It connects the database, authentication, environment settings, continuous integration, and a smoke test.

In plain words
What is it for?
Use it to create a deployable Next.js and TypeScript foundation with Tailwind, shadcn, Drizzle, Postgres, Auth.js, project folders, and CI.
Why use it?
It removes the repetitive setup work before feature development and helps ensure the empty application actually runs.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is bash scripts/log-verdict.sh app-scaffolder <DONE|BLOCKED> auto scaffold=docs/SCAFFOLD-<slug>.md.

Part of the great-cto plugin — 40 skills, 44 commands, 70 agents shipped together

Good fit Use it to create a deployable Next.js and TypeScript foundation with Tailwind, shadcn, Drizzle, Postgres, Auth.js, project folders, and CI.

Compare 6 agents from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/avelikiy/great_cto
agentmods
npx agentmods add agents/avelikiy/great_cto/app-scaffolder

Made for: Claude Code.

Or install great-cto, the plugin that ships this one along with the rest of its 40 skills, 44 commands, 70 agents.

Wrote 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.

agentmods badge for app-scaffolder

README.md
[![agentmods](https://agentmods.dev/badge/agents/avelikiy/great_cto/app-scaffolder/github.svg)](https://agentmods.dev/agents/avelikiy/great_cto/app-scaffolder)
Your own site
<a href="https://agentmods.dev/agents/avelikiy/great_cto/app-scaffolder"><img src="https://agentmods.dev/badge/agents/avelikiy/great_cto/app-scaffolder/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.

agentmods 80×15 button for app-scaffolder

Your own site · 80×15
<a href="https://agentmods.dev/agents/avelikiy/great_cto/app-scaffolder"><img src="https://agentmods.dev/badge/agents/avelikiy/great_cto/app-scaffolder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 137 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,414 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00137 $0.01414
Opus 5 $0.00068 $0.00707
Sonnet 5 $0.00027 $0.00283
Haiku 4.5 $0.00014 $0.00141

Measured 4d ago against content hash c3888c047e39, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

app-scaffolder 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 4d 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.

agents/app-scaffolder.md · 108 lines

How it starts

The opening of the file, as written. The whole thing — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.

App Scaffolder

You stand up the working base application every product builds on — the skeleton, wired and deployable, from the pinned stack. senior-dev should open a repo where the stack is already running and write the first feature, not spend the first hour wiring Tailwind and a DB client. A scaffold that "looks done" but doesn't run is worse than none.

Pipeline position: gate:plan (approved) → you (first) → senior-dev → … Output: the scaffolded app (real files) + docs/SCAFFOLD-{slug}.md (what's wired + how to run).

Altitude

  • You build the skeleton, not the features. A deployable empty app: routes shell, layout, design tokens, DB connected, auth wired to the contract, CI green, one smoke test passing.
  • You do not implement product features or business logic — that's senior-dev against the design/integration/auth contracts. You hand them a running floor.

Step 0 — read the inputs (mandatory)

  1. .great_cto/PROJECT.md + the stack-baseline skill — the pinned stack (don't re-decide it; if PROJECT.md pins a stack, that wins).
  2. docs/architecture/ARCH-{slug}.md — the data model (for the initial Drizzle schema + migration, applying migration-ready-schema).
  3. docs/auth/AUTH-{slug}.md — wire Auth.js/Clerk to the chosen tenant model (don't invent it).
  4. docs/design/DESIGN-{slug}.md (if present) — design tokens → Tailwind/shadcn theme.

What "scaffolded" means — the checklist (all must hold)

  1. It runs. dev server boots; the home route renders; build succeeds. No TODO that breaks compile.
  2. Stack wired to baseline. Next.js App Router + TS + Tailwind + shadcn installed and themed; Drizzle client + a .env.example; Auth.js configured to the auth contract with a protected route demonstrating tenant scoping.
  3. DB schema + first migration generated from ARCH's data model (with source_ref + import_batch_id per migration-ready-schema), and migrate runs clean against a local PG.
  4. Folder structure + conventions established (routes, components, lib, db, server actions) so senior-dev's features have a home.
  5. CI green — lint + typecheck + one smoke test (home renders, a protected route 401s unauthenticated) passing via Vitest/Playwright.
  6. Env + secrets templated.env.example lists every key (Stripe/Resend/Twilio/DB/auth) with placeholders; nothing real committed.
  7. Deploy config present — Vercel/CF config + the infra-provisioner handoff for the real DB + host + domain (you do NOT provision prod; you make it deployable).

Read the full file on GitHub · 108 lines

Changes

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.

  1. 4d ago Changed c3888c047e39
  2. 10d ago First seen · 108 lines · 137 tokens per session scan A f263b7cf6541

Subscribe to this mod's changes

app-scaffolder is an agent published in the GitHub repository avelikiy/great_cto (92 stars, last pushed today), licensed MIT. It adds 137 tokens to every session and 1,414 once invoked, about $0.0007 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-30.

Related

Other agents, from other repositories

fec-code-reviewer

Senior review focusing on front-end code (React/Vue/Next/Nuxt, TypeScript, styles, client-side security). Delegate after writing or modifying the front-end; by default, only the review report will be output and placed, and the business code will not be modified directly. Press CRITICAL→LOW to check, control noise and…

bovinphang/frontend-craft · 95 tokens

fec-performance-optimizer

Front-end performance analysis and optimization specialization: Core Web Vitals, packaging volume, runtime and rendering, network and cache, memory leak troubleshooting; can cooperate with Lighthouse, Bundle analysis and Profiler. Use it when users mention page slowness, lag, first screen, package size, poor…

bovinphang/frontend-craft · 0 tokens

fec-architect

Use this subagent when the task involves page splitting, component architecture, state flow design, catalog planning, data flow design, module boundary demarcation, or large front-end refactoring. Save the architecture proposal report as a Markdown file.

bovinphang/frontend-craft · 52 tokens

fec-e2e-runner

Front-end end-to-end testing specialist: writing and maintaining key user journeys, executing Playwright/Cypress, managing unstable use cases, managing screenshots/Trace/videos and CI products. Delegate when you need to generate, run or repair E2E, or ensure core processes are testable. If the environment has…

bovinphang/frontend-craft · 0 tokens

fec-figma-implementer

Focus on implementing the proxy of UI components accurately according to the design draft, and save the implementation report as a Markdown file. Supports six design tools: Figma, Sketch, MasterGo, Pixso, Ink Knife, and Mockup. Provide design draft links, selection screenshots or annotation data, automatically obtain…

bovinphang/frontend-craft · 0 tokens

fec-ui-checker

Use this subagent to troubleshoot visual defects, layout confusion, CSS issues, responsive exceptions, and inconsistencies between interaction and design in the front-end UI, and save the report as a Markdown file. Supports obtaining design data from Figma, Sketch, MasterGo, Pixso, Moko, and Mock, compares the design…

bovinphang/frontend-craft · 0 tokens