Skip to main content

Installation

Set up the AI Team Workflow in your project.

Quick Start

npx create-ai-team

This will:

  1. Ask for your project folder name
  2. Let you select which components to install
  3. Create the folder structure

What Gets Installed

your-project/
├── .claude/
│ └── commands/
│ ├── write-spec.md # PM/BA: Create specs via conversation
│ ├── develop-feature.md # Dev: Build from specs
│ ├── fix-issue.md # Dev: Fix bugs with context
│ └── trace-flow.md # Dev: Trace code flow
├── .github/
│ └── workflows/ # Optional: GitHub Actions
└── docs/
└── example-feature/ # Optional: Example spec
└── spec.md

Options

ComponentDescription
Claude Code commands/write-spec, /develop-feature, /fix-issue, /trace-flow
GitHub ActionsDoc change notifications, n8n triggers
Example feature docSample spec.md to learn the format

Update Existing Install

npx create-ai-team --update

This backs up existing files and updates to latest templates.

Example Repository

See a working example: github.com/quochuydev/workflow/tree/main/examples

Next Steps

RoleNext
PM/BAGetting Started for PM/BA
DeveloperGetting Started for Developers