@yan-geroge/omg 0.1.1 → 0.1.2
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 +19 -0
- package/.claude-plugin/plugin.json +17 -0
- package/package.json +2 -1
- package/plugin.json +1 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "npm",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "yan-geroge"
|
|
5
|
+
},
|
|
6
|
+
"plugins": [
|
|
7
|
+
{
|
|
8
|
+
"name": "oh-my-costrict",
|
|
9
|
+
"description": "CSC 多智能体编排插件 — 提供多智能体编排、技能路由、生命周期 Hook 注入能力",
|
|
10
|
+
"version": "0.1.2",
|
|
11
|
+
"author": {
|
|
12
|
+
"name": "yan-geroge"
|
|
13
|
+
},
|
|
14
|
+
"source": "./",
|
|
15
|
+
"category": "productivity",
|
|
16
|
+
"homepage": "https://github.com/y574444354/oh-my-geroge"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "oh-my-costrict",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "CSC 多智能体编排插件 — 为 CSC 提供多智能体编排、技能路由、生命周期 Hook 注入能力",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "yan-geroge"
|
|
7
|
+
},
|
|
8
|
+
"skills": "./skills/",
|
|
9
|
+
"hooks": {
|
|
10
|
+
"SessionStart": [
|
|
11
|
+
{ "hooks": [{ "type": "command", "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/session-start.mjs\"", "timeout": 10000 }] }
|
|
12
|
+
],
|
|
13
|
+
"UserPromptSubmit": [
|
|
14
|
+
{ "hooks": [{ "type": "command", "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/keyword-detector.mjs\"", "timeout": 5000 }] }
|
|
15
|
+
]
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yan-geroge/omg",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "CSC 多智能体编排插件 — 为 CSC 提供多智能体编排、技能路由、生命周期 Hook 注入能力",
|
|
5
5
|
"main": "plugin.json",
|
|
6
6
|
"files": [
|
|
7
7
|
"plugin.json",
|
|
8
8
|
"marketplace.json",
|
|
9
|
+
".claude-plugin/",
|
|
9
10
|
"agents/",
|
|
10
11
|
"skills/",
|
|
11
12
|
"hooks/",
|