diff --git a/AGENTS.md b/AGENTS.md index 53ec1ff..c9305aa 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -38,18 +38,6 @@ Read these on demand: - `providers/claude-code/CLAUDE.md` is the deployed global config — edit it there, not here - Governance constraints from `core/instructions/governance.md` apply when building content in this repo — hard prohibitions on secrets and data, HITL requirements before irreversible actions, sycophancy resistance, and deterministic execution preference are always in effect -## Chunk development workflow - -Each chunk follows this sequence: -1. `/grill-with-docs` — grill vision/context before writing anything -2. `/to-prd` — write the PRD from the grilling output -3. `/to-issues` — break PRD into issues (`docs/issues/` until Gitea is set up) -4. `/tdd` — implement each issue using TDD -5. `/improve-codebase-architecture` — architecture review after implementation -6. Start a new session before the next chunk - -Don't skip `/tdd` — it's the easy one to forget. - ## Working context This repo is built by a junior developer as a homelab tool intended to scale to professional environments. Challenge ideas and reference industry standards rather than validate assumptions. Explain the why behind decisions — assume the user is learning, not just executing. Flag significant actions before taking them. diff --git a/CLAUDE.md b/CLAUDE.md index 392f2e3..7642300 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -22,126 +22,4 @@ git add . && git commit -m "msg" && git push # ✅ Correct rtk git add . && rtk git commit -m "msg" && rtk git push ``` - -## RTK Commands by Workflow - -### Build & Compile (80-90% savings) -```bash -rtk cargo build # Cargo build output -rtk cargo check # Cargo check output -rtk cargo clippy # Clippy warnings grouped by file (80%) -rtk tsc # TypeScript errors grouped by file/code (83%) -rtk lint # ESLint/Biome violations grouped (84%) -rtk prettier --check # Files needing format only (70%) -rtk next build # Next.js build with route metrics (87%) -``` - -### Test (60-99% savings) -```bash -rtk cargo test # Cargo test failures only (90%) -rtk go test # Go test failures only (90%) -rtk jest # Jest failures only (99.5%) -rtk vitest # Vitest failures only (99.5%) -rtk playwright test # Playwright failures only (94%) -rtk pytest # Python test failures only (90%) -rtk rake test # Ruby test failures only (90%) -rtk rspec # RSpec test failures only (60%) -rtk test # Generic test wrapper - failures only -``` - -### Git (59-80% savings) -```bash -rtk git status # Compact status -rtk git log # Compact log (works with all git flags) -rtk git diff # Compact diff (80%) -rtk git show # Compact show (80%) -rtk git add # Ultra-compact confirmations (59%) -rtk git commit # Ultra-compact confirmations (59%) -rtk git push # Ultra-compact confirmations -rtk git pull # Ultra-compact confirmations -rtk git branch # Compact branch list -rtk git fetch # Compact fetch -rtk git stash # Compact stash -rtk git worktree # Compact worktree -``` - -Note: Git passthrough works for ALL subcommands, even those not explicitly listed. - -### GitHub (26-87% savings) -```bash -rtk gh pr view # Compact PR view (87%) -rtk gh pr checks # Compact PR checks (79%) -rtk gh run list # Compact workflow runs (82%) -rtk gh issue list # Compact issue list (80%) -rtk gh api # Compact API responses (26%) -``` - -### JavaScript/TypeScript Tooling (70-90% savings) -```bash -rtk pnpm list # Compact dependency tree (70%) -rtk pnpm outdated # Compact outdated packages (80%) -rtk pnpm install # Compact install output (90%) -rtk npm run