Aller au contenu principal

Quick Start - claude-base

Get started with claude-base in 5 minutes

Installation (30 seconds)

# After installing the foundation (curl | bash — see README)
claude-base init --simple /path/to/your-project

# Or from your project, current directory
claude-base init --simple .

A default install is core-only (work, dev, qa, ops, doc). The horizontal domains (biz, growth, legal), data engineering (the data domain, via the data-eng module) and platform/stack tooling are opt-in modules:

claude-base modules # list available modules + what's installed
claude-base add biz . # opt into a module
claude-base remove biz . # opt back out

First usage

The foundation's mandatory workflow, step by step:

1. Explore the project

/work:work-explore "Understand the architecture"

2. (optional) Brainstorm alternatives

/work:work-brainstorm "To add OAuth, which approaches?"

3. Specify the feature

/work:work-specify "Add OAuth authentication"

4. Plan the implementation

/work:work-plan "Implement Google OAuth"

5. Develop with TDD

/dev:dev-tdd "OAuth authentication flow"

6. Audit (mandatory before commit)

/qa:qa-loop "score 90" # Audit + fix loop until target score

7. Commit

/work:work-commit

Full workflow

┌─────────┐ ┌──────────┐ ┌─────────┐ ┌──────┐ ┌─────┐ ┌───────┐ ┌────────┐
│ EXPLORE │→│BRAINSTORM│→│ SPECIFY │→│ PLAN │→│ TDD │→│ AUDIT │→│ COMMIT │
│ │ │ (option) │ │ │ │ │ │ │ │ ≥ 90 │ │ + PR │
└─────────┘ └──────────┘ └─────────┘ └──────┘ └─────┘ └───────┘ └────────┘

Skip for trivial changes: /work:work-quick (< 50 LOC, 1-3 files).

Most used commands

CommandUsage
/work:work-exploreUnderstand existing code
/work:work-specifyCreate a functional specification
/work:work-planPlan an implementation
/dev:dev-tddDevelop with tests
/work:work-commitCreate a clean commit
/work:work-prCreate a Pull Request
/qa:qa-loopAudit + fix loop (score 90 by default) — recommended before commit
/qa:qa-securityOWASP security audit
/qa:qa-auditFull audit (security + GDPR + a11y + perf) read-only

Shortcut workflows

CommandDescription
/work:work-flow-featureFull workflow for a new feature
/work:work-flow-bugfixFull workflow for a bug fix
/work:work-flow-releaseFull workflow for a release
/work:work-flow-launchFull workflow for a product launch
/work:work-quickTrivial change (< 50 LOC, 1-3 files) — skip full cycle

Help

  • /assistant - Smart entry point that guides you to the right commands (guide mode)
  • /assistant-auto - Automatic execution of the adapted workflow (auto mode)
  • See CLAUDE.md for full documentation
  • See ARCHITECTURE.md to understand Commands vs Agents vs Skills

Resources