oh-my-customcode 0.154.0 → 0.155.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/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/agents/arch-documenter.md +17 -0
- package/templates/.claude/agents/fe-design-expert.md +20 -0
- package/templates/.claude/agents/mgr-creator.md +2 -10
- package/templates/.claude/agents/mgr-updater.md +2 -10
- package/templates/.claude/hooks/scripts/feedback-collector.sh +9 -6
- package/templates/.claude/hooks/scripts/session-reflection.sh +53 -1
- package/templates/.claude/hooks/scripts/skill-extractor-analyzer.sh +8 -1
- package/templates/.claude/rules/MAY-optimization.md +15 -0
- package/templates/.claude/rules/MUST-agent-design.md +11 -23
- package/templates/.claude/rules/MUST-agent-identification.md +35 -0
- package/templates/.claude/rules/MUST-continuous-improvement.md +2 -0
- package/templates/.claude/rules/MUST-enforcement-policy.md +6 -5
- package/templates/.claude/rules/MUST-language-policy.md +16 -0
- package/templates/.claude/rules/MUST-orchestrator-coordination.md +42 -0
- package/templates/.claude/rules/MUST-tool-identification.md +37 -0
- package/templates/.claude/rules/SHOULD-hud-statusline.md +2 -0
- package/templates/.claude/skills/agora/SKILL.md +1 -9
- package/templates/.claude/skills/codex-exec/SKILL.md +1 -9
- package/templates/.claude/skills/hada-scout/SKILL.md +100 -48
- package/templates/.claude/skills/memory-management/SKILL.md +44 -0
- package/templates/.claude/skills/omcustom-auto-improve/SKILL.md +2 -2
- package/templates/.claude/skills/pipeline/SKILL.md +44 -0
- package/templates/.claude/skills/post-release-followup/SKILL.md +59 -31
- package/templates/.claude/skills/profile/SKILL.md +2 -11
- package/templates/.claude/skills/reasoning-sandwich/SKILL.md +21 -0
- package/templates/.claude/skills/scout/SKILL.md +34 -33
- package/templates/.claude/skills/skills-sh-search/SKILL.md +10 -9
- package/templates/.claude/skills/update-external/SKILL.md +7 -0
- package/templates/manifest.json +1 -1
|
@@ -62,6 +62,13 @@ python:
|
|
|
62
62
|
## Workflow
|
|
63
63
|
|
|
64
64
|
```
|
|
65
|
+
0. Self-update oh-my-customcode package
|
|
66
|
+
├── Check npm registry for latest version
|
|
67
|
+
├── Compare with current installed version
|
|
68
|
+
├── Run "npm install -g oh-my-customcode@<latest>" if outdated
|
|
69
|
+
├── Skip automatically for npx invocations (npx always fetches latest)
|
|
70
|
+
└── Failure is non-blocking — continue to Step 1 regardless
|
|
71
|
+
|
|
65
72
|
1. Identify external resources
|
|
66
73
|
├── Scan index.yaml files
|
|
67
74
|
├── Find source.type = "external"
|
package/templates/manifest.json
CHANGED