Skip to content

Team Setup

This example walks through scs-team setup for a three-person development team working on a healthcare application. The team has existing documentation: a product requirements doc, an architecture decision record, and a HIPAA compliance checklist.

Point it at your documentation. scs-team works best when you have:

  • Product requirements or feature specs
  • Architecture decisions (even informal ones)
  • Compliance or security requirements
  • Onboarding docs or team conventions

You don’t need all of these. Start with what you have.

From within Claude Code, run:

/scs-team:init

Follow the prompts to specify your documentation sources. scs-team will process them and generate structured context files in your project root.

After init, commit the generated files:

Terminal window
git add CLAUDE.md .claude/
git commit -m "Add SCS context files"

When a team member clones the repo and opens Claude Code, they get the same structured context automatically. No manual setup. No inconsistent prompting.

When documentation changes, run:

/scs-team:sync

This re-processes the source docs and updates the context files. Review the diff in a pull request — context changes that affect how Claude behaves deserve the same review process as code changes.