oh-my-customcode 0.126.1 → 0.127.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 CHANGED
@@ -13,7 +13,7 @@
13
13
 
14
14
  **[한국어 문서 (Korean)](./README_ko.md)**
15
15
 
16
- 49 agents. 116 skills. 22 rules. One command.
16
+ 49 agents. 117 skills. 22 rules. One command.
17
17
 
18
18
  ```bash
19
19
  npm install -g oh-my-customcode && cd your-project && omcustom init
@@ -132,7 +132,7 @@ Each agent declares its tools, model, memory scope, and limitations in YAML fron
132
132
 
133
133
  ---
134
134
 
135
- ### Skills (116)
135
+ ### Skills (117)
136
136
 
137
137
  | Category | Count | Includes |
138
138
  |----------|-------|----------|
@@ -272,7 +272,7 @@ your-project/
272
272
  ├── CLAUDE.md # Entry point
273
273
  ├── .claude/
274
274
  │ ├── agents/ # 49 agent definitions
275
- │ ├── skills/ # 116 skill modules
275
+ │ ├── skills/ # 117 skill modules
276
276
  │ ├── rules/ # 22 governance rules (R000-R021)
277
277
  │ ├── hooks/ # 15 lifecycle hook scripts
278
278
  │ ├── schemas/ # Tool input validation schemas
package/dist/cli/index.js CHANGED
@@ -2334,7 +2334,7 @@ var init_package = __esm(() => {
2334
2334
  workspaces: [
2335
2335
  "packages/*"
2336
2336
  ],
2337
- version: "0.126.1",
2337
+ version: "0.127.0",
2338
2338
  description: "Batteries-included agent harness for Claude Code",
2339
2339
  type: "module",
2340
2340
  bin: {
package/dist/index.js CHANGED
@@ -2014,7 +2014,7 @@ var package_default = {
2014
2014
  workspaces: [
2015
2015
  "packages/*"
2016
2016
  ],
2017
- version: "0.126.1",
2017
+ version: "0.127.0",
2018
2018
  description: "Batteries-included agent harness for Claude Code",
2019
2019
  type: "module",
2020
2020
  bin: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "0.126.1",
6
+ "version": "0.127.0",
7
7
  "description": "Batteries-included agent harness for Claude Code",
8
8
  "type": "module",
9
9
  "bin": {
@@ -0,0 +1,81 @@
1
+ ---
2
+ name: goal
3
+ description: Disciplined goal-to-execution workflow for any user task. Parses objective, asks only for materially missing requirements via ambiguity-gate, inspects repo via idea, plans via sdd-dev or deep-plan, executes safely under project conventions, verifies completion per R020, and reports changed files with evidence. Use when user invokes /goal <task>.
4
+ scope: core
5
+ ---
6
+
7
+ # /goal — Disciplined Goal-to-Execution Workflow
8
+
9
+ Apply project discipline (planning, verification, cleanup, review) to any user-provided task. Acts as a thin orchestrator that routes to existing oh-my-customcode skills rather than duplicating logic.
10
+
11
+ ## Usage
12
+
13
+ ```
14
+ /goal <task description>
15
+ ```
16
+
17
+ Example: `/goal Add a /weekly-summary command that aggregates last 7 days of git activity`
18
+
19
+ ## Workflow
20
+
21
+ 1. **Parse objective**: Treat `<task>` as the concrete goal. Do NOT expand scope beyond what was asked.
22
+ 2. **Gap detection**: Invoke `ambiguity-gate` skill. Ask only for materially missing or risky requirements — no over-clarification on details that can be inferred.
23
+ 3. **Repo inspection**: Invoke `idea` skill (NL-intent codebase analysis) to identify relevant files, dependencies, and existing assets.
24
+ 4. **Plan generation** (scope-dependent):
25
+ - Trivial scope (single file, <30 LOC, no API design): proceed with brief inline plan.
26
+ - Non-trivial scope: invoke `sdd-dev` or `deep-plan` for research-validated planning.
27
+ 5. **Safe execution**: Follow R001 (safety), R009 (parallel), R010 (delegation). Delegate ALL file modifications to specialist agents.
28
+ 6. **Completion verification**: Apply R020 — verify ACTUAL outcome before declaring `[Done]`. Run task-type-specific checks (lint, build, test).
29
+ 7. **Report**: Output changed files, verification evidence, and remaining risks.
30
+
31
+ ## Output Format
32
+
33
+ ```
34
+ [Goal] {original task verbatim}
35
+ [Plan] {brief plan or reference to deep-plan/sdd-dev output}
36
+ [Changes] {file list with paths}
37
+ [Verified] {evidence — exit codes, test counts, build output}
38
+ [Risks] {remaining concerns or "none"}
39
+ ```
40
+
41
+ ## When to Use
42
+
43
+ - Generic multi-step task without obvious specialist routing
44
+ - User wants a single, memorable entry point for "do this task with full discipline"
45
+ - Work that benefits from planning + verification + structured reporting
46
+
47
+ ## When NOT to Use
48
+
49
+ | Scenario | Use Instead |
50
+ |----------|-------------|
51
+ | Pure research/analysis | `research`, `idea`, `memory-recall` |
52
+ | Specialist domain task | Routing skills (`dev-lead-routing`, `de-lead-routing`, `qa-lead-routing`) |
53
+ | Trivial single-file edit | Delegate directly to specialist agent |
54
+ | Bug debugging | `superpowers:systematic-debugging` |
55
+
56
+ ## Integration with Existing Skills
57
+
58
+ | Stage | Skill | Role |
59
+ |-------|-------|------|
60
+ | Gap detection | `ambiguity-gate` | Score request clarity, ask only critical gaps |
61
+ | Repo inspection | `idea` | NL-intent codebase analysis |
62
+ | Planning (research-validated) | `deep-plan` | research → plan → verify cycle |
63
+ | Planning (SDD discipline) | `sdd-dev` | Stage gates with planning-first workflow |
64
+ | Verification | `superpowers:verification-before-completion` | Evidence before assertions |
65
+ | Reporting | `result-aggregation` | Concise output composition |
66
+
67
+ ## Design Notes
68
+
69
+ This skill is intentionally a **thin wrapper / orchestrator**. It does NOT duplicate planning, gap-detection, or verification logic. Its value:
70
+
71
+ - Single memorable command for the disciplined workflow
72
+ - Stable entry point that routes to whichever underlying skills are best at the moment
73
+ - Documented contract that callers can rely on regardless of internal skill evolution
74
+
75
+ If a future skill replaces `idea` or `sdd-dev`, only the integration table updates — `/goal` remains stable.
76
+
77
+ ## Cross-References
78
+
79
+ - Issue: #1109 — Port /goal workflow to Claude Code skill surface
80
+ - Rules: R001 (safety), R003 (response style), R010 (delegation), R020 (completion verification)
81
+ - Original Codex /goal workflow this ports from: discipline-first goal execution
@@ -116,7 +116,7 @@ project/
116
116
  +-- CLAUDE.md # 진입점
117
117
  +-- .claude/
118
118
  | +-- agents/ # 서브에이전트 정의 (49 파일)
119
- | +-- skills/ # 스킬 (116 디렉토리)
119
+ | +-- skills/ # 스킬 (117 디렉토리)
120
120
  | +-- rules/ # 전역 규칙 (R000-R022)
121
121
  | +-- hooks/ # 훅 스크립트 (보안, 검증, HUD)
122
122
  | +-- contexts/ # 컨텍스트 파일 (ecomode)
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.126.1",
2
+ "version": "0.127.0",
3
3
  "lastUpdated": "2026-04-24T07:30:00.000Z",
4
4
  "omcustomMinClaudeCode": "2.1.121",
5
5
  "omcustomMinClaudeCodeReason": "Sensitive-path direct Write/Edit on .claude/** under bypassPermissions (R010 deprecation, #1101)",
@@ -20,7 +20,7 @@
20
20
  "name": "skills",
21
21
  "path": ".claude/skills",
22
22
  "description": "Reusable skill modules (includes slash commands)",
23
- "files": 116
23
+ "files": 117
24
24
  },
25
25
  {
26
26
  "name": "guides",