Skip to content

Latest commit

 

History

History
74 lines (50 loc) · 1.55 KB

File metadata and controls

74 lines (50 loc) · 1.55 KB

Phase 0: Surgery (Cut the Dead Weight)

Goal: Remove everything that makes this look unfinished

Status: ✅ Complete


Tasks

✅ Task 1: Delete llm-docs/ directory

Why: Strategy docs in the repo scream "this is a side project planning to be something." Ship, don't plan.

Action:

rm -rf llm-docs/

✅ Task 2: Delete apps/docs/ directory

Why: Empty shell. A broken docs site is worse than no docs site. The playground IS the docs for now.

Action:

rm -rf apps/docs/

Update: Remove from workspace in package.json and pnpm-workspace.yaml


✅ Task 3: Delete apps/examples/ directory

Why: Empty. Remove it.

Action:

rm -rf apps/examples/

Update: Remove from workspace in package.json and pnpm-workspace.yaml


✅ Task 4: Delete compliance.json from each pattern

Why: Nobody cares about self-assessed compliance badges. The code speaks.

Action:

find patterns/ -name "compliance.json" -delete

✅ Task 5: Gut and rewrite root README

Why: Current README is 300+ lines of "standards compliance" claims. Replace with: what it is, a screenshot, how to use it. 30 lines max.

New Structure:

  1. Hero image/logo
  2. One sentence description
  3. Quick start (3 lines of code)
  4. Pattern list with links
  5. Link to playground
  6. License

Completion Criteria

  • All dead weight directories removed
  • Workspace configuration updated
  • README rewritten to 30 lines
  • Repository looks clean and focused