# AGENTS.md

A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.

## Setup

```
npm ci
```

## Commands

```
npm run test                                       # run the test suite, must pass before any commit
npm run build:hooks
npm run build:sdk
npm run check:alias-drift
npm run check:state-document-fresh
npm run check:configuration-fresh
npm run check:workstream-inventory-builder-fresh
npm run check:project-root-fresh
```

## Layout

- `tests/`         554 source files
- `sdk/`           319 source files
- `get-shit-done/` 70 source files
- `scripts/`       31 source files
- `hooks/`         15 source files
- `bin/`           3 source files

## Conventions

- Tests live alongside the code they cover, following `docs/ja-JP/superpowers/specs/2026-03-20-multi-project-workspaces-design.md`.
- TypeScript is not in strict mode. Turning it on catches a whole class of mistakes before they run.
- CI defines what passing means. See `.github/workflows/auto-branch.yml`, and keep it green.
- TODO: add the two or three conventions a newcomer always gets wrong here.

## Gotchas

- `bin/install.js` is 463KB. It will not fit comfortably in context, so read it in parts.

---

Drafted by agentreadme.com from what is in this repository. Everything marked TODO
needs a human. Check it in as AGENTS.md at the root.
