new-project

Solid

Full project bootstrap - interviews the developer (name, description, stack, components), then scaffolds directory structure, CLAUDE.md, config files, hooks, skills, and first commit.

AI & Automation 79 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 89/100

Stars 20%
63
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# New Project Bootstrap <!-- Mirrors AGENT.md in the agent-starter repo. If guides change, update this skill to match. --> 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: ```bash # 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 installs for 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" done echo "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 **miss...

Details

Author
sneg55
Repository
sneg55/agent-starter
Created
3 months ago
Last Updated
today
Language
Shell
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category