oh-my-customcode 0.30.6 → 0.30.7
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 +10 -9
- package/package.json +1 -1
- package/templates/manifest.json +1 -1
package/README.md
CHANGED
|
@@ -151,6 +151,7 @@ All commands are invoked inside the Claude Code conversation.
|
|
|
151
151
|
| `/sauron-watch` | Full R017 sync verification |
|
|
152
152
|
| `/monitoring-setup` | OTel console monitoring enable/disable |
|
|
153
153
|
| `/codex-exec` | Execute Codex CLI prompt |
|
|
154
|
+
| `/structured-dev-cycle` | 6-phase structured development cycle |
|
|
154
155
|
| `/lists` | Show all available commands |
|
|
155
156
|
| `/status` | System status and health checks |
|
|
156
157
|
| `/help` | Help information |
|
|
@@ -272,9 +273,6 @@ After `omcustom init`:
|
|
|
272
273
|
your-project/
|
|
273
274
|
├── CLAUDE.md # Entry point for Claude
|
|
274
275
|
├── .claude/
|
|
275
|
-
│ ├── rules/ # Behavior rules (18 total)
|
|
276
|
-
│ ├── hooks/ # Event hooks (2 total)
|
|
277
|
-
│ ├── contexts/ # Context files (4 total)
|
|
278
276
|
│ ├── agents/ # Agent definitions (43 flat .md files)
|
|
279
277
|
│ │ ├── lang-golang-expert.md
|
|
280
278
|
│ │ ├── be-fastapi-expert.md
|
|
@@ -285,12 +283,15 @@ your-project/
|
|
|
285
283
|
│ │ ├── react-best-practices/
|
|
286
284
|
│ │ ├── secretary-routing/
|
|
287
285
|
│ │ └── ...
|
|
288
|
-
│
|
|
289
|
-
│
|
|
290
|
-
│
|
|
291
|
-
│
|
|
292
|
-
│
|
|
293
|
-
│
|
|
286
|
+
│ ├── ontology/ # Ontology knowledge graph for RAG context
|
|
287
|
+
│ │ ├── schema.yaml
|
|
288
|
+
│ │ ├── agents.yaml
|
|
289
|
+
│ │ ├── skills.yaml
|
|
290
|
+
│ │ ├── rules.yaml
|
|
291
|
+
│ │ └── graphs/
|
|
292
|
+
│ ├── rules/ # Behavior rules (18 total)
|
|
293
|
+
│ ├── hooks/ # Event hooks (2 total)
|
|
294
|
+
│ └── contexts/ # Context files (4 total)
|
|
294
295
|
└── guides/ # Reference docs (23 total)
|
|
295
296
|
```
|
|
296
297
|
|
package/package.json
CHANGED
package/templates/manifest.json
CHANGED