gm-kilo 2.0.84 → 2.0.86

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 CHANGED
@@ -168,7 +168,7 @@ Never report complete with uncommitted/unpushed changes.
168
168
 
169
169
  ## CHARTER 9: PROCESS MANAGEMENT
170
170
 
171
- All applications run via process-management skill. Never direct invocations (node, bun, python, npx). Pre-start: check running processes. Cleanup: delete orphaned when complete. Ref process-management skill for config, cross-platform, logs, lifecycle.
171
+ **ABSOLUTE REQUIREMENT**: All applications MUST start via `process-management` skill only. No direct invocations (node, bun, python, npx, pm2). Everything else—pre-checks, config, cross-platform, logs, lifecycle, cleanup—is in the skill. Use it. That's the only way.
172
172
 
173
173
  ## CONSTRAINTS
174
174
 
@@ -216,7 +216,7 @@ Complete evidence: exact command executed + actual witnessed output + every poss
216
216
 
217
217
  ### ENFORCEMENT PROHIBITIONS (ABSOLUTE)
218
218
 
219
- Never: crash | exit | terminate | fake data | leave steps for user | spawn/exec/fork in code | write test files | context limits as stop signal | summarize before done | end early | marker files as completion | pkill (risks killing agent) | ready state as done | .prd variants | sequential independent items | crash as recovery | require human first | violate TOOL_INVARIANTS
219
+ Never: crash | exit | terminate | fake data | leave steps for user | spawn/exec/fork in code | write test files | context limits as stop signal | summarize before done | end early | marker files as completion | pkill (risks killing agent) | ready state as done | .prd variants | sequential independent items | crash as recovery | require human first | violate TOOL_INVARIANTS | direct process invocation (use process-management skill only)
220
220
 
221
221
  ### ENFORCEMENT REQUIREMENTS (UNCONDITIONAL)
222
222
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-kilo",
3
- "version": "2.0.84",
3
+ "version": "2.0.86",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -30,10 +30,6 @@
30
30
  "publishConfig": {
31
31
  "access": "public"
32
32
  },
33
- "dependencies": {
34
- "mcp-thorns": "latest",
35
- "codebasesearch": "latest"
36
- },
37
33
  "scripts": {
38
34
  "postinstall": "node scripts/postinstall-kilo.js"
39
35
  },
@@ -171,7 +171,7 @@ Never report complete with uncommitted/unpushed changes.
171
171
 
172
172
  ## CHARTER 9: PROCESS MANAGEMENT
173
173
 
174
- All applications run via process-management skill. Never direct invocations (node, bun, python, npx). Pre-start: check running processes. Cleanup: delete orphaned when complete. Ref process-management skill for config, cross-platform, logs, lifecycle.
174
+ **ABSOLUTE REQUIREMENT**: All applications MUST start via `process-management` skill only. No direct invocations (node, bun, python, npx, pm2). Everything else—pre-checks, config, cross-platform, logs, lifecycle, cleanup—is in the skill. Use it. That's the only way.
175
175
 
176
176
  ## CONSTRAINTS
177
177
 
@@ -219,7 +219,7 @@ Complete evidence: exact command executed + actual witnessed output + every poss
219
219
 
220
220
  ### ENFORCEMENT PROHIBITIONS (ABSOLUTE)
221
221
 
222
- Never: crash | exit | terminate | fake data | leave steps for user | spawn/exec/fork in code | write test files | context limits as stop signal | summarize before done | end early | marker files as completion | pkill (risks killing agent) | ready state as done | .prd variants | sequential independent items | crash as recovery | require human first | violate TOOL_INVARIANTS
222
+ Never: crash | exit | terminate | fake data | leave steps for user | spawn/exec/fork in code | write test files | context limits as stop signal | summarize before done | end early | marker files as completion | pkill (risks killing agent) | ready state as done | .prd variants | sequential independent items | crash as recovery | require human first | violate TOOL_INVARIANTS | direct process invocation (use process-management skill only)
223
223
 
224
224
  ### ENFORCEMENT REQUIREMENTS (UNCONDITIONAL)
225
225