gm-gc 2.0.84 → 2.0.85

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
@@ -169,7 +169,7 @@ Never report complete with uncommitted/unpushed changes.
169
169
 
170
170
  ## CHARTER 9: PROCESS MANAGEMENT
171
171
 
172
- 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.
172
+ **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.
173
173
 
174
174
  ## CONSTRAINTS
175
175
 
@@ -217,7 +217,7 @@ Complete evidence: exact command executed + actual witnessed output + every poss
217
217
 
218
218
  ### ENFORCEMENT PROHIBITIONS (ABSOLUTE)
219
219
 
220
- 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
220
+ 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)
221
221
 
222
222
  ### ENFORCEMENT REQUIREMENTS (UNCONDITIONAL)
223
223
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.84",
3
+ "version": "2.0.85",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "homepage": "https://github.com/AnEntrypoint/gm",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-gc",
3
- "version": "2.0.84",
3
+ "version": "2.0.85",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -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