@extreme-go-horse/xgh 2.1.2 → 2.2.0
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/.claude-plugin/plugin.json +26 -2
- package/README.md +6 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xgh",
|
|
3
3
|
"description": "The developer's cockpit — memory, compression, context efficiency, and dev methodology",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.2.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Pedro Almeida",
|
|
7
7
|
"email": "pedro.almeida@users.noreply.github.com"
|
|
@@ -15,5 +15,29 @@
|
|
|
15
15
|
"workflow",
|
|
16
16
|
"cockpit",
|
|
17
17
|
"devtools"
|
|
18
|
-
]
|
|
18
|
+
],
|
|
19
|
+
"hooks": {
|
|
20
|
+
"SessionStart": [
|
|
21
|
+
{
|
|
22
|
+
"matcher": "",
|
|
23
|
+
"hooks": [
|
|
24
|
+
{
|
|
25
|
+
"type": "command",
|
|
26
|
+
"command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/session-start.sh\""
|
|
27
|
+
}
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"PostToolUse": [
|
|
32
|
+
{
|
|
33
|
+
"matcher": "Bash",
|
|
34
|
+
"hooks": [
|
|
35
|
+
{
|
|
36
|
+
"type": "command",
|
|
37
|
+
"command": "bash \"${CLAUDE_PLUGIN_ROOT}/hooks/post-tool-use.sh\""
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
19
43
|
}
|
package/README.md
CHANGED
|
@@ -47,8 +47,9 @@ The hard problem — as always — is **drift**. Platform skill files go stale,
|
|
|
47
47
|
|---------------|-------------|
|
|
48
48
|
| Persistent memory across sessions | [lossless-claude](https://github.com/extreme-go-horse/lossless-claude) — SQLite + FTS5 |
|
|
49
49
|
| Context tree search | BM25/TF-IDF over `.xgh/context-tree/` |
|
|
50
|
-
| Multi-platform dispatch | Codex CLI, Gemini CLI, OpenCode — all driven from one config |
|
|
50
|
+
| Multi-platform dispatch | Codex CLI, Gemini CLI, OpenCode, GLM — all driven from one config |
|
|
51
51
|
| Session-start injection | Top knowledge files injected automatically at session start |
|
|
52
|
+
| Proactive alerts | Trigger engine — fires on urgency score, patterns, or schedule |
|
|
52
53
|
| Dev methodology | [superpowers](https://github.com/obra/superpowers) — optional plugin |
|
|
53
54
|
|
|
54
55
|
## Commands
|
|
@@ -75,9 +76,13 @@ The hard problem — as always — is **drift**. Platform skill files go stale,
|
|
|
75
76
|
| `/xgh-help` | Contextual guide and command reference |
|
|
76
77
|
| `/xgh-curate` | Store knowledge in memory and context tree |
|
|
77
78
|
| `/xgh-collab` | Multi-agent collaboration |
|
|
79
|
+
| `/xgh-dispatch` | Auto-route tasks to the best agent + model based on task type |
|
|
78
80
|
| `/xgh-codex` | Dispatch to Codex CLI |
|
|
79
81
|
| `/xgh-gemini` | Dispatch to Gemini CLI |
|
|
80
82
|
| `/xgh-opencode` | Dispatch to OpenCode |
|
|
83
|
+
| `/xgh-glm` | Dispatch to Z.AI GLM models via OpenCode |
|
|
84
|
+
| `/xgh-watch-prs` | Passively monitor PRs — surfaces review changes and merge-readiness |
|
|
85
|
+
| `/xgh-ship-prs` | Shepherd PRs through review cycles and auto-merge when ready |
|
|
81
86
|
| `/xgh-design` | Figma to implementation |
|
|
82
87
|
| `/xgh-index` | Index a codebase into memory |
|
|
83
88
|
| `/xgh-profile` | Engineer throughput analysis |
|