@@ -39,10 +39,10 @@ TypeScript tooling is managed via Bun:
3939cd .scripts && bun install
4040
4141# Run the CLI tool
42- bun run .scripts/bin/ai-tools .ts < noun> < verb> [args]
42+ bun run .scripts/bin/agents .ts < noun> < verb> [args]
4343
4444# Or via justfile
45- just ai-tools < noun> < verb> [args]
45+ just agents < noun> < verb> [args]
4646
4747# Run tests
4848cd .scripts && bun test
@@ -102,7 +102,7 @@ See `docs/src/adr/` for architecture decisions.
102102│ ├── plugins/ # Plugin bundles
103103│ └── output-styles/ # Output formatting styles
104104├── .scripts/
105- │ ├── bin/ai-tools .ts # Unified CLI (Bun + Citty)
105+ │ ├── bin/agents .ts # Unified CLI (Bun + Citty)
106106│ ├── lib/ # TypeScript modules (hash, output, schemas, etc.)
107107│ ├── commands/ # CLI subcommands (plugin, skill, kg, registry)
108108│ ├── test/ # bun:test suites
@@ -122,9 +122,9 @@ See `docs/src/adr/` for architecture decisions.
122122| ------| ---------|
123123| Initialize project | ` just init ` |
124124| Install to ~ /.claude | ` just install ` |
125- | ** CLI tool** | ` just ai-tools <noun> <verb> [args] ` |
126- | Plugin check | ` just ai-tools plugin check <name> ` |
127- | Skill validate | ` just ai-tools skill validate <name> ` |
125+ | ** CLI tool** | ` just agents <noun> <verb> [args] ` |
126+ | Plugin check | ` just agents plugin check <name> ` |
127+ | Skill validate | ` just agents skill validate <name> ` |
128128| External skill check | ` just skill external:check ` |
129129| Semantic search | ` just kg-search "query" ` |
130130
@@ -178,9 +178,9 @@ See `.claude/skills/beads/` for full documentation.
178178## Conventions
179179
180180- ** Brewfile** : Tool-level dependencies only (ollama, uv, bun, yq, etc.)
181- - ** package.json** (` .scripts/ ` ): TypeScript packages for ` ai-tools ` CLI (Bun)
181+ - ** package.json** (` .scripts/ ` ): TypeScript packages for ` agents ` CLI (Bun)
182182- ** pyproject.toml** : Python packages for KG only (sqlite-vec, ollama, watchdog)
183183- ** ` just init ` ** : Must be idempotent — safe to run multiple times
184184- ** SQL dumps** : ` .data/**/*.sql ` files are version controlled; ` .db ` files are gitignored
185185- ** Plans** : Written as markdown in ` .claude/plans/ ` , converted to beads issues
186- - ** ` ai-tools ` ** : Unified CLI tool — ` just ai-tools <noun> <verb> ` for plugin/skill/registry operations
186+ - ** ` agents ` ** : Unified CLI tool — ` just agents <noun> <verb> ` for plugin/skill/registry operations
0 commit comments