gm-copilot-cli 2.0.248 → 2.0.250

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.
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  name: gm
3
- version: 2.0.248
3
+ version: 2.0.250
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
package/hooks/hooks.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "hooks": [
8
8
  {
9
9
  "type": "command",
10
- "command": "node ${COPILOT_EXTENSION_DIR}/hooks/pre-tool-use-hook.js",
10
+ "command": "${COPILOT_EXTENSION_DIR}/bin/plugkit hook pre-tool-use",
11
11
  "timeout": 3600
12
12
  }
13
13
  ]
@@ -19,8 +19,13 @@
19
19
  "hooks": [
20
20
  {
21
21
  "type": "command",
22
- "command": "node ${COPILOT_EXTENSION_DIR}/hooks/session-start-hook.js",
23
- "timeout": 10000
22
+ "command": "node ${COPILOT_EXTENSION_DIR}/scripts/bootstrap.js",
23
+ "timeout": 60000
24
+ },
25
+ {
26
+ "type": "command",
27
+ "command": "${COPILOT_EXTENSION_DIR}/bin/plugkit hook session-start",
28
+ "timeout": 180000
24
29
  }
25
30
  ]
26
31
  }
@@ -31,8 +36,8 @@
31
36
  "hooks": [
32
37
  {
33
38
  "type": "command",
34
- "command": "node ${COPILOT_EXTENSION_DIR}/hooks/prompt-submit-hook.js",
35
- "timeout": 3600
39
+ "command": "${COPILOT_EXTENSION_DIR}/bin/plugkit hook prompt-submit",
40
+ "timeout": 60000
36
41
  }
37
42
  ]
38
43
  }
@@ -43,12 +48,12 @@
43
48
  "hooks": [
44
49
  {
45
50
  "type": "command",
46
- "command": "node ${COPILOT_EXTENSION_DIR}/hooks/session-end-hook.js",
51
+ "command": "${COPILOT_EXTENSION_DIR}/bin/plugkit hook session-end",
47
52
  "timeout": 300000
48
53
  },
49
54
  {
50
55
  "type": "command",
51
- "command": "node ${COPILOT_EXTENSION_DIR}/hooks/session-end-git-hook.js",
56
+ "command": "${COPILOT_EXTENSION_DIR}/bin/plugkit hook session-end-git",
52
57
  "timeout": 60000
53
58
  }
54
59
  ]
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.248";
21
+ const DESCRIPTION="State machine agent with hooks, skills, and automated git enforcement",VERSION="2.0.250";
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.248
2
+ version: 2.0.250
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.248",
3
+ "version": "2.0.250",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
package/tools.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.248",
3
+ "version": "2.0.250",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "tools": [
6
6
  {