claude-pangu 2.2.22 → 2.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/plugin.json +1 -1
- package/README.md +2 -0
- package/agents/huoshen.md +220 -424
- package/agents/librarian.md +113 -276
- package/agents/lilou.md +56 -293
- package/agents/liubowen.md +103 -324
- package/agents/metis.md +178 -152
- package/agents/oracle.md +102 -260
- package/agents/wukong.md +101 -164
- package/agents/yugong.md +384 -231
- package/agents/zhuge.md +276 -200
- package/commands/handoff.md +178 -0
- package/commands/init-deep.md +160 -112
- package/commands/refactor.md +196 -194
- package/commands/start-work.md +88 -73
- package/commands/stop-continuation.md +57 -0
- package/dist/lib/plugin-installer.d.ts +5 -0
- package/dist/lib/plugin-installer.d.ts.map +1 -1
- package/dist/lib/plugin-installer.js +64 -2
- package/dist/lib/plugin-installer.js.map +1 -1
- package/hooks/category-skill-reminder.sh +92 -0
- package/hooks/comment-checker.sh +119 -0
- package/hooks/hooks.json +54 -0
- package/hooks/json-error-recovery.sh +176 -0
- package/hooks/stop-continuation-guard.sh +37 -0
- package/hooks/todo-continuation-enforcer.sh +105 -0
- package/hooks/write-existing-file-guard.sh +100 -0
- package/package.json +1 -1
- package/skills/agent-browser/SKILL.md +385 -146
- package/skills/dev-browser/SKILL.md +136 -0
- package/skills/frontend-ui-ux/SKILL.md +95 -3
- package/skills/git-master/SKILL.md +561 -386
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://code.claude.com/plugin-schema.json",
|
|
3
3
|
"name": "oh-my-claude",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.1",
|
|
5
5
|
"hooks": "../hooks/hooks.json",
|
|
6
6
|
"description": "基于中国传统文化的 Claude Code 智能编排插件 - A Claude Code plugin inspired by Chinese traditional culture",
|
|
7
7
|
"author": "ZDragon17",
|
package/README.md
CHANGED
|
@@ -918,6 +918,8 @@ model: sonnet
|
|
|
918
918
|
- [x] v2.2.17 - **Hooks 验证增强** ✅(安装验证显示 hooks 状态)
|
|
919
919
|
- [x] v2.2.18 - **代码清理** 🧹(删除废弃 JS 文件,更新开发文档)
|
|
920
920
|
- [x] v2.2.22 - **Hook 系统根本性修复** 🔧(stdin JSON 读取、PostToolUse 崩溃修复、WSL 符号链接保护)
|
|
921
|
+
- [x] v2.3.0 - **oh-my-opencode v3.8.4 全面移植** 🚀(9 Agent 重写 + 6 新 Hook + 5 命令更新 + 4 技能升级)
|
|
922
|
+
- [x] v2.3.1 - **Hook 注册修复** 🐛(syncHooksToSettings 完善 Wave 2 Hook 注册,新增 4 测试用例)
|
|
921
923
|
|
|
922
924
|
### v2.2.2 核心更新
|
|
923
925
|
|