claude-pangu 2.2.21 → 2.3.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.
Files changed (65) hide show
  1. package/.claude-plugin/plugin.json +1 -1
  2. package/README.md +2 -0
  3. package/agents/huoshen.md +220 -424
  4. package/agents/librarian.md +113 -276
  5. package/agents/lilou.md +56 -293
  6. package/agents/liubowen.md +103 -324
  7. package/agents/metis.md +178 -152
  8. package/agents/oracle.md +102 -260
  9. package/agents/wukong.md +101 -164
  10. package/agents/yugong.md +384 -231
  11. package/agents/zhuge.md +276 -200
  12. package/commands/handoff.md +178 -0
  13. package/commands/init-deep.md +160 -112
  14. package/commands/refactor.md +196 -194
  15. package/commands/start-work.md +88 -73
  16. package/commands/stop-continuation.md +57 -0
  17. package/hooks/agent-collaboration.sh +14 -1
  18. package/hooks/agent-handoff-prompt.sh +15 -4
  19. package/hooks/agent-ready-notification.sh +13 -2
  20. package/hooks/agent-usage-reminder.sh +12 -2
  21. package/hooks/anthropic-context-window-limit-recovery.sh +14 -2
  22. package/hooks/ast-grep.sh +14 -1
  23. package/hooks/atlas.sh +13 -4
  24. package/hooks/auto-update-checker.sh +20 -1
  25. package/hooks/background-compaction.sh +15 -2
  26. package/hooks/background-notification.sh +1 -1
  27. package/hooks/category-skill-reminder.sh +92 -0
  28. package/hooks/code-quality-checker.sh +14 -1
  29. package/hooks/comment-checker.sh +119 -0
  30. package/hooks/compaction-context-injector.sh +218 -0
  31. package/hooks/context-compression.sh +14 -1
  32. package/hooks/context-smart-alert.sh +15 -3
  33. package/hooks/context-window-monitor.sh +15 -3
  34. package/hooks/delegate-task-retry.sh +4 -4
  35. package/hooks/directory-agents-injector.sh +14 -1
  36. package/hooks/directory-readme-injector.sh +16 -2
  37. package/hooks/edit-error-recovery.sh +17 -3
  38. package/hooks/empty-message-sanitizer.sh +150 -0
  39. package/hooks/empty-task-response-detector.sh +14 -3
  40. package/hooks/error-friendly-display.sh +17 -7
  41. package/hooks/error-recovery.sh +14 -1
  42. package/hooks/first-use-onboarding.sh +1 -4
  43. package/hooks/hook-performance-monitor.sh +1 -1
  44. package/hooks/hooks.json +84 -1
  45. package/hooks/interactive-bash-session.sh +12 -2
  46. package/hooks/json-error-recovery.sh +176 -0
  47. package/hooks/lsp-tools.sh +14 -1
  48. package/hooks/non-interactive-env.sh +186 -0
  49. package/hooks/output-truncator.sh +14 -1
  50. package/hooks/preemptive-compaction.sh +14 -1
  51. package/hooks/rules-injector.sh +14 -1
  52. package/hooks/session-notification.sh +17 -3
  53. package/hooks/session-recovery.sh +12 -2
  54. package/hooks/stop-continuation-guard.sh +37 -0
  55. package/hooks/task-checkpointing.sh +14 -1
  56. package/hooks/think-mode.sh +14 -1
  57. package/hooks/thinking-block-validator.sh +14 -3
  58. package/hooks/tmux-agent-visualizer.sh +17 -2
  59. package/hooks/todo-continuation-enforcer.sh +105 -0
  60. package/hooks/write-existing-file-guard.sh +100 -0
  61. package/package.json +1 -1
  62. package/skills/agent-browser/SKILL.md +385 -146
  63. package/skills/dev-browser/SKILL.md +136 -0
  64. package/skills/frontend-ui-ux/SKILL.md +95 -3
  65. 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.2.21",
4
+ "version": "2.3.0",
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
@@ -917,6 +917,8 @@ model: sonnet
917
917
  - [x] v2.2.2 - **第三阶段功能集成** 🔬(3 个新技能 + 5 个 Agent 变体)
918
918
  - [x] v2.2.17 - **Hooks 验证增强** ✅(安装验证显示 hooks 状态)
919
919
  - [x] v2.2.18 - **代码清理** 🧹(删除废弃 JS 文件,更新开发文档)
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 技能升级)
920
922
 
921
923
  ### v2.2.2 核心更新
922
924