Commands

Commands — the cheat sheet

Everything you run, in one page. Slash commands work in Claude Code; every one has a create-ack CLI twin so you can drive the whole kit from a terminal too.

The 60-second flow

# 1. scaffold
npx @arthurghz/create-ack@latest my-app --archetype saas
cd my-app
2. /ack-spec        author the specs (the moment-0 interview) — specs lead, code follows
3. review specs  →  approve docs/contracts/C-001-*.contract.md  (status: draft → approved)
4. /ack-build       build the first slice from specs (multi-agent, contract-gated)
5. /ack-review      review the change with a team of agents before you open the PR
6. /ack-tooling     lint / types / tests / CI guardrails for your stack
7. /ack-cost        what did it cost? (offline, per feature) · /ack-reports for the full report
8. /ack-sync        pull new kit features into your fork over time

Drive by teams. Before you launch, enable real parallel agents:

export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1

The build commands always fan work out — teams make it concurrent.

Slash commands

CommandWhat it doesWhen
/ack-specAuthor the specs (PRD, ARCHITECTURE, DOMAIN, REQUIREMENTS, PLAN, …) + a lean CLAUDE.mdOnce, right after scaffolding
/ack-buildBuild the next slice from specs/PLAN.md — contract-first, fanned out to parallel agentsPer feature/slice
/ack-agentsFan any work out to parallel agents (the primitive the others use)Anytime you want parallelism
/ack-reviewMulti-agent review of your current diff (code + security + silent-failure) before a PRBefore every PR/merge
/ack-toolingStand up lint / format / types / tests / pre-commit / CI for your stackAfter the first slice
/ack-costAI spend per feature + overall, plus DORA — offlineAnytime
/ack-reportsThe full delivery + cost report (DORA four keys + cost by feature)Weekly / before a review
/ack-featuresList build slices + their contract/status, and open/close per-feature cost windowsTo see/manage features
/ack-listInventory: contracts, slices, features, skills, agents, commands, gate postureTo get oriented fast
/ack-updateCheck whether a newer kit version is publishedPeriodically
/ack-syncPull the latest kit commands / agents / skills into your forkWhen /ack-update says you’re behind

CLI (create-ack / npx @arthurghz/create-ack@latest)

CommandWhat it does
create-ack <name> --archetype <x>Scaffold a new project (backend-api · fullstack · saas · monorepo · library-sdk · infra-iac)
create-ack spec|build|agents|tooling|review|listRun the matching slash command via Claude Code
create-ack cost|dora|report|dashboard|watchOffline cost / DORA / report / dashboard / live TUI
create-ack feature <name> [--end]Open/close a branch-free per-feature cost window
create-ack syncPull the latest kit payload into an existing fork
create-ack updateCheck for a newer @arthurghz/create-ack
Cost is offline — computed from local Claude Code transcripts × a versioned pricing.json (Claude Code has no live cost API). Every /ack-* command refuses to run inside the ai-core-kit repo itself; they are fork commands.