gm-cc 2.0.341 → 2.0.343
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/.claude-plugin/marketplace.json +1 -1
- package/bin/plugkit-darwin-arm64 +0 -0
- package/bin/plugkit-darwin-x64 +0 -0
- package/bin/plugkit-linux-arm64 +0 -0
- package/bin/plugkit-linux-x64 +0 -0
- package/bin/plugkit-win32-arm64.exe +0 -0
- package/bin/plugkit-win32-x64.exe +0 -0
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/skills/gm/SKILL.md +6 -0
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "AnEntrypoint"
|
|
5
5
|
},
|
|
6
6
|
"description": "State machine agent with hooks, skills, and automated git enforcement",
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.343",
|
|
8
8
|
"metadata": {
|
|
9
9
|
"description": "State machine agent with hooks, skills, and automated git enforcement"
|
|
10
10
|
},
|
package/bin/plugkit-darwin-arm64
CHANGED
|
Binary file
|
package/bin/plugkit-darwin-x64
CHANGED
|
Binary file
|
package/bin/plugkit-linux-arm64
CHANGED
|
Binary file
|
package/bin/plugkit-linux-x64
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/plugin.json
CHANGED
package/skills/gm/SKILL.md
CHANGED
|
@@ -72,6 +72,12 @@ exec:close
|
|
|
72
72
|
<task_id>
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
+
**When a task is backgrounded, you must monitor it — do not abandon it:**
|
|
76
|
+
1. Drain output with `exec:status <task_id>` immediately after backgrounding
|
|
77
|
+
2. If the task is still running, `exec:sleep <task_id> [seconds]` then drain again
|
|
78
|
+
3. Repeat until the task exits or you have enough output to proceed
|
|
79
|
+
4. `exec:close <task_id>` when the task is no longer needed
|
|
80
|
+
|
|
75
81
|
**Runner management**:
|
|
76
82
|
```
|
|
77
83
|
exec:runner
|