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.
Files changed (2) hide show
  1. package/agents/gm.md +9 -7
  2. 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** (only acceptable bash uses):
109
- - `git` commands (status, add, commit, push, pull, log, diff)
110
- - `npm publish`, `npm pack`, `npm install -g`
111
- - `docker` commands
112
- - Starting/stopping system services
113
- - Everything else `dev` skill
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/npm-publish/docker/system-services,
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
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-kilo",
3
- "version": "2.0.130",
3
+ "version": "2.0.131",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",