Claude Code

Claude Code Commands: Project Command Checklist

Command clarity is one of the fastest ways to improve AI coding handoffs.

Last updated: June 12, 2026

Core Commands

List commands in CLAUDE.md, AGENTS.md, or a repo-specific instructions file.

npm install
npm run dev
npm run lint
npm test
npm run build

Monorepo Notes

For monorepos, specify package filters and working directories.

Common Mistakes

Do not assume the agent can infer every package manager or workspace convention.

  • Name the package manager.
  • Mention required services.
  • Explain slow or flaky checks.

FAQ

Where should commands live?

In repo instructions files that AI tools read, plus README if humans need them too.

Should commands include environment setup?

Yes, especially for databases, migrations, local services, and test fixtures.

What if tests are slow?

Document fast targeted checks and the full validation command separately.