codebase-ai 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -99,7 +99,7 @@ One command. Zero manual steps.
99
99
 
100
100
  ### Level 1 — Give Claude memory of your project
101
101
 
102
- Only requires Node.js 18+.
102
+ Only requires Node.js 20+.
103
103
 
104
104
  ```bash
105
105
  cd your-project
@@ -241,8 +241,11 @@ codebase fix # auto-repairs everything doctor flags
241
241
 
242
242
  ```bash
243
243
  # Setup
244
- npx codebase # full setup run once per project
245
- codebase setup # re-run wiring (updates commands, hooks, tools)
244
+ # Use `npx codebase` / `codebase init` the first time: scans your project AND wires AI tools + hooks.
245
+ # Use `codebase setup` to re-wire AI tools and hooks only — it does NOT re-scan. Run it when you
246
+ # add a new AI tool or need to reinstall hooks on an existing project.
247
+ npx codebase # full setup — scan + wire AI tools + hooks (run once per project)
248
+ codebase setup # re-wire AI tools and hooks only (no scan)
246
249
 
247
250
  # AI interface (what AI tools call)
248
251
  codebase brief # full project briefing
@@ -300,7 +303,7 @@ npx codebase-ai # try without installing
300
303
  pnpm add -g codebase-ai
301
304
  ```
302
305
 
303
- Zero runtime dependencies. Node.js 18+ only.
306
+ Zero runtime dependencies. Node.js 20+ only.
304
307
 
305
308
  ---
306
309