/todo
Manage todos in your project’s CLAUDE.md.
Usage
/todo # List all todos
/todo Add user logout # Add a simple todo
/todo Add auth system # Complex todo → creates a RecordWhat It Does
Listing Todos
/todoShows all items from the Current Status and Future tables in CLAUDE.md.
Adding Simple Todos
/todo Fix typo in headerAdds directly to the Current Status table:
| Task | Status | Notes |
|------|--------|-------|
| Fix typo in header | Pending | |Adding Complex Todos
/todo Implement OAuth2 authenticationIf the todo is complex (requires design decisions, multiple steps, or spans sessions):
- Creates a Record in
docs/records/ - Adds to Current Status with Record reference
| Task | Status | Notes |
|------|--------|-------|
| OAuth2 auth | Pending | [Record 016](docs/records/016-oauth2-auth.md) |Simple vs Complex
| Type | Example | What happens |
|---|---|---|
| Simple | ”Fix typo” | Direct to table |
| Complex | ”Add auth system” | Creates Record |
Claude determines complexity based on:
- Number of steps involved
- Need for design decisions
- Likely to span multiple sessions