gm-thebird 2.0.1065 → 2.0.1067
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.md +6 -2
- package/gm.json +1 -1
- package/package.json +1 -1
- package/plugin.json +1 -1
- package/hooks/hooks.json +0 -57
- package/hooks/hooks.spec.json +0 -48
package/AGENTS.md
CHANGED
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Technical Notes
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Dispatch via file-spool markers (not hooks):
|
|
6
|
+
- .gm/prd.yml — orchestration state
|
|
7
|
+
- .gm/mutables.yml — unknown resolution tracking
|
|
8
|
+
- .gm/needs-gm — marks when PRD requires orchestration run
|
|
9
|
+
- .gm/gm-fired-<id> — marks orchestration completion per session
|
|
6
10
|
|
|
7
11
|
Tool names for this platform:
|
|
8
12
|
|
|
9
|
-
|
|
13
|
+
Session isolation: use SESSION_ID env var for per-session resource cleanup.
|
|
10
14
|
|
|
11
15
|
Verification file `.gm-stop-verified` is auto-added to .gitignore and tracks session completion state.
|
package/gm.json
CHANGED
package/package.json
CHANGED
package/plugin.json
CHANGED
package/hooks/hooks.json
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"description": "Hooks for gm thebird extension",
|
|
3
|
-
"hooks": {
|
|
4
|
-
"PreToolUse": [
|
|
5
|
-
{
|
|
6
|
-
"matcher": "*",
|
|
7
|
-
"hooks": [
|
|
8
|
-
{
|
|
9
|
-
"type": "wasm",
|
|
10
|
-
"module": "${CLAUDE_PLUGIN_ROOT}/bin/plugkit.wasm",
|
|
11
|
-
"export": "hook_pre_tool_use",
|
|
12
|
-
"timeout": 3600
|
|
13
|
-
}
|
|
14
|
-
]
|
|
15
|
-
}
|
|
16
|
-
],
|
|
17
|
-
"PostToolUse": [
|
|
18
|
-
{
|
|
19
|
-
"matcher": "*",
|
|
20
|
-
"hooks": [
|
|
21
|
-
{
|
|
22
|
-
"type": "wasm",
|
|
23
|
-
"module": "${CLAUDE_PLUGIN_ROOT}/bin/plugkit.wasm",
|
|
24
|
-
"export": "hook_post_tool_use",
|
|
25
|
-
"timeout": 35000
|
|
26
|
-
}
|
|
27
|
-
]
|
|
28
|
-
}
|
|
29
|
-
],
|
|
30
|
-
"SessionStart": [
|
|
31
|
-
{
|
|
32
|
-
"matcher": "*",
|
|
33
|
-
"hooks": [
|
|
34
|
-
{
|
|
35
|
-
"type": "wasm",
|
|
36
|
-
"module": "${CLAUDE_PLUGIN_ROOT}/bin/plugkit.wasm",
|
|
37
|
-
"export": "hook_session_start",
|
|
38
|
-
"timeout": 180000
|
|
39
|
-
}
|
|
40
|
-
]
|
|
41
|
-
}
|
|
42
|
-
],
|
|
43
|
-
"UserPromptSubmit": [
|
|
44
|
-
{
|
|
45
|
-
"matcher": "*",
|
|
46
|
-
"hooks": [
|
|
47
|
-
{
|
|
48
|
-
"type": "wasm",
|
|
49
|
-
"module": "${CLAUDE_PLUGIN_ROOT}/bin/plugkit.wasm",
|
|
50
|
-
"export": "hook_prompt_submit",
|
|
51
|
-
"timeout": 60000
|
|
52
|
-
}
|
|
53
|
-
]
|
|
54
|
-
}
|
|
55
|
-
]
|
|
56
|
-
}
|
|
57
|
-
}
|
package/hooks/hooks.spec.json
DELETED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"schemaVersion": 1,
|
|
3
|
-
"description": "Hook spec for gm thebird extension",
|
|
4
|
-
"envVar": "CLAUDE_PLUGIN_ROOT",
|
|
5
|
-
"plugkitInvoker": "node",
|
|
6
|
-
"events": [
|
|
7
|
-
{
|
|
8
|
-
"eventKey": "PreToolUse",
|
|
9
|
-
"commands": [
|
|
10
|
-
{
|
|
11
|
-
"kind": "wasm",
|
|
12
|
-
"subcommand": "pre-tool-use",
|
|
13
|
-
"timeout": 3600
|
|
14
|
-
}
|
|
15
|
-
]
|
|
16
|
-
},
|
|
17
|
-
{
|
|
18
|
-
"eventKey": "PostToolUse",
|
|
19
|
-
"commands": [
|
|
20
|
-
{
|
|
21
|
-
"kind": "wasm",
|
|
22
|
-
"subcommand": "post-tool-use",
|
|
23
|
-
"timeout": 35000
|
|
24
|
-
}
|
|
25
|
-
]
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"eventKey": "SessionStart",
|
|
29
|
-
"commands": [
|
|
30
|
-
{
|
|
31
|
-
"kind": "wasm",
|
|
32
|
-
"subcommand": "session-start",
|
|
33
|
-
"timeout": 180000
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
"eventKey": "UserPromptSubmit",
|
|
39
|
-
"commands": [
|
|
40
|
-
{
|
|
41
|
-
"kind": "wasm",
|
|
42
|
-
"subcommand": "prompt-submit",
|
|
43
|
-
"timeout": 60000
|
|
44
|
-
}
|
|
45
|
-
]
|
|
46
|
-
}
|
|
47
|
-
]
|
|
48
|
-
}
|