oh-my-customcode 0.44.5 → 0.45.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/README.md +5 -5
- package/dist/cli/index.js +337 -49
- package/package.json +1 -1
- package/templates/.claude/skills/ambiguity-gate/SKILL.md +94 -0
- package/templates/.claude/skills/omcustom-feedback/SKILL.md +137 -0
- package/templates/.claude/skills/sdd/SKILL.md +24 -0
- package/templates/.claude/skills/sdd-dev/SKILL.md +257 -0
- package/templates/.claude/skills/sdd-development/SKILL.md +24 -0
- package/templates/CLAUDE.md +4 -2
- package/templates/guides/git-worktree-workflow/README.md +134 -0
- package/templates/guides/skill-bundle-design/README.md +106 -0
- package/templates/manifest.json +3 -3
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
**[한국어 문서 (Korean)](./README_ko.md)**
|
|
15
15
|
|
|
16
|
-
45 agents.
|
|
16
|
+
45 agents. 82 skills. 21 rules. One command.
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
npm install -g oh-my-customcode && cd your-project && omcustom init
|
|
@@ -138,7 +138,7 @@ Each agent declares its tools, model, memory scope, and limitations in YAML fron
|
|
|
138
138
|
|
|
139
139
|
---
|
|
140
140
|
|
|
141
|
-
### Skills (
|
|
141
|
+
### Skills (82)
|
|
142
142
|
|
|
143
143
|
| Category | Count | Includes |
|
|
144
144
|
|----------|-------|----------|
|
|
@@ -215,7 +215,7 @@ Key rules: R010 (orchestrator never writes files), R009 (parallel execution mand
|
|
|
215
215
|
|
|
216
216
|
---
|
|
217
217
|
|
|
218
|
-
### Guides (
|
|
218
|
+
### Guides (28)
|
|
219
219
|
|
|
220
220
|
Reference documentation covering best practices, architecture decisions, and integration patterns. Located in `guides/` at project root, covering topics from agent design to CI/CD to observability.
|
|
221
221
|
|
|
@@ -257,14 +257,14 @@ your-project/
|
|
|
257
257
|
├── CLAUDE.md # Entry point
|
|
258
258
|
├── .claude/
|
|
259
259
|
│ ├── agents/ # 45 agent definitions
|
|
260
|
-
│ ├── skills/ #
|
|
260
|
+
│ ├── skills/ # 78 skill modules
|
|
261
261
|
│ ├── rules/ # 21 governance rules (R000-R021)
|
|
262
262
|
│ ├── hooks/ # 15 lifecycle hook scripts
|
|
263
263
|
│ ├── schemas/ # Tool input validation schemas
|
|
264
264
|
│ ├── specs/ # Extracted canonical specs
|
|
265
265
|
│ ├── contexts/ # 4 shared context files
|
|
266
266
|
│ └── ontology/ # Knowledge graph for RAG
|
|
267
|
-
└── guides/ #
|
|
267
|
+
└── guides/ # 28 reference documents
|
|
268
268
|
```
|
|
269
269
|
|
|
270
270
|
---
|