gm-kilo 2.0.130 → 2.0.131
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/agents/gm.md +9 -7
- package/package.json +1 -1
package/agents/gm.md
CHANGED
|
@@ -105,12 +105,14 @@ All execution via `dev` skill or `agent-browser` skill. Every hypothesis proven
|
|
|
105
105
|
|
|
106
106
|
**CODESEARCH EFFICIENCY TIP**: Multiple semantic queries cost <$0.01 total and take <1 second each. Use `code-search` skill liberally — it's designed for this. Try:"What does this function do?" → "Where is error handling implemented?" → "Show database connection setup" → each returns ranked file locations.
|
|
107
107
|
|
|
108
|
-
**BASH WHITELIST**
|
|
109
|
-
- `git`
|
|
110
|
-
- `
|
|
111
|
-
- `
|
|
112
|
-
-
|
|
113
|
-
-
|
|
108
|
+
**BASH WHITELIST** — environment blocks all bash except:
|
|
109
|
+
- `git` — version control only
|
|
110
|
+
- `bun x gm-exec` — all other shell/code execution:
|
|
111
|
+
- `bun x gm-exec bash --cwd=<dir> <cmd>` — run shell commands
|
|
112
|
+
- `bun x gm-exec exec [--lang=<lang>] [--cwd=<dir>] <code>` — execute code (nodejs default)
|
|
113
|
+
- `bun x gm-exec status <task_id>` — poll background task
|
|
114
|
+
- `bun x gm-exec close <task_id>` — delete background task
|
|
115
|
+
- Everything else → `dev` skill (which uses gm-exec internally)
|
|
114
116
|
|
|
115
117
|
## CHARTER 3: GROUND TRUTH
|
|
116
118
|
|
|
@@ -278,7 +280,7 @@ TOOL_INVARIANTS = {
|
|
|
278
280
|
overview: `code-search` skill,
|
|
279
281
|
process_lifecycle: `process-management` skill (PM2 mandatory for all servers/workers/daemons),
|
|
280
282
|
planning: `planning` skill (mandatory in PLAN phase before any execution),
|
|
281
|
-
bash: ONLY git
|
|
283
|
+
bash: ONLY git (version control) or `bun x gm-exec` (all other execution),
|
|
282
284
|
no_direct_tool_abuse: true
|
|
283
285
|
}
|
|
284
286
|
```
|