oh-my-customcode 0.1.2 → 0.1.4

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 (233) hide show
  1. package/README.md +45 -32
  2. package/dist/cli/index.js +12 -20
  3. package/dist/index.js +3 -3
  4. package/package.json +2 -2
  5. package/templates/.claude/rules/MUST-orchestrator-coordination.md +68 -0
  6. package/templates/.claude/rules/MUST-parallel-execution.md +66 -9
  7. package/templates/.claude/rules/MUST-tool-identification.md +79 -17
  8. package/templates/.claude/rules/SHOULD-hud-statusline.md +8 -1
  9. package/templates/agents/index.yaml +6 -0
  10. package/templates/agents/infra-engineer/aws-expert/refs/aws/common-patterns.md +169 -0
  11. package/templates/agents/infra-engineer/aws-expert/refs/aws/index.yaml +26 -0
  12. package/templates/agents/infra-engineer/aws-expert/refs/aws/well-architected.md +143 -0
  13. package/templates/agents/infra-engineer/aws-expert/refs/aws-best-practices/SKILL.md +279 -0
  14. package/templates/agents/infra-engineer/aws-expert/refs/aws-best-practices/index.yaml +27 -0
  15. package/templates/agents/infra-engineer/docker-expert/refs/docker/compose-best-practices.md +284 -0
  16. package/templates/agents/infra-engineer/docker-expert/refs/docker/dockerfile-best-practices.md +262 -0
  17. package/templates/agents/infra-engineer/docker-expert/refs/docker/index.yaml +26 -0
  18. package/templates/agents/infra-engineer/docker-expert/refs/docker-best-practices/SKILL.md +274 -0
  19. package/templates/agents/infra-engineer/docker-expert/refs/docker-best-practices/index.yaml +26 -0
  20. package/templates/agents/manager/creator/refs/rules/MAY-optimization.md +93 -0
  21. package/templates/agents/manager/creator/refs/rules/MUST-agent-design.md +107 -0
  22. package/templates/agents/manager/creator/refs/rules/MUST-agent-identification.md +108 -0
  23. package/templates/agents/manager/creator/refs/rules/MUST-continuous-improvement.md +132 -0
  24. package/templates/agents/manager/creator/refs/rules/MUST-intent-transparency.md +199 -0
  25. package/templates/agents/manager/creator/refs/rules/MUST-language-policy.md +62 -0
  26. package/templates/agents/manager/creator/refs/rules/MUST-orchestrator-coordination.md +334 -0
  27. package/templates/agents/manager/creator/refs/rules/MUST-parallel-execution.md +398 -0
  28. package/templates/agents/manager/creator/refs/rules/MUST-permissions.md +84 -0
  29. package/templates/agents/manager/creator/refs/rules/MUST-safety.md +69 -0
  30. package/templates/agents/manager/creator/refs/rules/MUST-sync-verification.md +219 -0
  31. package/templates/agents/manager/creator/refs/rules/MUST-tool-identification.md +174 -0
  32. package/templates/agents/manager/creator/refs/rules/SHOULD-ecomode.md +145 -0
  33. package/templates/agents/manager/creator/refs/rules/SHOULD-error-handling.md +102 -0
  34. package/templates/agents/manager/creator/refs/rules/SHOULD-hud-statusline.md +96 -0
  35. package/templates/agents/manager/creator/refs/rules/SHOULD-interaction.md +103 -0
  36. package/templates/agents/manager/creator/refs/rules/SHOULD-memory-integration.md +114 -0
  37. package/templates/agents/manager/creator/refs/rules/SHOULD-pipeline-mode.md +165 -0
  38. package/templates/agents/manager/creator/refs/rules/index.yaml +125 -0
  39. package/templates/agents/manager/supplier/refs/guides/aws/common-patterns.md +169 -0
  40. package/templates/agents/manager/supplier/refs/guides/aws/index.yaml +26 -0
  41. package/templates/agents/manager/supplier/refs/guides/aws/well-architected.md +143 -0
  42. package/templates/agents/manager/supplier/refs/guides/claude-code/01-overview.md +42 -0
  43. package/templates/agents/manager/supplier/refs/guides/claude-code/03-tools.md +107 -0
  44. package/templates/agents/manager/supplier/refs/guides/claude-code/04-agent-skills.md +90 -0
  45. package/templates/agents/manager/supplier/refs/guides/claude-code/05-agent-sdk.md +129 -0
  46. package/templates/agents/manager/supplier/refs/guides/claude-code/06-mcp.md +165 -0
  47. package/templates/agents/manager/supplier/refs/guides/claude-code/07-prompt-engineering.md +100 -0
  48. package/templates/agents/manager/supplier/refs/guides/claude-code/08-testing.md +58 -0
  49. package/templates/agents/manager/supplier/refs/guides/claude-code/09-guardrails.md +80 -0
  50. package/templates/agents/manager/supplier/refs/guides/claude-code/10-monitoring.md +89 -0
  51. package/templates/agents/manager/supplier/refs/guides/claude-code/11-sub-agents.md +159 -0
  52. package/templates/agents/manager/supplier/refs/guides/claude-code/index.yaml +51 -0
  53. package/templates/agents/manager/supplier/refs/guides/docker/compose-best-practices.md +284 -0
  54. package/templates/agents/manager/supplier/refs/guides/docker/dockerfile-best-practices.md +262 -0
  55. package/templates/agents/manager/supplier/refs/guides/docker/index.yaml +26 -0
  56. package/templates/agents/manager/supplier/refs/guides/fastapi/best-practices.md +232 -0
  57. package/templates/agents/manager/supplier/refs/guides/fastapi/index.yaml +21 -0
  58. package/templates/agents/manager/supplier/refs/guides/go-backend/index.yaml +26 -0
  59. package/templates/agents/manager/supplier/refs/guides/go-backend/project-layout.md +243 -0
  60. package/templates/agents/manager/supplier/refs/guides/go-backend/uber-style.md +212 -0
  61. package/templates/agents/manager/supplier/refs/guides/golang/concurrency.md +282 -0
  62. package/templates/agents/manager/supplier/refs/guides/golang/effective-go.md +309 -0
  63. package/templates/agents/manager/supplier/refs/guides/golang/error-handling.md +250 -0
  64. package/templates/agents/manager/supplier/refs/guides/golang/index.yaml +27 -0
  65. package/templates/agents/manager/supplier/refs/guides/index.yaml +101 -0
  66. package/templates/agents/manager/supplier/refs/guides/kotlin/coding-conventions.md +247 -0
  67. package/templates/agents/manager/supplier/refs/guides/kotlin/idioms.md +234 -0
  68. package/templates/agents/manager/supplier/refs/guides/kotlin/index.yaml +26 -0
  69. package/templates/agents/manager/supplier/refs/guides/python/index.yaml +26 -0
  70. package/templates/agents/manager/supplier/refs/guides/python/pep8-style-guide.md +202 -0
  71. package/templates/agents/manager/supplier/refs/guides/python/zen-of-python.md +79 -0
  72. package/templates/agents/manager/supplier/refs/guides/rust/error-handling.md +262 -0
  73. package/templates/agents/manager/supplier/refs/guides/rust/index.yaml +26 -0
  74. package/templates/agents/manager/supplier/refs/guides/rust/ownership.md +180 -0
  75. package/templates/agents/manager/supplier/refs/guides/springboot/best-practices.md +361 -0
  76. package/templates/agents/manager/supplier/refs/guides/springboot/index.yaml +22 -0
  77. package/templates/agents/manager/supplier/refs/guides/typescript/advanced-types.md +225 -0
  78. package/templates/agents/manager/supplier/refs/guides/typescript/index.yaml +26 -0
  79. package/templates/agents/manager/supplier/refs/guides/typescript/type-system.md +219 -0
  80. package/templates/agents/manager/supplier/refs/guides/web-design/accessibility.md +66 -0
  81. package/templates/agents/manager/supplier/refs/guides/web-design/index.yaml +20 -0
  82. package/templates/agents/manager/supplier/refs/guides/web-design/performance.md +102 -0
  83. package/templates/agents/manager/supplier/refs/rules/MAY-optimization.md +93 -0
  84. package/templates/agents/manager/supplier/refs/rules/MUST-agent-design.md +107 -0
  85. package/templates/agents/manager/supplier/refs/rules/MUST-agent-identification.md +108 -0
  86. package/templates/agents/manager/supplier/refs/rules/MUST-continuous-improvement.md +132 -0
  87. package/templates/agents/manager/supplier/refs/rules/MUST-intent-transparency.md +199 -0
  88. package/templates/agents/manager/supplier/refs/rules/MUST-language-policy.md +62 -0
  89. package/templates/agents/manager/supplier/refs/rules/MUST-orchestrator-coordination.md +334 -0
  90. package/templates/agents/manager/supplier/refs/rules/MUST-parallel-execution.md +398 -0
  91. package/templates/agents/manager/supplier/refs/rules/MUST-permissions.md +84 -0
  92. package/templates/agents/manager/supplier/refs/rules/MUST-safety.md +69 -0
  93. package/templates/agents/manager/supplier/refs/rules/MUST-sync-verification.md +219 -0
  94. package/templates/agents/manager/supplier/refs/rules/MUST-tool-identification.md +174 -0
  95. package/templates/agents/manager/supplier/refs/rules/SHOULD-ecomode.md +145 -0
  96. package/templates/agents/manager/supplier/refs/rules/SHOULD-error-handling.md +102 -0
  97. package/templates/agents/manager/supplier/refs/rules/SHOULD-hud-statusline.md +96 -0
  98. package/templates/agents/manager/supplier/refs/rules/SHOULD-interaction.md +103 -0
  99. package/templates/agents/manager/supplier/refs/rules/SHOULD-memory-integration.md +114 -0
  100. package/templates/agents/manager/supplier/refs/rules/SHOULD-pipeline-mode.md +165 -0
  101. package/templates/agents/manager/supplier/refs/rules/index.yaml +125 -0
  102. package/templates/agents/manager/supplier/refs/skills/backend/fastapi-best-practices/SKILL.md +269 -0
  103. package/templates/agents/manager/supplier/refs/skills/backend/fastapi-best-practices/index.yaml +25 -0
  104. package/templates/agents/manager/supplier/refs/skills/backend/go-backend-best-practices/SKILL.md +337 -0
  105. package/templates/agents/manager/supplier/refs/skills/backend/go-backend-best-practices/index.yaml +26 -0
  106. package/templates/agents/manager/supplier/refs/skills/backend/springboot-best-practices/SKILL.md +356 -0
  107. package/templates/agents/manager/supplier/refs/skills/backend/springboot-best-practices/index.yaml +27 -0
  108. package/templates/agents/manager/supplier/refs/skills/development/go-best-practices/SKILL.md +202 -0
  109. package/templates/agents/manager/supplier/refs/skills/development/go-best-practices/index.yaml +25 -0
  110. package/templates/agents/manager/supplier/refs/skills/development/kotlin-best-practices/SKILL.md +255 -0
  111. package/templates/agents/manager/supplier/refs/skills/development/kotlin-best-practices/index.yaml +27 -0
  112. package/templates/agents/manager/supplier/refs/skills/development/python-best-practices/SKILL.md +221 -0
  113. package/templates/agents/manager/supplier/refs/skills/development/python-best-practices/index.yaml +25 -0
  114. package/templates/agents/manager/supplier/refs/skills/development/react-best-practices/SKILL.md +100 -0
  115. package/templates/agents/manager/supplier/refs/skills/development/react-best-practices/index.yaml +39 -0
  116. package/templates/agents/manager/supplier/refs/skills/development/rust-best-practices/SKILL.md +266 -0
  117. package/templates/agents/manager/supplier/refs/skills/development/rust-best-practices/index.yaml +26 -0
  118. package/templates/agents/manager/supplier/refs/skills/development/typescript-best-practices/SKILL.md +320 -0
  119. package/templates/agents/manager/supplier/refs/skills/development/typescript-best-practices/index.yaml +28 -0
  120. package/templates/agents/manager/supplier/refs/skills/development/vercel-deploy/SKILL.md +73 -0
  121. package/templates/agents/manager/supplier/refs/skills/development/vercel-deploy/index.yaml +30 -0
  122. package/templates/agents/manager/supplier/refs/skills/development/web-design-guidelines/SKILL.md +117 -0
  123. package/templates/agents/manager/supplier/refs/skills/development/web-design-guidelines/index.yaml +34 -0
  124. package/templates/agents/manager/supplier/refs/skills/index.yaml +129 -0
  125. package/templates/agents/manager/supplier/refs/skills/infrastructure/aws-best-practices/SKILL.md +279 -0
  126. package/templates/agents/manager/supplier/refs/skills/infrastructure/aws-best-practices/index.yaml +27 -0
  127. package/templates/agents/manager/supplier/refs/skills/infrastructure/docker-best-practices/SKILL.md +274 -0
  128. package/templates/agents/manager/supplier/refs/skills/infrastructure/docker-best-practices/index.yaml +26 -0
  129. package/templates/agents/manager/supplier/refs/skills/orchestration/intent-detection/SKILL.md +214 -0
  130. package/templates/agents/manager/supplier/refs/skills/orchestration/intent-detection/index.yaml +30 -0
  131. package/templates/agents/manager/supplier/refs/skills/orchestration/intent-detection/patterns/agent-triggers.yaml +342 -0
  132. package/templates/agents/manager/supplier/refs/skills/orchestration/pipeline-execution/SKILL.md +188 -0
  133. package/templates/agents/manager/supplier/refs/skills/orchestration/pipeline-execution/index.yaml +27 -0
  134. package/templates/agents/manager/supplier/refs/skills/system/memory-management/SKILL.md +194 -0
  135. package/templates/agents/manager/supplier/refs/skills/system/memory-management/index.yaml +30 -0
  136. package/templates/agents/manager/supplier/refs/skills/system/result-aggregation/SKILL.md +163 -0
  137. package/templates/agents/manager/supplier/refs/skills/system/result-aggregation/index.yaml +36 -0
  138. package/templates/agents/manager/updater/refs/rules/MAY-optimization.md +93 -0
  139. package/templates/agents/manager/updater/refs/rules/MUST-agent-design.md +107 -0
  140. package/templates/agents/manager/updater/refs/rules/MUST-agent-identification.md +108 -0
  141. package/templates/agents/manager/updater/refs/rules/MUST-continuous-improvement.md +132 -0
  142. package/templates/agents/manager/updater/refs/rules/MUST-intent-transparency.md +199 -0
  143. package/templates/agents/manager/updater/refs/rules/MUST-language-policy.md +62 -0
  144. package/templates/agents/manager/updater/refs/rules/MUST-orchestrator-coordination.md +334 -0
  145. package/templates/agents/manager/updater/refs/rules/MUST-parallel-execution.md +398 -0
  146. package/templates/agents/manager/updater/refs/rules/MUST-permissions.md +84 -0
  147. package/templates/agents/manager/updater/refs/rules/MUST-safety.md +69 -0
  148. package/templates/agents/manager/updater/refs/rules/MUST-sync-verification.md +219 -0
  149. package/templates/agents/manager/updater/refs/rules/MUST-tool-identification.md +174 -0
  150. package/templates/agents/manager/updater/refs/rules/SHOULD-ecomode.md +145 -0
  151. package/templates/agents/manager/updater/refs/rules/SHOULD-error-handling.md +102 -0
  152. package/templates/agents/manager/updater/refs/rules/SHOULD-hud-statusline.md +96 -0
  153. package/templates/agents/manager/updater/refs/rules/SHOULD-interaction.md +103 -0
  154. package/templates/agents/manager/updater/refs/rules/SHOULD-memory-integration.md +114 -0
  155. package/templates/agents/manager/updater/refs/rules/SHOULD-pipeline-mode.md +165 -0
  156. package/templates/agents/manager/updater/refs/rules/index.yaml +125 -0
  157. package/templates/agents/orchestrator/dev-lead/AGENT.md +47 -0
  158. package/templates/agents/orchestrator/secretary/AGENT.md +49 -0
  159. package/templates/agents/orchestrator/secretary/refs/rules/MAY-optimization.md +93 -0
  160. package/templates/agents/orchestrator/secretary/refs/rules/MUST-agent-design.md +107 -0
  161. package/templates/agents/orchestrator/secretary/refs/rules/MUST-agent-identification.md +108 -0
  162. package/templates/agents/orchestrator/secretary/refs/rules/MUST-continuous-improvement.md +132 -0
  163. package/templates/agents/orchestrator/secretary/refs/rules/MUST-intent-transparency.md +199 -0
  164. package/templates/agents/orchestrator/secretary/refs/rules/MUST-language-policy.md +62 -0
  165. package/templates/agents/orchestrator/secretary/refs/rules/MUST-orchestrator-coordination.md +334 -0
  166. package/templates/agents/orchestrator/secretary/refs/rules/MUST-parallel-execution.md +398 -0
  167. package/templates/agents/orchestrator/secretary/refs/rules/MUST-permissions.md +84 -0
  168. package/templates/agents/orchestrator/secretary/refs/rules/MUST-safety.md +69 -0
  169. package/templates/agents/orchestrator/secretary/refs/rules/MUST-sync-verification.md +219 -0
  170. package/templates/agents/orchestrator/secretary/refs/rules/MUST-tool-identification.md +174 -0
  171. package/templates/agents/orchestrator/secretary/refs/rules/SHOULD-ecomode.md +145 -0
  172. package/templates/agents/orchestrator/secretary/refs/rules/SHOULD-error-handling.md +102 -0
  173. package/templates/agents/orchestrator/secretary/refs/rules/SHOULD-hud-statusline.md +96 -0
  174. package/templates/agents/orchestrator/secretary/refs/rules/SHOULD-interaction.md +103 -0
  175. package/templates/agents/orchestrator/secretary/refs/rules/SHOULD-memory-integration.md +114 -0
  176. package/templates/agents/orchestrator/secretary/refs/rules/SHOULD-pipeline-mode.md +165 -0
  177. package/templates/agents/orchestrator/secretary/refs/rules/index.yaml +125 -0
  178. package/templates/agents/sw-engineer/backend/fastapi-expert/refs/fastapi/best-practices.md +232 -0
  179. package/templates/agents/sw-engineer/backend/fastapi-expert/refs/fastapi/index.yaml +21 -0
  180. package/templates/agents/sw-engineer/backend/fastapi-expert/refs/fastapi-best-practices/SKILL.md +269 -0
  181. package/templates/agents/sw-engineer/backend/fastapi-expert/refs/fastapi-best-practices/index.yaml +25 -0
  182. package/templates/agents/sw-engineer/backend/go-backend-expert/refs/go-backend/index.yaml +26 -0
  183. package/templates/agents/sw-engineer/backend/go-backend-expert/refs/go-backend/project-layout.md +243 -0
  184. package/templates/agents/sw-engineer/backend/go-backend-expert/refs/go-backend/uber-style.md +212 -0
  185. package/templates/agents/sw-engineer/backend/go-backend-expert/refs/go-backend-best-practices/SKILL.md +337 -0
  186. package/templates/agents/sw-engineer/backend/go-backend-expert/refs/go-backend-best-practices/index.yaml +26 -0
  187. package/templates/agents/sw-engineer/backend/springboot-expert/refs/springboot/best-practices.md +361 -0
  188. package/templates/agents/sw-engineer/backend/springboot-expert/refs/springboot/index.yaml +22 -0
  189. package/templates/agents/sw-engineer/backend/springboot-expert/refs/springboot-best-practices/SKILL.md +356 -0
  190. package/templates/agents/sw-engineer/backend/springboot-expert/refs/springboot-best-practices/index.yaml +27 -0
  191. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/react-best-practices/SKILL.md +100 -0
  192. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/react-best-practices/index.yaml +39 -0
  193. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/vercel-deploy/SKILL.md +73 -0
  194. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/vercel-deploy/index.yaml +30 -0
  195. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/web-design/accessibility.md +66 -0
  196. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/web-design/index.yaml +20 -0
  197. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/web-design/performance.md +102 -0
  198. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/web-design-guidelines/SKILL.md +117 -0
  199. package/templates/agents/sw-engineer/frontend/vercel-agent/refs/web-design-guidelines/index.yaml +34 -0
  200. package/templates/agents/sw-engineer/language/golang-expert/refs/go-best-practices/SKILL.md +202 -0
  201. package/templates/agents/sw-engineer/language/golang-expert/refs/go-best-practices/index.yaml +25 -0
  202. package/templates/agents/sw-engineer/language/golang-expert/refs/golang/concurrency.md +282 -0
  203. package/templates/agents/sw-engineer/language/golang-expert/refs/golang/effective-go.md +309 -0
  204. package/templates/agents/sw-engineer/language/golang-expert/refs/golang/error-handling.md +250 -0
  205. package/templates/agents/sw-engineer/language/golang-expert/refs/golang/index.yaml +27 -0
  206. package/templates/agents/sw-engineer/language/kotlin-expert/refs/kotlin/coding-conventions.md +247 -0
  207. package/templates/agents/sw-engineer/language/kotlin-expert/refs/kotlin/idioms.md +234 -0
  208. package/templates/agents/sw-engineer/language/kotlin-expert/refs/kotlin/index.yaml +26 -0
  209. package/templates/agents/sw-engineer/language/kotlin-expert/refs/kotlin-best-practices/SKILL.md +255 -0
  210. package/templates/agents/sw-engineer/language/kotlin-expert/refs/kotlin-best-practices/index.yaml +27 -0
  211. package/templates/agents/sw-engineer/language/python-expert/refs/python/index.yaml +26 -0
  212. package/templates/agents/sw-engineer/language/python-expert/refs/python/pep8-style-guide.md +202 -0
  213. package/templates/agents/sw-engineer/language/python-expert/refs/python/zen-of-python.md +79 -0
  214. package/templates/agents/sw-engineer/language/python-expert/refs/python-best-practices/SKILL.md +221 -0
  215. package/templates/agents/sw-engineer/language/python-expert/refs/python-best-practices/index.yaml +25 -0
  216. package/templates/agents/sw-engineer/language/rust-expert/refs/rust/error-handling.md +262 -0
  217. package/templates/agents/sw-engineer/language/rust-expert/refs/rust/index.yaml +26 -0
  218. package/templates/agents/sw-engineer/language/rust-expert/refs/rust/ownership.md +180 -0
  219. package/templates/agents/sw-engineer/language/rust-expert/refs/rust-best-practices/SKILL.md +266 -0
  220. package/templates/agents/sw-engineer/language/rust-expert/refs/rust-best-practices/index.yaml +26 -0
  221. package/templates/agents/sw-engineer/language/typescript-expert/refs/typescript/advanced-types.md +225 -0
  222. package/templates/agents/sw-engineer/language/typescript-expert/refs/typescript/index.yaml +26 -0
  223. package/templates/agents/sw-engineer/language/typescript-expert/refs/typescript/type-system.md +219 -0
  224. package/templates/agents/sw-engineer/language/typescript-expert/refs/typescript-best-practices/SKILL.md +320 -0
  225. package/templates/agents/sw-engineer/language/typescript-expert/refs/typescript-best-practices/index.yaml +28 -0
  226. package/templates/agents/tutor/go-tutor/AGENT.md +130 -0
  227. package/templates/agents/tutor/go-tutor/index.yaml +48 -0
  228. package/templates/examples/code-review.yaml +66 -0
  229. package/templates/guides/claude-code/11-sub-agents.md +159 -0
  230. package/templates/index.yaml +18 -0
  231. package/templates/manifest.json +55 -0
  232. package/templates/skills/orchestration/intent-detection/patterns/agent-triggers.yaml +9 -0
  233. package/templates/templates/pipeline-template.yaml +50 -0
package/README.md CHANGED
@@ -14,7 +14,8 @@ Like oh-my-zsh transformed shell customization, oh-my-customcode makes personali
14
14
 
15
15
  | Feature | Description |
16
16
  |---------|-------------|
17
- | **Batteries Included** | 36 agents, 17 skills, 18 rules - ready to use out of the box |
17
+ | **Batteries Included** | 37 agents, 17 skills, 12 guides - synced with baekgom-agents templates |
18
+ | **Sub-Agent Model** | Supports hierarchical agent orchestration with specialized roles |
18
19
  | **Dead Simple Customization** | Create a folder + markdown file = new agent or skill |
19
20
  | **Mix and Match** | Use built-in components, create your own, or combine both |
20
21
  | **Non-Destructive** | Your customizations live alongside defaults, never overwritten |
@@ -27,7 +28,7 @@ npm install -g oh-my-customcode
27
28
 
28
29
  # Initialize in your project
29
30
  cd your-project
30
- omcc init
31
+ omcustom init
31
32
  ```
32
33
 
33
34
  That's it. You now have a fully configured Claude Code environment.
@@ -183,36 +184,48 @@ your-project/
183
184
 
184
185
  ## What's Included
185
186
 
186
- ### Agents (36)
187
-
188
- | Category | Agents |
189
- |----------|--------|
190
- | Orchestrators | planner, secretary, dev-lead, qa-lead |
191
- | Managers | creator, updater, supplier, gitnerd, sync-checker, sauron |
192
- | System | memory-keeper, naggy |
193
- | Languages | golang, python, rust, kotlin, typescript, java21 |
194
- | Frontend | vercel-agent, vuejs-agent, svelte-agent |
195
- | Backend | fastapi, springboot, go-backend, express, nestjs |
196
- | Tooling | npm-expert, optimizer, bun-expert |
197
- | Architecture | documenter, speckit-agent |
198
- | Infrastructure | docker-expert, aws-expert |
199
- | QA | qa-planner, qa-writer, qa-engineer |
187
+ > **Templates synced from [baekgom-agents](https://github.com/baekenough/baekgom-agents)** - Battle-tested agent system with sub-agent orchestration support.
188
+
189
+ ### Agents (37)
190
+
191
+ | Category | Count | Agents |
192
+ |----------|-------|--------|
193
+ | **Orchestrators** | 4 | planner, secretary, dev-lead, qa-lead |
194
+ | **Managers** | 6 | creator, updater, supplier, gitnerd, sync-checker, sauron |
195
+ | **System** | 2 | memory-keeper, naggy |
196
+ | **Languages** | 6 | golang, python, rust, kotlin, typescript, java21 |
197
+ | **Frontend** | 3 | vercel-agent, vuejs-agent, svelte-agent |
198
+ | **Backend** | 5 | fastapi, springboot, go-backend, express, nestjs |
199
+ | **Tooling** | 3 | npm-expert, optimizer, bun-expert |
200
+ | **Architecture** | 2 | documenter, speckit-agent |
201
+ | **Infrastructure** | 2 | docker-expert, aws-expert |
202
+ | **QA** | 3 | qa-planner, qa-writer, qa-engineer |
203
+ | **Tutor** | 1 | go-tutor |
204
+ | **Total** | **37** | |
200
205
 
201
206
  ### Skills (17)
202
207
 
203
- - **Development**: Go, Python, TypeScript, Kotlin, Rust, Java, React, Vercel
204
- - **Backend**: FastAPI, Spring Boot, Express, NestJS, Go Backend
205
- - **Infrastructure**: Docker, AWS
206
- - **System**: Memory management, result aggregation
207
- - **Orchestration**: Pipeline execution, intent detection
208
+ - **Development** (8): Go, Python, TypeScript, Kotlin, Rust, Java, React, Vercel
209
+ - **Backend** (5): FastAPI, Spring Boot, Express, NestJS, Go Backend
210
+ - **Infrastructure** (2): Docker, AWS
211
+ - **System** (2): Memory management, result aggregation
212
+ - **Orchestration** (2): Pipeline execution, intent detection
213
+
214
+ ### Guides (12)
215
+
216
+ Comprehensive reference documentation covering:
217
+ - Agent creation and management
218
+ - Skill development
219
+ - Pipeline workflows
220
+ - Best practices and patterns
208
221
 
209
222
  ### Rules (18)
210
223
 
211
224
  | Priority | Count | Purpose |
212
225
  |----------|-------|---------|
213
- | MUST | 10 | Safety, permissions, agent design (enforced) |
214
- | SHOULD | 6 | Interactions, error handling (recommended) |
215
- | MAY | 2 | Optimization guidelines (optional) |
226
+ | **MUST** | 10 | Safety, permissions, agent design (enforced) |
227
+ | **SHOULD** | 6 | Interactions, error handling (recommended) |
228
+ | **MAY** | 2 | Optimization guidelines (optional) |
216
229
 
217
230
  ---
218
231
 
@@ -220,19 +233,19 @@ your-project/
220
233
 
221
234
  | Command | Description |
222
235
  |---------|-------------|
223
- | `omcc init` | Initialize in current project |
224
- | `omcc init --lang ko` | Initialize with Korean language |
225
- | `omcc update` | Update to latest version |
226
- | `omcc list` | List all installed components |
227
- | `omcc list agents` | List agents only |
228
- | `omcc doctor` | Verify installation health |
229
- | `omcc doctor --fix` | Auto-fix common issues |
236
+ | `omcustom init` | Initialize in current project |
237
+ | `omcustom init --lang ko` | Initialize with Korean language |
238
+ | `omcustom update` | Update to latest version |
239
+ | `omcustom list` | List all installed components |
240
+ | `omcustom list agents` | List agents only |
241
+ | `omcustom doctor` | Verify installation health |
242
+ | `omcustom doctor --fix` | Auto-fix common issues |
230
243
 
231
244
  ---
232
245
 
233
246
  ## Project Structure
234
247
 
235
- After `omcc init`:
248
+ After `omcustom init`:
236
249
 
237
250
  ```
238
251
  your-project/
package/dist/cli/index.js CHANGED
@@ -11450,7 +11450,7 @@ var en_default = {
11450
11450
  cli: {
11451
11451
  description: "Batteries-included agent harness for Claude Code",
11452
11452
  versionOption: "Show version number",
11453
- usage: "Usage: omcc <command> [options]",
11453
+ usage: "Usage: omcustom <command> [options]",
11454
11454
  commands: "Commands",
11455
11455
  options: "Options",
11456
11456
  examples: "Examples",
@@ -11472,7 +11472,7 @@ var en_default = {
11472
11472
  symlinking: "Creating symlinks...",
11473
11473
  verifying: "Verifying installation...",
11474
11474
  success: "Successfully initialized oh-my-customcode!",
11475
- verificationFailed: "Installation verification failed. Run 'omcc doctor' for details.",
11475
+ verificationFailed: "Installation verification failed. Run 'omcustom doctor' for details.",
11476
11476
  failed: "Failed to initialize:",
11477
11477
  alreadyInitialized: "oh-my-customcode is already initialized in this directory",
11478
11478
  configCreated: "Configuration created at {{path}}",
@@ -11488,7 +11488,7 @@ var en_default = {
11488
11488
  description: "Update agents and configurations to latest version",
11489
11489
  checking: "Checking for updates...",
11490
11490
  notInstalled: "oh-my-customcode is not installed in this directory.",
11491
- runInitFirst: "Run 'omcc init' first to install.",
11491
+ runInitFirst: "Run 'omcustom init' first to install.",
11492
11492
  alreadyLatest: "Already at the latest version.",
11493
11493
  updating: "Updating from {{from}} to {{to}}...",
11494
11494
  success: "Successfully updated to the latest version!",
@@ -11537,7 +11537,7 @@ var en_default = {
11537
11537
  fixed: "{{name}} has been fixed",
11538
11538
  passed: "All checks passed!",
11539
11539
  failed: "Some checks failed.",
11540
- runWithFix: "Run 'omcc doctor --fix' to fix {{count}} issue(s) automatically.",
11540
+ runWithFix: "Run 'omcustom doctor --fix' to fix {{count}} issue(s) automatically.",
11541
11541
  summary: "Summary: {{pass}} passed, {{warn}} warnings, {{fail}} failed, {{fixed}} fixed",
11542
11542
  running: "Running health checks...",
11543
11543
  checkingConfig: "Checking configuration...",
@@ -11697,7 +11697,7 @@ var ko_default = {
11697
11697
  cli: {
11698
11698
  description: "Claude Code를 위한 올인원 에이전트 하네스",
11699
11699
  versionOption: "버전 번호 표시",
11700
- usage: "사용법: omcc <명령어> [옵션]",
11700
+ usage: "사용법: omcustom <명령어> [옵션]",
11701
11701
  commands: "명령어",
11702
11702
  options: "옵션",
11703
11703
  examples: "예제",
@@ -11719,7 +11719,7 @@ var ko_default = {
11719
11719
  symlinking: "심볼릭 링크 생성 중...",
11720
11720
  verifying: "설치 확인 중...",
11721
11721
  success: "oh-my-customcode 초기화 완료!",
11722
- verificationFailed: "설치 확인 실패. 'omcc doctor'를 실행하여 자세한 내용을 확인하세요.",
11722
+ verificationFailed: "설치 확인 실패. 'omcustom doctor'를 실행하여 자세한 내용을 확인하세요.",
11723
11723
  failed: "초기화 실패:",
11724
11724
  alreadyInitialized: "이 디렉토리에 oh-my-customcode가 이미 초기화되어 있습니다",
11725
11725
  configCreated: "설정 파일 생성됨: {{path}}",
@@ -11735,7 +11735,7 @@ var ko_default = {
11735
11735
  description: "에이전트 및 설정을 최신 버전으로 업데이트",
11736
11736
  checking: "업데이트 확인 중...",
11737
11737
  notInstalled: "이 디렉토리에 oh-my-customcode가 설치되어 있지 않습니다.",
11738
- runInitFirst: "먼저 'omcc init'을 실행하여 설치하세요.",
11738
+ runInitFirst: "먼저 'omcustom init'을 실행하여 설치하세요.",
11739
11739
  alreadyLatest: "이미 최신 버전입니다.",
11740
11740
  updating: "{{from}}에서 {{to}}로 업데이트 중...",
11741
11741
  success: "최신 버전으로 업데이트 완료!",
@@ -11784,7 +11784,7 @@ var ko_default = {
11784
11784
  fixed: "{{name}}이(가) 수정되었습니다",
11785
11785
  passed: "모든 검사 통과!",
11786
11786
  failed: "일부 검사 실패.",
11787
- runWithFix: "'omcc doctor --fix'를 실행하여 {{count}}개 문제를 자동으로 수정할 수 있습니다.",
11787
+ runWithFix: "'omcustom doctor --fix'를 실행하여 {{count}}개 문제를 자동으로 수정할 수 있습니다.",
11788
11788
  summary: "요약: {{pass}}개 통과, {{warn}}개 경고, {{fail}}개 실패, {{fixed}}개 수정됨",
11789
11789
  running: "상태 검사 실행 중...",
11790
11790
  checkingConfig: "설정 확인 중...",
@@ -12034,10 +12034,6 @@ async function isDirectory(targetPath) {
12034
12034
  }
12035
12035
  async function isValidSymlink(symlinkPath) {
12036
12036
  try {
12037
- const stat = await fs.lstat(symlinkPath);
12038
- if (!stat.isSymbolicLink()) {
12039
- return true;
12040
- }
12041
12037
  await fs.stat(symlinkPath);
12042
12038
  return true;
12043
12039
  } catch {
@@ -12096,12 +12092,8 @@ async function findRefsSymlinks(dir2) {
12096
12092
  return results;
12097
12093
  }
12098
12094
  async function countDirectories(dirPath) {
12099
- try {
12100
- const entries = await fs.readdir(dirPath, { withFileTypes: true });
12101
- return entries.filter((e) => e.isDirectory()).length;
12102
- } catch {
12103
- return 0;
12104
- }
12095
+ const entries = await fs.readdir(dirPath, { withFileTypes: true });
12096
+ return entries.filter((e) => e.isDirectory()).length;
12105
12097
  }
12106
12098
  async function countAgentsInTypeDir(typePath) {
12107
12099
  let count = 0;
@@ -12741,7 +12733,7 @@ function success(messageKey, params) {
12741
12733
 
12742
12734
  // src/core/config.ts
12743
12735
  import { join as join2 } from "node:path";
12744
- var CONFIG_FILE = ".omccrc.json";
12736
+ var CONFIG_FILE = ".omcustomrc.json";
12745
12737
  var CURRENT_CONFIG_VERSION = 1;
12746
12738
  function getDefaultConfig() {
12747
12739
  return {
@@ -13525,7 +13517,7 @@ var require2 = createRequire2(import.meta.url);
13525
13517
  var packageJson = require2("../../package.json");
13526
13518
  function createProgram() {
13527
13519
  const program2 = new Command;
13528
- program2.name("omcc").description(i18n.t("cli.description")).version(packageJson.version, "-v, --version", i18n.t("cli.versionOption"));
13520
+ program2.name("omcustom").description(i18n.t("cli.description")).version(packageJson.version, "-v, --version", i18n.t("cli.versionOption"));
13529
13521
  program2.command("init").description(i18n.t("cli.init.description")).option("-l, --lang <language>", i18n.t("cli.init.langOption"), "en").action(async (options) => {
13530
13522
  await initCommand(options);
13531
13523
  });
package/dist/index.js CHANGED
@@ -324,7 +324,7 @@ function success(messageKey, params) {
324
324
  }
325
325
 
326
326
  // src/core/config.ts
327
- var CONFIG_FILE = ".omccrc.json";
327
+ var CONFIG_FILE = ".omcustomrc.json";
328
328
  var CURRENT_CONFIG_VERSION = 1;
329
329
  function getDefaultConfig() {
330
330
  return {
@@ -684,7 +684,7 @@ async function backupExistingInstallation(targetDir) {
684
684
  }
685
685
  // src/core/updater.ts
686
686
  import { join as join4 } from "node:path";
687
- var CUSTOMIZATION_MANIFEST_FILE = ".omcc-customizations.json";
687
+ var CUSTOMIZATION_MANIFEST_FILE = ".omcustom-customizations.json";
688
688
  function createUpdateResult() {
689
689
  return {
690
690
  success: false,
@@ -862,7 +862,7 @@ function getComponentPath(component) {
862
862
  }
863
863
  async function backupInstallation(targetDir) {
864
864
  const timestamp = new Date().toISOString().replace(/[:.]/g, "-");
865
- const backupDir = join4(targetDir, `.omcc-backup-${timestamp}`);
865
+ const backupDir = join4(targetDir, `.omcustom-backup-${timestamp}`);
866
866
  const fs = await import("node:fs/promises");
867
867
  await ensureDirectory(backupDir);
868
868
  const dirsToBackup = [".claude", "agents", "skills", "guides", "pipelines", "commands"];
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "oh-my-customcode",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Batteries-included agent harness for Claude Code",
5
5
  "type": "module",
6
6
  "bin": {
7
- "omcc": "./dist/cli/index.js"
7
+ "omcustom": "./dist/cli/index.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
10
  "types": "./dist/index.d.ts",
@@ -226,6 +226,74 @@ CORRECT:
226
226
  | memory-keeper | agents/system/memory-keeper/ | Memory operations |
227
227
  | naggy | agents/system/naggy/ | TODO management |
228
228
 
229
+ ## CRITICAL: Use Specialized Expert Agents for Code Work
230
+
231
+ ```
232
+ ╔══════════════════════════════════════════════════════════════════╗
233
+ ║ CODE WORK MUST USE SPECIALIZED EXPERT AGENTS ║
234
+ ║ ║
235
+ ║ Language/Framework → Required Agent ║
236
+ ║ ───────────────────────────────────────────────── ║
237
+ ║ Python/FastAPI backend → python-expert or fastapi-expert ║
238
+ ║ TypeScript/Next.js frontend → typescript-expert or vercel-agent║
239
+ ║ Go code → golang-expert ║
240
+ ║ Kotlin/Spring → kotlin-expert or springboot-expert║
241
+ ║ ║
242
+ ║ WRONG: ║
243
+ ║ secretary → Task(general-purpose) → writes Python code ║
244
+ ║ ║
245
+ ║ CORRECT: ║
246
+ ║ secretary → Task(python-expert) → writes Python code ║
247
+ ║ ║
248
+ ║ general-purpose should ONLY be used when: ║
249
+ ║ - No specialized agent exists for the task ║
250
+ ║ - Task is truly generic (file moves, simple scripts) ║
251
+ ╚══════════════════════════════════════════════════════════════════╝
252
+ ```
253
+
254
+ ## CRITICAL: Sub-agent Model Specification
255
+
256
+ ```
257
+ ╔══════════════════════════════════════════════════════════════════╗
258
+ ║ TASK TOOL MODEL PARAMETER (RECOMMENDED) ║
259
+ ║ ║
260
+ ║ Claude Code Task tool supports `model` parameter to specify ║
261
+ ║ which model the sub-agent should use. ║
262
+ ║ ║
263
+ ║ Available models: ║
264
+ ║ - opus : Complex reasoning, architecture design ║
265
+ ║ - sonnet : Balanced performance (default) ║
266
+ ║ - haiku : Fast, simple tasks, file search ║
267
+ ║ - inherit: Use parent conversation's model ║
268
+ ║ ║
269
+ ║ Usage: ║
270
+ ║ Task( ║
271
+ ║ subagent_type: "general-purpose", ║
272
+ ║ prompt: "Analyze architecture", ║
273
+ ║ model: "opus" ║
274
+ ║ ) ║
275
+ ╚══════════════════════════════════════════════════════════════════╝
276
+ ```
277
+
278
+ ### Model Selection by Task Type
279
+
280
+ | Task Type | Recommended Model | Reason |
281
+ |-----------|-------------------|--------|
282
+ | Architecture analysis | `opus` | Deep reasoning required |
283
+ | Code review | `opus` or `sonnet` | Quality judgment |
284
+ | Code implementation | `sonnet` | Balanced performance |
285
+ | File search/read | `haiku` | Fast, simple operation |
286
+ | Simple validation | `haiku` | Low latency |
287
+
288
+ ### Model Selection by Agent Type
289
+
290
+ | Agent Category | Model | Examples |
291
+ |----------------|-------|----------|
292
+ | Orchestrator judgment | `opus` | Complex routing decisions |
293
+ | Manager agents | `sonnet` | creator, updater, supplier |
294
+ | Simple utilities | `haiku` | File operations, search |
295
+ | Expert agents | `sonnet` | golang-expert, python-expert |
296
+
229
297
  ## CRITICAL: Git Operations Delegation
230
298
 
231
299
  ```
@@ -178,6 +178,41 @@ requirements:
178
178
  - Each instance has isolated context
179
179
  ```
180
180
 
181
+ ### 4. Model Specification (RECOMMENDED)
182
+
183
+ ```
184
+ ╔══════════════════════════════════════════════════════════════════╗
185
+ ║ USE MODEL PARAMETER FOR COST/PERFORMANCE OPTIMIZATION ║
186
+ ║ ║
187
+ ║ Task tool supports `model` parameter: ║
188
+ ║ ║
189
+ ║ Task( ║
190
+ ║ subagent_type: "general-purpose", ║
191
+ ║ prompt: "...", ║
192
+ ║ model: "haiku" ← Specify model ║
193
+ ║ ) ║
194
+ ║ ║
195
+ ║ Model Selection: ║
196
+ ║ - opus : Complex reasoning (expensive, powerful) ║
197
+ ║ - sonnet : General tasks (default, balanced) ║
198
+ ║ - haiku : Simple tasks (fast, cheap) ║
199
+ ║ ║
200
+ ║ Parallel Task Optimization: ║
201
+ ║ - Use haiku for file search/validation tasks ║
202
+ ║ - Use sonnet for code generation tasks ║
203
+ ║ - Use opus only when deep reasoning is required ║
204
+ ╚══════════════════════════════════════════════════════════════════╝
205
+ ```
206
+
207
+ Example with model specification:
208
+ ```
209
+ # Parallel tasks with appropriate models
210
+ Task(prompt: "Search for auth files", model: "haiku") ┐
211
+ Task(prompt: "Implement feature A", model: "sonnet") ├─ Optimized
212
+ Task(prompt: "Implement feature B", model: "sonnet") │
213
+ Task(prompt: "Analyze architecture", model: "opus") ┘
214
+ ```
215
+
181
216
  ## Instance Model
182
217
 
183
218
  ### Instantiation
@@ -310,7 +345,7 @@ requirements:
310
345
 
311
346
  ## Display Format
312
347
 
313
- When parallel execution occurs:
348
+ When parallel execution occurs, MUST display `{task-name}:{model}` format:
314
349
 
315
350
  ```
316
351
  ┌─ Agent: secretary (orchestrator)
@@ -318,21 +353,43 @@ When parallel execution occurs:
318
353
 
319
354
  [Parallel] Spawning 4 instances...
320
355
 
321
- [Instance 1] creator → golang-expert
322
- [Instance 2] creator → python-expert
323
- [Instance 3] creator → rust-expert
324
- [Instance 4] creator → typescript-expert
356
+ [Instance 1] creator-golang:sonnet → golang-expert
357
+ [Instance 2] creator-python:sonnet → python-expert
358
+ [Instance 3] creator-rust:sonnet → rust-expert
359
+ [Instance 4] creator-typescript:sonnet → typescript-expert
325
360
 
326
361
  [Progress] ████████░░░░ 2/4
327
362
 
328
- [Instance 1] ✓ golang-expert created
329
- [Instance 2] ✓ python-expert created
330
- [Instance 3] ✓ rust-expert created
331
- [Instance 4] ✓ typescript-expert created
363
+ [Instance 1] creator-golang:sonnet ✓ golang-expert created
364
+ [Instance 2] creator-python:sonnet ✓ python-expert created
365
+ [Instance 3] creator-rust:sonnet ✓ rust-expert created
366
+ [Instance 4] creator-typescript:sonnet ✓ typescript-expert created
332
367
 
333
368
  [Summary] 4/4 tasks completed successfully
334
369
  ```
335
370
 
371
+ ### Display Format Rules
372
+
373
+ ```
374
+ ╔══════════════════════════════════════════════════════════════════╗
375
+ ║ PARALLEL AGENT DISPLAY FORMAT (MANDATORY) ║
376
+ ║ ║
377
+ ║ When announcing parallel agents, MUST show: ║
378
+ ║ ║
379
+ ║ {task-name}:{model} ║
380
+ ║ ║
381
+ ║ Examples: ║
382
+ ║ [Instance 1] readme-update:sonnet ✓ README updated ║
383
+ ║ [Instance 2] code-review:haiku ✓ Review complete ║
384
+ ║ [Instance 3] architecture:opus ✓ Analysis done ║
385
+ ║ ║
386
+ ║ This allows users to: ║
387
+ ║ - See which model is used for each task ║
388
+ ║ - Understand cost implications ║
389
+ ║ - Debug model selection issues ║
390
+ ╚══════════════════════════════════════════════════════════════════╝
391
+ ```
392
+
336
393
  ## Benefits
337
394
 
338
395
  1. **Throughput**: N tasks complete in ~1/N time
@@ -6,39 +6,99 @@
6
6
 
7
7
  ## CRITICAL
8
8
 
9
- **EVERY tool call MUST be prefixed with agent identification. This is NON-NEGOTIABLE.**
9
+ **EVERY tool call MUST be prefixed with agent and model identification. This is NON-NEGOTIABLE.**
10
10
 
11
11
  ```
12
12
  Before EVERY tool call, output:
13
- [agent-name] → Tool: <tool-name>
14
- [agent-name] → Target: <file/path/url>
13
+ [agent-name][model] → Tool: <tool-name>
14
+ [agent-name][model] → Target: <file/path/url>
15
15
  ```
16
16
 
17
17
  Failure to identify tool usage = Rule violation = Must be corrected immediately.
18
18
 
19
+ ### Self-Check Before EVERY Tool Call
20
+
21
+ ```
22
+ ╔══════════════════════════════════════════════════════════════════╗
23
+ ║ BEFORE INVOKING ANY TOOL, ASK YOURSELF: ║
24
+ ║ ║
25
+ ║ 1. Did I output the tool identification line with MODEL? ║
26
+ ║ [agent-name][model] → Tool: <tool-name> ║
27
+ ║ [agent-name][model] → Target: <target> ║
28
+ ║ ║
29
+ ║ 2. Am I about to call multiple tools in parallel? ║
30
+ ║ → EACH tool needs its own identification line ║
31
+ ║ → List all identifications BEFORE the tool calls ║
32
+ ║ ║
33
+ ║ If NO to #1 → STOP. Output identification FIRST. ║
34
+ ╚══════════════════════════════════════════════════════════════════╝
35
+ ```
36
+
37
+ ### Model Values
38
+
39
+ | Model | When to Use |
40
+ |-------|-------------|
41
+ | `opus` | Complex reasoning, architecture design |
42
+ | `sonnet` | General tasks, code generation (default) |
43
+ | `haiku` | Fast simple tasks, file search |
44
+
45
+ ### Common Violations to Avoid
46
+
47
+ ```
48
+ ❌ WRONG: Calling tools without identification
49
+ "먼저 JD 내용을 확인하겠습니다."
50
+ <tool_call>WebFetch(...)</tool_call>
51
+
52
+ ❌ WRONG: Missing model in identification
53
+ [secretary] → Tool: WebFetch
54
+ [secretary] → Fetching: https://example.com/jd.md
55
+
56
+ ✓ CORRECT: Always identify with agent AND model
57
+ "먼저 JD 내용을 확인하겠습니다."
58
+ [secretary][opus] → Tool: WebFetch
59
+ [secretary][opus] → Fetching: https://example.com/jd.md
60
+ <tool_call>WebFetch(...)</tool_call>
61
+
62
+ ❌ WRONG: Parallel calls without listing all identifications
63
+ <tool_call>WebFetch(url1)</tool_call>
64
+ <tool_call>WebFetch(url2)</tool_call>
65
+ <tool_call>Bash(cmd)</tool_call>
66
+
67
+ ✓ CORRECT: List all identifications with models, then call
68
+ [secretary][opus] → Tool: WebFetch
69
+ [secretary][opus] → Fetching: url1
70
+ [secretary][opus] → Tool: WebFetch
71
+ [secretary][opus] → Fetching: url2
72
+ [secretary][opus] → Tool: Bash
73
+ [secretary][opus] → Running: cmd
74
+ <tool_call>WebFetch(url1)</tool_call>
75
+ <tool_call>WebFetch(url2)</tool_call>
76
+ <tool_call>Bash(cmd)</tool_call>
77
+ ```
78
+
19
79
  ## Purpose
20
80
 
21
81
  Display which agent is using which tool for transparency and debugging. This extends R007 (Agent Identification) to cover tool operations.
22
82
 
23
83
  ## Tool Usage Format
24
84
 
25
- When invoking a tool, prefix with agent identification:
85
+ When invoking a tool, prefix with agent and model identification:
26
86
 
27
87
  ```
28
- [agent-name] → Tool: <tool-name>
88
+ [agent-name][model] → Tool: <tool-name>
29
89
  ```
30
90
 
31
91
  ### Examples
32
92
 
33
93
  ```
34
- [golang-expert] → Tool: Read
35
- [golang-expert] → Reading: src/main.go
94
+ [golang-expert][sonnet] → Tool: Read
95
+ [golang-expert][sonnet] → Reading: src/main.go
36
96
 
37
- [supplier] → Tool: Glob
38
- [supplier] → Searching: agents/**/index.yaml
97
+ [supplier][haiku] → Tool: Glob
98
+ [supplier][haiku] → Searching: agents/**/index.yaml
39
99
 
40
- [creator] → Tool: Write
41
- [creator] → Writing: agents/sw-engineer/new-agent/AGENT.md
100
+ [creator][sonnet] → Tool: Write
101
+ [creator][sonnet] → Writing: agents/sw-engineer/new-agent/AGENT.md
42
102
  ```
43
103
 
44
104
  ## Extended Format (Verbose)
@@ -47,6 +107,7 @@ For detailed tracking:
47
107
 
48
108
  ```
49
109
  ┌─ Agent: golang-expert (sw-engineer)
110
+ ├─ Model: sonnet
50
111
  ├─ Skill: go-best-practices
51
112
  ├─ Tool: Read
52
113
  └─ Target: src/main.go
@@ -76,9 +137,9 @@ For detailed tracking:
76
137
  For inline operations:
77
138
 
78
139
  ```
79
- [supplier → Glob] agents/**/index.yaml
80
- [creator → Write] agents/sw-engineer/new-agent/AGENT.md
81
- [updater → WebFetch] https://github.com/...
140
+ [supplier][haiku] → Glob: agents/**/index.yaml
141
+ [creator][sonnet] → Write: agents/sw-engineer/new-agent/AGENT.md
142
+ [updater][sonnet] → WebFetch: https://github.com/...
82
143
  ```
83
144
 
84
145
  ## Integration with R007
@@ -87,11 +148,12 @@ R008 extends R007 for tool operations:
87
148
 
88
149
  ```
89
150
  ┌─ Agent: creator (manager)
151
+ ├─ Model: sonnet
90
152
  └─ Task: Creating new agent
91
153
 
92
- [creator → Write] agents/sw-engineer/new-agent/AGENT.md
93
- [creator → Write] agents/sw-engineer/new-agent/index.yaml
94
- [creator → Edit] agents/index.yaml
154
+ [creator][sonnet] → Write: agents/sw-engineer/new-agent/AGENT.md
155
+ [creator][sonnet] → Write: agents/sw-engineer/new-agent/index.yaml
156
+ [creator][sonnet] → Edit: agents/index.yaml
95
157
 
96
158
  [Done] Agent created successfully
97
159
  ```
@@ -28,6 +28,7 @@ Display real-time status information during agent operations for improved visibi
28
28
  | Component | Description | Example |
29
29
  |-----------|-------------|---------|
30
30
  | Agent | Active agent name | `golang-expert` |
31
+ | Model | Model used (for parallel) | `sonnet` |
31
32
  | Progress | Task progress (current/total) | `2/5` |
32
33
  | Parallel | Parallel instance count | `3` |
33
34
 
@@ -39,10 +40,16 @@ Display real-time status information during agent operations for improved visibi
39
40
  ─── [Agent] creator | [Progress] 1/3 ───
40
41
  ```
41
42
 
42
- ### With Parallel Execution
43
+ ### With Parallel Execution (Model Display REQUIRED)
43
44
 
44
45
  ```
45
46
  ─── [Agent] secretary | [Progress] 0/4 | [Parallel] 4 ───
47
+
48
+ Instances:
49
+ [1] readme-update:sonnet
50
+ [2] code-review:haiku
51
+ [3] architecture:opus
52
+ [4] validation:haiku
46
53
  ```
47
54
 
48
55
  ### Completion
@@ -235,3 +235,9 @@ agents:
235
235
  source:
236
236
  type: internal
237
237
 
238
+ tutor:
239
+ - name: go-tutor
240
+ path: ./tutor/go-tutor/
241
+ description: Go + DS/Algorithms tutor for learn-go curriculum
242
+ source:
243
+ type: internal