Full project bootstrap - interviews the developer (name, description, stack, components), then scaffolds directory structure, CLAUDE.md, config files, hooks, skills, and first commit.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
A direct command skips the review prompt. Inspect the source before running it.
Full project bootstrap - interviews the developer (name, description, stack, components), then scaffolds directory structure, CLAUDE.md, config files, hooks, skills, and first commit.
user_invocable
true
allowed-tools
["Read","Write","Edit","Bash","Glob"]
New Project Bootstrap
Use when starting a new project from scratch. Scaffolds a complete AI-friendly project following the agent-starter patterns: feature-based directory structure, CLAUDE.md with memory taxonomy, config files, optional hooks and skills, first commit.
For existing projects, use /adopt-project instead.
Phase 0: Detect what's already installed
Hooks and skills install system-wide under ~/.claude/, so they're shared
across every project. Detect them first and never ask about components that are
already present. Run:
# Hooks: install.sh stamps this file with the installed version
HOOKS_VER=$( [ -f ~/.claude/hooks/.agent-starter-version ] && cat ~/.claude/hooks/.agent-starter-version || echo"" )
HOOKS_N=$( ls ~/.claude/hooks/*.sh 2>/dev/null | wc -l | tr -d ' ' )
# Skills: the starter skills this bootstrap installsfor s in commit commit-push-pr simplify remember dream new-project adopt-project reflect; do
[ -d ~/.claude/skills/$s ] && echo"skill:$s present" || echo"skill:$s missing"doneecho"hooks: version ${HOOKS_VER:-none}, $HOOKS_N scripts"
Interpret the output:
Hooks installed if .agent-starter-version exists (or hook scripts are
found). Record the stamped version.
Skills installed per directory listed as present.
Carry this into the interview and scaffold: only ask about, and only install,
what's missing. If a stamped hooks version is present but older than the
repo VERSION (checked in Phase 1 once you have the repo path), note that an
update is available and offer to re-run install.sh (idempotent) - don't force it.
Phase 1: Interview
Ask these questions one at a time before taking any action:
Project name - what is the name of the project?
Description - one sentence describing what it does.
Optional components - ask only about what Phase 0 reported as missing.
If hooks and all skills are already installed, skip this question entirely -
state what was detected ("Hooks v0.4.4 and all 8 skills already installed
system-wide, skipping") and move on. Otherwise offer the missing set:
Hooks (auto-enforce file size limits, lint-on-save, silent-error and dangerous-command blocking, codebase health checks at ~/.claude/hooks/)
Repo path - what is the local path to the agent-starter repo? (e.g. ~/code/agent-starter). Always required: the CLAUDE.md template, foundation templates, and lint configs are all copied from the repo. (Hooks and skills also install from here when selected and not already present.)
Do not proceed past this step until you have all answers.
Design principle: organize by feature, not by technical layer. Each feature gets its own directory under src/features/ with ALL related files (implementation, types, constants, validation, tests). Keep files under 200 lines each. Shared type definitions go in src/types/ to break import cycles. Named constants go in src/constants/ (no magic strings anywhere).
2. Generate CLAUDE.md
Copy the canonical template - do not inline or hand-write it, so it never
drifts from templates/CLAUDE.md (which carries the Memory System, Git Safety,
Implementation Notes, and Self-improvement loop sections):
# Required environment variables - copy to .env and fill in values
README.md at <project-name>/README.md:
# <project-name><project-description>## Getting Started
<!-- Add setup instructions here -->
CLAUDE.local.md at <project-name>/CLAUDE.local.md (gitignored above - personal, machine-local instructions that never get committed):
# Personal Instructions (local only)
<!-- Your personal preferences for this project. Not committed. -->
.claude/rules/ - modular instruction files the agent loads alongside CLAUDE.md. Create the directory and the apply-on-touch pattern index, which is the same file /adopt-project writes (Tier 4):
# Starter patterns - apply on touch
Apply these when already editing the relevant code. Never as a bulk refactor.
- Editing a file over 300 lines -> split per the file-size hook's suggestions
(types / constants / validation / utils).
- Touching a `throw` / `raise` site -> route it through the error registry
(`guides/error-id-registry.md`).
- Changing a fallible function's signature -> consider returning a Result
(`guides/discriminated-union-results.md`).
- Touching an env read -> move it behind the env boundary
(`guides/zod-at-the-boundary.md`).
- Adding a long-running operation -> thread cancellation through it
(`guides/abort-signal-threading.md`).
- Adding a new tool -> use the directory-per-tool layout
(`guides/tool-authoring-pattern.md`).
Optionally also create topic stubs (testing.md, git-workflow.md, code-style.md, security.md) per templates/NEW_PROJECT_PROMPT.md - offer these but don't force them.
Lint configs - if the stack is TypeScript/JavaScript:
cp <repo-path>/templates/biome.jsonc <project-name>/biome.jsonc
cp <repo-path>/templates/eslint.config.mjs <project-name>/eslint.config.mjs
cd <project-name> && npm i -D @biomejs/biome eslint typescript-eslint eslint-plugin-import \
eslint-plugin-sonarjs eslint-plugin-security eslint-plugin-eslint-comments
These are the "create from day one" foundation files (see
templates/NEW_PROJECT_PROMPT.md -> Foundation Files): a centralized env
boundary, a numbered error registry, and an output truncator. Copy them for the
matching stack and adapt import paths to the layout.
Skip for other stacks (Rust, Go, etc.) - point the developer at the guides above
to build equivalents.
5. Install hooks (if selected and not already installed)
Skip if Phase 0 detected hooks already installed and the stamped version
matches the repo VERSION - they're system-wide, so they already cover this
project. If installed but stale, offer to update by re-running the installer
(it's idempotent). Otherwise run it now.
The installer copies the hooks (and lib/) to ~/.claude/hooks/, stamps the
installed version, and merges the hook wiring into ~/.claude/settings.json
with jq. Existing entries are preserved and re-running never duplicates
anything - do not hand-edit the JSON:
bash <repo-path>/install.sh
Hook behavior (wired by default):
check-file-size.sh - runs after every Write/Edit. Blocks (exit 2) files over 300 lines; warns over 200 lines. Skips .md, .json, .yaml.
lint-on-edit.sh - Biome + ESLint on save for JS/TS; ruff check + format for Python.
check-silent-errors.sh - blocks writes that introduce swallowed exceptions.
block-dangerous-commands.sh - blocks force-push, git reset --hard, recursive rm on //~, before they run.
check-codebase-health.sh - runs at session start. Reports files over 500 lines that need splitting. Silent when healthy.
suggest-loop-improvements.sh - when you run /loop, proposes 2-3 tighter drop-in rewrites (explicit success criteria, stop condition, scope, verification) and lets you pick one via an interactive menu. Scoped to /loop only (client-side commands like /goal run before Claude's turn, so they can't be gated).
Optional: --with-read-guard also wires track-reads.sh + require-read-before-edit.sh. Recent Claude Code versions enforce read-before-edit natively, so only add it for older versions.
6. Install skills (if selected and not already installed)
Copy only the skills Phase 0 reported as missing. Skills are system-wide,
so any already present already cover this project - leave them as-is rather than
overwriting (a blind cp -r would clobber local edits). The guard below copies
each skill only when its directory is absent:
mkdir -p ~/.claude/skills
for s in commit commit-push-pr simplify remember dream new-project adopt-project reflect; do
[ -d ~/.claude/skills/$s ] || cp -r <repo-path>/skills/$s ~/.claude/skills/
done
To deliberately refresh an already-installed skill (e.g. after pulling a newer
repo), copy that one explicitly: cp -r <repo-path>/skills/<name> ~/.claude/skills/.
Installed skills:
/commit - single well-crafted git commit with "why not what" message
/commit-push-pr - full workflow: branch, commit, push, create/update PR
/simplify - 3 parallel agents review your diff for reuse, quality, efficiency
/remember - review auto-memory and promote to CLAUDE.md or CLAUDE.local.md
The enforcement hooks use hooks/lib/log-event.sh to append structured events to
.harness/ledger.jsonl as the agent works. Run /reflect periodically: it reads
the ledger via harness-ledger-stats.sh, clusters recurring mistakes, and proposes
rule / threshold / ADR changes for your approval. See templates/CLAUDE.md →
"Self-improvement loop".