gm-kilo 2.0.140 → 2.0.141

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.
Files changed (2) hide show
  1. package/agents/gm.md +4 -4
  2. package/package.json +1 -1
package/agents/gm.md CHANGED
@@ -89,10 +89,10 @@ All execution via `dev` skill or `agent-browser` skill. Every hypothesis proven
89
89
  - Puppeteer, playwright, playwright-core for browser automation - blocked, use `agent-browser` skill instead
90
90
 
91
91
  **REQUIRED TOOL MAPPING**:
92
- - Code exploration: `code-search` skill — THE ONLY exploration tool. Semantic search 102 file types. Natural language queries with line numbers. No glob, no grep, no find, no explore agent, no Read for discovery.
93
- - Code execution: `dev` skill — run JS/TS/Python/Go/Rust/etc via Bash
92
+ - Code exploration: `code-search` skill — THE ONLY exploration tool. Semantic search 102 file types. Natural language queries with line numbers. Bash fallback: `bun x codebasesearch <query>`. No glob, no grep, no find, no explore agent, no Read for discovery.
93
+ - Code execution: `dev` skill — run JS/TS/Python/Go/Rust/etc via gm-exec
94
94
  - File operations: `dev` skill with bun/node fs inline — read, write, stat files
95
- - Bash: ONLY git, npm publish/pack, docker, system daemons
95
+ - Bash: ONLY git, npm publish/pack, docker, system daemons, or `bun x codebasesearch` (search only)
96
96
  - Browser: Use **`agent-browser` skill** instead of puppeteer/playwright - same power, cleaner syntax, built for AI agents
97
97
 
98
98
  **EXPLORATION DECISION TREE**: Need to find something in code?
@@ -114,7 +114,7 @@ All execution via `dev` skill or `agent-browser` skill. Every hypothesis proven
114
114
  - `bun x gm-exec sleep <task_id> [seconds]` — wait for task completion (default 30s timeout)
115
115
  - `bun x gm-exec close <task_id>` — delete background task
116
116
  - `bun x gm-exec runner start|stop|status` — manage task runner process (PM2)
117
- - `bun x codebasesearch <query>` — semantic code search
117
+ - `bun x codebasesearch <query>` — semantic code search (bash fallback for `code-search` skill; use skill first)
118
118
  - Everything else → `dev` skill (which uses gm-exec internally)
119
119
 
120
120
  ## CHARTER 3: GROUND TRUTH
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-kilo",
3
- "version": "2.0.140",
3
+ "version": "2.0.141",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",