@liangjie559567/ultrapower 5.3.0 → 5.3.1
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 +22 -0
- package/.claude-plugin/plugin.json +14 -3
- package/.mcp.json +3 -3
- package/hooks/hooks.json +15 -2
- package/package.json +3 -1
- package/settings.json +5 -0
- package/templates/hooks/notification.mjs +15 -0
- package/templates/hooks/subagent-start.mjs +17 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "omc",
|
|
3
|
+
"description": "Disciplined multi-agent orchestration for Claude Code: workflow enforcement + parallel execution",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "liangjie559567"
|
|
6
|
+
},
|
|
7
|
+
"plugins": [
|
|
8
|
+
{
|
|
9
|
+
"name": "ultrapower",
|
|
10
|
+
"description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution",
|
|
11
|
+
"version": "5.3.1",
|
|
12
|
+
"source": {
|
|
13
|
+
"source": "npm",
|
|
14
|
+
"package": "@liangjie559567/ultrapower",
|
|
15
|
+
"version": "5.3.1"
|
|
16
|
+
},
|
|
17
|
+
"author": {
|
|
18
|
+
"name": "liangjie559567"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
]
|
|
22
|
+
}
|
|
@@ -1,14 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultrapower",
|
|
3
3
|
"description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution. Combines superpowers' TDD/debugging discipline with OMC's multi-agent execution capabilities.",
|
|
4
|
-
"version": "5.3.
|
|
4
|
+
"version": "5.3.1",
|
|
5
5
|
"author": {
|
|
6
|
-
"name": "
|
|
6
|
+
"name": "Yeachan Heo"
|
|
7
7
|
},
|
|
8
8
|
"homepage": "https://github.com/liangjie559567/ultrapower",
|
|
9
9
|
"repository": "https://github.com/liangjie559567/ultrapower",
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"keywords": [
|
|
11
|
+
"keywords": [
|
|
12
|
+
"skills",
|
|
13
|
+
"tdd",
|
|
14
|
+
"debugging",
|
|
15
|
+
"multi-agent",
|
|
16
|
+
"orchestration",
|
|
17
|
+
"workflows",
|
|
18
|
+
"ultrapower"
|
|
19
|
+
],
|
|
12
20
|
"skills": "./skills/",
|
|
21
|
+
"agents": "./agents/",
|
|
22
|
+
"commands": "./commands/",
|
|
23
|
+
"hooks": "./hooks/",
|
|
13
24
|
"mcpServers": "./.mcp.json"
|
|
14
25
|
}
|
package/.mcp.json
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
"mcpServers": {
|
|
3
3
|
"t": {
|
|
4
4
|
"command": "node",
|
|
5
|
-
"args": ["
|
|
5
|
+
"args": ["${CLAUDE_PLUGIN_ROOT}/bridge/mcp-server.cjs"]
|
|
6
6
|
},
|
|
7
7
|
"x": {
|
|
8
8
|
"command": "node",
|
|
9
|
-
"args": ["
|
|
9
|
+
"args": ["${CLAUDE_PLUGIN_ROOT}/bridge/codex-server.cjs"]
|
|
10
10
|
},
|
|
11
11
|
"g": {
|
|
12
12
|
"command": "node",
|
|
13
|
-
"args": ["
|
|
13
|
+
"args": ["${CLAUDE_PLUGIN_ROOT}/bridge/gemini-server.cjs"]
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
16
|
}
|
package/hooks/hooks.json
CHANGED
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
],
|
|
87
87
|
"TeammateIdle": [
|
|
88
88
|
{
|
|
89
|
+
"matcher": "",
|
|
89
90
|
"hooks": [
|
|
90
91
|
{
|
|
91
92
|
"type": "command",
|
|
@@ -143,13 +144,25 @@
|
|
|
143
144
|
]
|
|
144
145
|
}
|
|
145
146
|
],
|
|
146
|
-
"
|
|
147
|
+
"SubagentStart": [
|
|
148
|
+
{
|
|
149
|
+
"matcher": "",
|
|
150
|
+
"hooks": [
|
|
151
|
+
{
|
|
152
|
+
"type": "command",
|
|
153
|
+
"command": "node ${CLAUDE_PLUGIN_ROOT}/templates/hooks/subagent-start.mjs",
|
|
154
|
+
"async": false
|
|
155
|
+
}
|
|
156
|
+
]
|
|
157
|
+
}
|
|
158
|
+
],
|
|
159
|
+
"Notification": [
|
|
147
160
|
{
|
|
148
161
|
"matcher": "",
|
|
149
162
|
"hooks": [
|
|
150
163
|
{
|
|
151
164
|
"type": "command",
|
|
152
|
-
"command": "node ${CLAUDE_PLUGIN_ROOT}/templates/hooks/
|
|
165
|
+
"command": "node ${CLAUDE_PLUGIN_ROOT}/templates/hooks/notification.mjs",
|
|
153
166
|
"async": false
|
|
154
167
|
}
|
|
155
168
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liangjie559567/ultrapower",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "Disciplined multi-agent orchestration: workflow enforcement + parallel execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,7 +32,9 @@
|
|
|
32
32
|
"templates",
|
|
33
33
|
"docs",
|
|
34
34
|
".claude-plugin/plugin.json",
|
|
35
|
+
".claude-plugin/marketplace.json",
|
|
35
36
|
".mcp.json",
|
|
37
|
+
"settings.json",
|
|
36
38
|
"README.md",
|
|
37
39
|
"LICENSE"
|
|
38
40
|
],
|
package/settings.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// OMC Notification Hook
|
|
3
|
+
// Fires on system notifications. Logs for trace/metrics.
|
|
4
|
+
|
|
5
|
+
import { readStdin } from './lib/stdin.mjs';
|
|
6
|
+
|
|
7
|
+
async function main() {
|
|
8
|
+
const raw = await readStdin();
|
|
9
|
+
let data = {};
|
|
10
|
+
try { data = JSON.parse(raw); } catch {}
|
|
11
|
+
|
|
12
|
+
console.log(JSON.stringify({ continue: true, suppressOutput: true }));
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
main();
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// OMC SubagentStart Hook
|
|
3
|
+
// Fires when a subagent is about to start. Can inject context or block.
|
|
4
|
+
|
|
5
|
+
import { readStdin } from './lib/stdin.mjs';
|
|
6
|
+
|
|
7
|
+
async function main() {
|
|
8
|
+
const raw = await readStdin();
|
|
9
|
+
let data = {};
|
|
10
|
+
try { data = JSON.parse(raw); } catch {}
|
|
11
|
+
|
|
12
|
+
const { agent_type, agent_id } = data;
|
|
13
|
+
|
|
14
|
+
console.log(JSON.stringify({ continue: true, suppressOutput: true }));
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
main();
|