oh-my-customcode 0.11.0 → 0.12.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 +116 -22
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
# oh-my-customcode
|
|
6
6
|
|
|
7
|
-
> **Your
|
|
7
|
+
> **Your Coding Agent Stack, Your Way**
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/oh-my-customcode)
|
|
10
10
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
|
|
14
14
|
**[한국어 문서 (Korean)](./README_ko.md)**
|
|
15
15
|
|
|
16
|
-
**The easiest way to customize Claude Code with agents, skills, and rules.**
|
|
16
|
+
**The easiest way to customize Claude Code and OpenAI Codex with agents, skills, and rules.**
|
|
17
17
|
|
|
18
|
-
Like oh-my-zsh transformed shell customization, oh-my-customcode makes personalizing your
|
|
18
|
+
Like oh-my-zsh transformed shell customization, oh-my-customcode makes personalizing your coding agent workflow simple, powerful, and fun.
|
|
19
19
|
|
|
20
20
|
## What Makes It Special
|
|
21
21
|
|
|
@@ -38,19 +38,19 @@ cd your-project
|
|
|
38
38
|
omcustom init
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
That's it. You now have a fully configured
|
|
41
|
+
That's it. You now have a fully configured agent environment.
|
|
42
42
|
|
|
43
43
|
---
|
|
44
44
|
|
|
45
|
-
> **
|
|
45
|
+
> **Dual Provider Support**: Claude and Codex are both supported. Use `--provider claude|codex` (or auto-detect) during `omcustom init`/`update`/`list`/`doctor`.
|
|
46
46
|
|
|
47
47
|
## Customization First
|
|
48
48
|
|
|
49
|
-
This is what oh-my-customcode is all about. **Making
|
|
49
|
+
This is what oh-my-customcode is all about. **Making your coding workflow yours.**
|
|
50
50
|
|
|
51
|
-
### Just
|
|
51
|
+
### Just Describe What You Need
|
|
52
52
|
|
|
53
|
-
No manual file editing. Describe what you want in natural language, and
|
|
53
|
+
No manual file editing. Describe what you want in natural language, and routing skills plus manager agents delegate to the right sub-agent:
|
|
54
54
|
|
|
55
55
|
```
|
|
56
56
|
"Create a migration review expert agent"
|
|
@@ -63,13 +63,13 @@ No manual file editing. Describe what you want in natural language, and the orch
|
|
|
63
63
|
|
|
64
64
|
```
|
|
65
65
|
User (natural language)
|
|
66
|
-
→
|
|
66
|
+
→ secretary-routing (routing skill)
|
|
67
67
|
→ mgr-creator:sonnet — scaffolds agent, registers, verifies
|
|
68
68
|
→ mgr-updater:sonnet — syncs documentation
|
|
69
69
|
→ mgr-supplier:haiku — checks dependencies
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
The routing chain analyzes your request, maps it to the appropriate skill and manager agent, and the selected sub-agent handles execution automatically.
|
|
73
73
|
|
|
74
74
|
### Sub-Agent Model
|
|
75
75
|
|
|
@@ -81,6 +81,8 @@ Each sub-agent runs on an optimized model for its task type:
|
|
|
81
81
|
| `sonnet` | General tasks (default) | Agent creation, code generation |
|
|
82
82
|
| `haiku` | Fast, simple operations | File search, validation |
|
|
83
83
|
|
|
84
|
+
> Note: Claude examples keep `opus/sonnet/haiku`. Codex-native templates use profile terms: `reasoning/balanced/fast`.
|
|
85
|
+
|
|
84
86
|
Claude Code selects the appropriate model and parallelizes independent tasks (up to 4 concurrent sub-agents):
|
|
85
87
|
|
|
86
88
|
```
|
|
@@ -126,18 +128,110 @@ Claude Code selects the appropriate model and parallelizes independent tasks (up
|
|
|
126
128
|
| **QA** | 3 | qa-planner, qa-writer, qa-engineer |
|
|
127
129
|
| **Total** | **42** | |
|
|
128
130
|
|
|
129
|
-
|
|
131
|
+
Canonical agent IDs (`templates/.claude/agents/*.md`):
|
|
132
|
+
|
|
133
|
+
```text
|
|
134
|
+
arch-documenter
|
|
135
|
+
arch-speckit-agent
|
|
136
|
+
be-express-expert
|
|
137
|
+
be-fastapi-expert
|
|
138
|
+
be-go-backend-expert
|
|
139
|
+
be-nestjs-expert
|
|
140
|
+
be-springboot-expert
|
|
141
|
+
db-postgres-expert
|
|
142
|
+
db-redis-expert
|
|
143
|
+
db-supabase-expert
|
|
144
|
+
de-airflow-expert
|
|
145
|
+
de-dbt-expert
|
|
146
|
+
de-kafka-expert
|
|
147
|
+
de-pipeline-expert
|
|
148
|
+
de-snowflake-expert
|
|
149
|
+
de-spark-expert
|
|
150
|
+
fe-svelte-agent
|
|
151
|
+
fe-vercel-agent
|
|
152
|
+
fe-vuejs-agent
|
|
153
|
+
infra-aws-expert
|
|
154
|
+
infra-docker-expert
|
|
155
|
+
lang-golang-expert
|
|
156
|
+
lang-java21-expert
|
|
157
|
+
lang-kotlin-expert
|
|
158
|
+
lang-python-expert
|
|
159
|
+
lang-rust-expert
|
|
160
|
+
lang-typescript-expert
|
|
161
|
+
mgr-claude-code-bible
|
|
162
|
+
mgr-creator
|
|
163
|
+
mgr-gitnerd
|
|
164
|
+
mgr-sauron
|
|
165
|
+
mgr-supplier
|
|
166
|
+
mgr-sync-checker
|
|
167
|
+
mgr-updater
|
|
168
|
+
qa-engineer
|
|
169
|
+
qa-planner
|
|
170
|
+
qa-writer
|
|
171
|
+
sys-memory-keeper
|
|
172
|
+
sys-naggy
|
|
173
|
+
tool-bun-expert
|
|
174
|
+
tool-npm-expert
|
|
175
|
+
tool-optimizer
|
|
176
|
+
```
|
|
130
177
|
|
|
131
|
-
|
|
178
|
+
### Skills (51)
|
|
132
179
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
-
|
|
137
|
-
-
|
|
138
|
-
-
|
|
139
|
-
-
|
|
140
|
-
|
|
180
|
+
Canonical skill IDs (`templates/.claude/skills/*/SKILL.md`):
|
|
181
|
+
|
|
182
|
+
```text
|
|
183
|
+
airflow-best-practices
|
|
184
|
+
audit-agents
|
|
185
|
+
aws-best-practices
|
|
186
|
+
claude-code-bible
|
|
187
|
+
create-agent
|
|
188
|
+
dbt-best-practices
|
|
189
|
+
de-lead-routing
|
|
190
|
+
dev-lead-routing
|
|
191
|
+
dev-refactor
|
|
192
|
+
dev-review
|
|
193
|
+
docker-best-practices
|
|
194
|
+
fastapi-best-practices
|
|
195
|
+
fix-refs
|
|
196
|
+
go-backend-best-practices
|
|
197
|
+
go-best-practices
|
|
198
|
+
help
|
|
199
|
+
intent-detection
|
|
200
|
+
kafka-best-practices
|
|
201
|
+
kotlin-best-practices
|
|
202
|
+
lists
|
|
203
|
+
memory-management
|
|
204
|
+
memory-recall
|
|
205
|
+
memory-save
|
|
206
|
+
monitoring-setup
|
|
207
|
+
npm-audit
|
|
208
|
+
npm-publish
|
|
209
|
+
npm-version
|
|
210
|
+
optimize-analyze
|
|
211
|
+
optimize-bundle
|
|
212
|
+
optimize-report
|
|
213
|
+
pipeline-architecture-patterns
|
|
214
|
+
postgres-best-practices
|
|
215
|
+
python-best-practices
|
|
216
|
+
qa-lead-routing
|
|
217
|
+
react-best-practices
|
|
218
|
+
redis-best-practices
|
|
219
|
+
result-aggregation
|
|
220
|
+
rust-best-practices
|
|
221
|
+
sauron-watch
|
|
222
|
+
secretary-routing
|
|
223
|
+
snowflake-best-practices
|
|
224
|
+
spark-best-practices
|
|
225
|
+
springboot-best-practices
|
|
226
|
+
status
|
|
227
|
+
supabase-postgres-best-practices
|
|
228
|
+
typescript-best-practices
|
|
229
|
+
update-docs
|
|
230
|
+
update-external
|
|
231
|
+
vercel-deploy
|
|
232
|
+
web-design-guidelines
|
|
233
|
+
writing-clearly-and-concisely
|
|
234
|
+
```
|
|
141
235
|
|
|
142
236
|
### Guides (22)
|
|
143
237
|
|
|
@@ -160,7 +254,7 @@ Comprehensive reference documentation covering:
|
|
|
160
254
|
|
|
161
255
|
### Hooks (1)
|
|
162
256
|
|
|
163
|
-
Event-driven automation for
|
|
257
|
+
Event-driven automation for agent lifecycle events (PreToolUse, PostToolUse, etc.).
|
|
164
258
|
|
|
165
259
|
### Contexts (4)
|
|
166
260
|
|
|
@@ -261,7 +355,7 @@ Contributions welcome! See [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
|
261
355
|
---
|
|
262
356
|
|
|
263
357
|
<p align="center">
|
|
264
|
-
<strong>Your
|
|
358
|
+
<strong>Your coding workflow. Your rules. Your way.</strong>
|
|
265
359
|
</p>
|
|
266
360
|
|
|
267
361
|
<p align="center">
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-customcode",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Batteries-included agent harness for Claude Code",
|
|
3
|
+
"version": "0.12.0",
|
|
4
|
+
"description": "Batteries-included agent harness for Claude Code and OpenAI Codex",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"omcustom": "./dist/cli/index.js"
|
|
@@ -59,6 +59,9 @@
|
|
|
59
59
|
"keywords": [
|
|
60
60
|
"claude",
|
|
61
61
|
"claude-code",
|
|
62
|
+
"codex",
|
|
63
|
+
"codex-cli",
|
|
64
|
+
"openai",
|
|
62
65
|
"ai",
|
|
63
66
|
"agent",
|
|
64
67
|
"cli"
|