Quickstart
Five minutes from “I cloned the repo” to “I can run /build-plan on a feature”.
Prerequisites
- Claude Code installed and signed in.
- Docker + docker compose (every service runs in a container).
- Git, Node.js ≥ 20, npm.
- A workspace directory where you can create new repositories.
1. Clone the framework
Open a terminal and create a new workspace folder:
mkdir my-workspace && cd my-workspacegit clone https://github.com/Silfaran/ai-standards.git2. Install the slash commands and skills
Copy the slash-command stubs and skills into the workspace’s .claude/ directory so Claude Code picks them up:
cp -r ai-standards/.claude/commands .claude/commandscp -r ai-standards/.claude/skills .claude/skillsThe framework ships 6 slash commands (/init-project, /create-specs, /refine-specs, /build-plan, /update-specs, /check-web) and ~16 on-demand skills.
3. Run /init-project
Open Claude Code in my-workspace/ and run:
/init-projectYou will be asked for:
- The project name (e.g.
red-profesionales). - The list of services that make up the project (e.g.
identity-service,api-gateway,web-front). - Whether to enable Playwright MCP (for the
/check-webaudit command).
The command scaffolds {project-name}-docs/ (your project’s docs repo, where specs / decisions / lessons-learned live), installs the agent model-tier PreToolUse hook into .claude/settings.json, and writes the .workspace-config-path pointer that lets every agent locate the project docs.
4. Your first feature
Once /init-project finishes, create a spec and run the pipeline:
/create-specsYou describe the feature in natural language; the Spec Analyzer writes a business spec under {project-name}-docs/specs/{Aggregate}/{feature-name}-specs.md. Review it, edit if needed, then run:
/refine-specsThis reads your codebase and turns the business spec into a technical spec + execution plan + task checklist. Review again, then run:
/build-planThis is the orchestrator. It generates per-phase bundles, spawns the agents in sequence (DevOps if needed, then Backend Developer ‖ Frontend Developer in parallel, then DoD-checker, then Reviewer loop, then Tester), reports the per-phase token cost, and asks you to confirm the merge into master.
See the your-first-feature walkthrough for the full narrative with example outputs.
5. (Optional) Install Playwright MCP for /check-web
If you want manual browser audits of your running UI, set up Playwright MCP per the USAGE guide. The /check-web command then walks your deployed UI, captures findings, and produces paste-ready /create-specs prompts.
What’s next
- Pipeline overview — the four-phase agent flow with diagrams.
- Token economics — real cost numbers per
/build-planrun. - Architecture deep dive — tech stack, spec lifecycle, full repo layout.