Graphical cheatsheet ☝️

Graphical cheatsheet ☝️

Agent Legibility

AGENTS.md

# CLAUDE.md

<2-line overview>

## Scripts
npm run dev          # Start dev server
npm run lint         # Check for linting issues
npm run typecheck    # Verify type safety

Always run `npm lint && npm typecheck` after code changes.

See `package.json` for the full list of NPM tasks.

## Structure
- `app/`  - Application
- `docs/` - Markdown files
- `db/`   - DB migration
- `config.ts` - Global configuration

## Further Reading

**IMPORTANT:** From the docs below, read the ones required by the current task

- `docs/ssr-gotchas.md`
- `docs/testing-strategy.md`
- `docs/analytics.md`

Treat docs as source code

docs/
├── decisions/          # Strategic decisions (ADRs)
│   ├── db-sharding.md
│   └── i18n.md
├── user-flows/         # Sequence diagrams, flow diagrams
│   ├── checkout-flow.md
│   └── signin-flow.md
├── plans/
│   └── active/
│		└── featureA    # Ralph Wiggum / ralph-tui ready
│			├── prd.md
│			├── prompt_plan.md
│			├── prompt_impl.md
│			├── plan.md
│			├── specs/
│				├── topicA.md
│				├── topicB.md
│				└── ...
│   └── completed/
├── references/         # Slowly changing material referenced by other parts
│   ├── compliance.md
│   ├── accessibility.md
│   ├── performance.md
│   └── ...
├── AGENTS.md
└── ARCHITECTURE.md

Provide observability skills

Design <> Code

Agent distribution