gm-copilot-cli 2.0.188 → 2.0.189

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
@@ -15,3 +15,5 @@ All work coordination, planning, execution, and verification happens through the
15
15
  All code execution uses `exec:<lang>` via the Bash tool — never direct `Bash(node ...)` or `Bash(npm ...)`.
16
16
 
17
17
  Do not use `EnterPlanMode`. Do not run code directly via Bash. Invoke `gm` skill first.
18
+
19
+ Skills are invoked via the **Skill tool** (`skill: "name"`). Never use the Agent tool to load a skill — skills are not agents. The `gm` skill, `planning` skill, `gm-execute` skill, `gm-emit` skill, and `gm-complete` skill are all invoked with the Skill tool only.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: gm
3
- version: 2.0.188
3
+ version: 2.0.189
4
4
  description: State machine agent with hooks, skills, and automated git enforcement
5
5
  author: AnEntrypoint
6
6
  repository: https://github.com/AnEntrypoint/gm-copilot-cli
@@ -74,7 +74,7 @@ try {
74
74
  ensureGitignore();
75
75
 
76
76
  const parts = [];
77
- parts.push('Invoke the `gm` skill to begin. DO NOT use EnterPlanMode. DO NOT use gm subagent directly use the `gm` skill via the Skill tool.');
77
+ parts.push('Use the Skill tool with skill: "gm" to begin do NOT use the Agent tool to load skills. Skills are invoked via the Skill tool only, never as agents. DO NOT use EnterPlanMode.');
78
78
 
79
79
  const search = runCodeSearch(prompt);
80
80
  if (search) parts.push(search);
@@ -29,7 +29,7 @@ ensureGitignore();
29
29
  try {
30
30
  let outputs = [];
31
31
 
32
- outputs.push('Invoke the `gm` skill to begin. All code execution uses exec:<lang> via the Bash tool — never direct Bash(node ...) or Bash(npm ...) or Bash(npx ...).');
32
+ outputs.push('Use the Skill tool with skill: "gm" to begin — do NOT use the Agent tool to load skills. Skills are invoked via the Skill tool only, never as agents. All code execution uses exec:<lang> via the Bash tool — never direct Bash(node ...) or Bash(npm ...) or Bash(npx ...).');
33
33
 
34
34
  if (projectDir && fs.existsSync(projectDir)) {
35
35
  try {
package/index.html CHANGED
@@ -18,7 +18,7 @@
18
18
  <script type="module">
19
19
  import { createElement as h, applyDiff, Fragment } from "webjsx";
20
20
  const PLATFORM_NAME="Copilot CLI",PLATFORM_TYPE="CLI Tool",PLATFORM_TYPE_COLOR="#3b82f6";
21
- const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.188";
21
+ const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.189";
22
22
  const GITHUB_URL="https://github.com/AnEntrypoint/gm-copilot-cli",BADGE_LABEL="copilot-cli";
23
23
  const FEATURES=[{"title":"State Machine","desc":"Immutable PLAN→EXECUTE→EMIT→VERIFY→COMPLETE phases with full mutable tracking"},{"title":"Semantic Search","desc":"Natural language codebase exploration via codesearch skill — no grep needed"},{"title":"Hooks","desc":"Pre-tool, session-start, prompt-submit, and stop hooks for full lifecycle control"},{"title":"Agents","desc":"gm, codesearch, and websearch agents pre-configured and ready to use"},{"title":"MCP Integration","desc":"Model Context Protocol server support built in"},{"title":"Auto-Recovery","desc":"Supervisor hierarchy ensures the system never crashes"}],INSTALL_STEPS=[{"desc":"Install via GitHub CLI","cmd":"gh extension install AnEntrypoint/gm-copilot-cli"},{"desc":"Restart your terminal — activates automatically"}];
24
24
  const CURRENT_PLATFORM="gm-copilot-cli";
package/manifest.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  name: gm
2
- version: 2.0.188
2
+ version: 2.0.189
3
3
  description: State machine agent with hooks, skills, and automated git enforcement
4
4
  author: AnEntrypoint
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-copilot-cli",
3
- "version": "2.0.188",
3
+ "version": "2.0.189",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: gm
3
- description: Immutable programming state machine. Root orchestrator. Invoke for all work coordination.
4
- agent: true
3
+ description: Immutable programming state machine. Root orchestrator. Invoke for all work coordination via the Skill tool.
5
4
  enforce: critical
6
5
  ---
7
6
 
@@ -68,13 +67,13 @@ exec:close
68
67
  <task_id>
69
68
  ```
70
69
 
71
- **Runner management** (PM2-backed, visible in `pm2 list` and `pm2 monit`):
70
+ **Runner management** (the runner itself is a PM2 process named `gm-exec-runner`):
72
71
  ```
73
72
  exec:runner
74
73
  start|stop|status
75
74
  ```
76
75
 
77
- All gm-exec activity runs under PM2. Use `exec:bash\npm2 list` to see all running processes. Users can run `pm2 monit` directly in their terminal to watch live activity.
76
+ `exec:runner start` launches a single PM2 process (`gm-exec-runner`) that hosts all execution as worker threads inside it. Individual `exec:<lang>` calls are worker threads they do NOT appear as separate entries in `pm2 list`. Only the runner process is visible. Use `exec:runner status` to check it.
78
77
 
79
78
  ## CODEBASE EXPLORATION
80
79
 
package/tools.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.188",
3
+ "version": "2.0.189",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "tools": [
6
6
  {