oh-my-customcode 0.110.0 → 0.111.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/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/.claude/skills/action-validator/SKILL.md +3 -0
- package/templates/.claude/skills/adaptive-harness/SKILL.md +3 -0
- package/templates/.claude/skills/agora/SKILL.md +3 -0
- package/templates/.claude/skills/deep-plan/SKILL.md +3 -0
- package/templates/.claude/skills/deep-verify/SKILL.md +1 -0
- package/templates/.claude/skills/dev-review/SKILL.md +3 -0
- package/templates/.claude/skills/harness-eval/SKILL.md +3 -0
- package/templates/.claude/skills/harness-synthesizer/SKILL.md +3 -0
- package/templates/.claude/skills/post-release-followup/SKILL.md +3 -0
- package/templates/.claude/skills/professor-triage/SKILL.md +3 -0
- package/templates/.claude/skills/research/SKILL.md +3 -0
- package/templates/.claude/skills/result-aggregation/SKILL.md +3 -0
- package/templates/.claude/skills/skill-extractor/SKILL.md +3 -0
- package/templates/manifest.json +1 -1
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -107,6 +107,9 @@ Hints are advisory — they inform model scheduling but do not enforce. Inspired
|
|
|
107
107
|
|
|
108
108
|
When a synthesized harness exists for an agent (`.claude/outputs/harnesses/{agent-name}-*.yaml`), action-validator can use it for enhanced validation:
|
|
109
109
|
|
|
110
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
111
|
+
|
|
112
|
+
|
|
110
113
|
| Mode | Source | Behavior |
|
|
111
114
|
|------|--------|----------|
|
|
112
115
|
| Advisory (default) | Prompt-based checks | Emit warnings only |
|
|
@@ -185,6 +185,9 @@ Check `active_agents` list against files actually present in `.claude/agents/`.
|
|
|
185
185
|
|
|
186
186
|
Append a record to `.claude/outputs/harness-adaptations/YYYY-MM-DD.md`:
|
|
187
187
|
|
|
188
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
189
|
+
|
|
190
|
+
|
|
188
191
|
```markdown
|
|
189
192
|
## Optimization Run — 2026-04-12T10:00:00Z
|
|
190
193
|
|
|
@@ -111,6 +111,9 @@ Determine verdict:
|
|
|
111
111
|
When ALL reviewers agree BUILD or BUILD WITH CHANGES:
|
|
112
112
|
1. Produce final consensus report
|
|
113
113
|
2. Write to `.claude/outputs/sessions/{date}/agora-{topic}-{time}.md`
|
|
114
|
+
|
|
115
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
116
|
+
|
|
114
117
|
3. Shut down team: `SendMessage(to: "*", message: {type: "shutdown_request"})`
|
|
115
118
|
|
|
116
119
|
## Reviewer Principles
|
|
@@ -347,6 +347,9 @@ Phase 1 research artifact is persisted by the `/research` skill.
|
|
|
347
347
|
Phase 3 verification report is persisted by the final synthesis agent:
|
|
348
348
|
```
|
|
349
349
|
.claude/outputs/sessions/{YYYY-MM-DD}/deep-plan-{HHmmss}.md
|
|
350
|
+
|
|
351
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
352
|
+
|
|
350
353
|
```
|
|
351
354
|
|
|
352
355
|
With metadata header:
|
|
@@ -85,6 +85,7 @@ Run these checks before declaring release READY. Any match is a release blocker.
|
|
|
85
85
|
| Guard | Detection Command | Severity | Remediation |
|
|
86
86
|
|-------|-------------------|----------|-------------|
|
|
87
87
|
| Skill Bash sensitive-path | `grep -rnE 'mkdir\s+-p[^` + "`" + `\n]*\.claude/(outputs\|agent-memory\|agent-memory-local)' .claude/skills/ templates/.claude/skills/ .claude/rules/ templates/.claude/rules/ 2>/dev/null` | **BLOCK** | Remove `mkdir` directive; rely on Write tool auto-dir-create. See R006 "Sensitive Path Handling" + `feedback_sensitive_path.md` |
|
|
88
|
+
| Skill artifact path missing Write directive | `find .claude/skills/ templates/.claude/skills/ -name SKILL.md | xargs grep -lE '.claude/outputs/' | while read f; do if ! grep -qE 'Write tool|Use the Write tool' "$f"; then echo "$f"; fi; done` | **WARN** | Add explicit Write-tool-only directive after artifact path mention. Pattern: `> **Tool**: Use the **Write tool**...` (see #1014 fix) |
|
|
88
89
|
|
|
89
90
|
> **Why**: CC sensitive-path check runs above `bypassPermissions` and Bash allow rules (#960/#961/#978). Skills instructing directory creation via Bash on artifact paths trigger permission prompts during unattended auto-dev execution. Use Write tool instead (auto-creates parents).
|
|
90
91
|
|
|
@@ -113,6 +113,9 @@ If only PASS/INFO: proceed automatically.
|
|
|
113
113
|
6. **Artifact persistence** (optional): Review agent saves findings to:
|
|
114
114
|
```
|
|
115
115
|
.claude/outputs/sessions/{YYYY-MM-DD}/dev-review-{HHmmss}.md
|
|
116
|
+
|
|
117
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
118
|
+
|
|
116
119
|
```
|
|
117
120
|
With metadata header:
|
|
118
121
|
```markdown
|
|
@@ -90,6 +90,9 @@ The evaluator-optimizer skill's `pre_negotiation` phase accepts harness-eval rub
|
|
|
90
90
|
|
|
91
91
|
Results saved to `.claude/outputs/sessions/{YYYY-MM-DD}/harness-eval-{HHmmss}.md` with per-task scores and aggregate grade.
|
|
92
92
|
|
|
93
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
94
|
+
|
|
95
|
+
|
|
93
96
|
## Attribution
|
|
94
97
|
|
|
95
98
|
Evaluation framework based on research by [revfactory/claude-code-harness](https://github.com/revfactory/claude-code-harness). Adapted for oh-my-customcode's evaluator-optimizer pipeline with permission.
|
|
@@ -93,6 +93,9 @@ harness:
|
|
|
93
93
|
|
|
94
94
|
1. **Read target agent frontmatter** — extract `tools`, `domain`, `limitations` fields
|
|
95
95
|
2. **Analyze recent tool call patterns** — check `.claude/outputs/` for prior session logs (if available)
|
|
96
|
+
|
|
97
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
98
|
+
|
|
96
99
|
3. **Synthesize validation harness** — generate YAML harness matching agent's declared capabilities
|
|
97
100
|
4. **Refine via evaluator-optimizer loop** — iterate harness against edge cases (3 rounds max)
|
|
98
101
|
5. **Save output** — write to `.claude/outputs/harnesses/{agent-name}-{mode}.yaml`
|
|
@@ -24,6 +24,9 @@ Gather unfinished work from multiple sources:
|
|
|
24
24
|
|
|
25
25
|
**Source B — Deep-verify findings**:
|
|
26
26
|
- Read the latest deep-verify output from `.claude/outputs/sessions/{today}/`
|
|
27
|
+
|
|
28
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
29
|
+
|
|
27
30
|
- Extract any MEDIUM or LOW severity findings that were flagged but not fixed
|
|
28
31
|
|
|
29
32
|
**Source C — Triage deferred items**:
|
|
@@ -229,6 +229,9 @@ _`/professor-triage` v2.2.0에 의해 현재 코드베이스 대비 분석됨
|
|
|
229
229
|
|
|
230
230
|
Path: `.claude/outputs/sessions/YYYY-MM-DD/professor-triage-HHmmss.md`
|
|
231
231
|
|
|
232
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
233
|
+
|
|
234
|
+
|
|
232
235
|
Timestamps use local machine time (consistent with other artifact skills).
|
|
233
236
|
|
|
234
237
|
Template:
|
|
@@ -204,6 +204,9 @@ Convergence expected by round 3. Hard stop at round 30.
|
|
|
204
204
|
2. **Artifact persistence**: The Phase 4 synthesis agent (opus) writes the report to:
|
|
205
205
|
```
|
|
206
206
|
.claude/outputs/sessions/{YYYY-MM-DD}/research-{HHmmss}.md
|
|
207
|
+
|
|
208
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
209
|
+
|
|
207
210
|
```
|
|
208
211
|
With metadata header:
|
|
209
212
|
```markdown
|
|
@@ -168,6 +168,9 @@ Summary: 5 agents checked, 1 warning
|
|
|
168
168
|
|
|
169
169
|
R006 Artifact Channel Protocol을 소비하는 표준 패턴. 병렬 에이전트가 각자 `.claude/outputs/sessions/{date}/{skill}-{HHmmss}.md`에 결과를 작성하면, result-aggregation이 경로 N개를 받아 단일 요약을 생성합니다.
|
|
170
170
|
|
|
171
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
172
|
+
|
|
173
|
+
|
|
171
174
|
### 입력 형식
|
|
172
175
|
|
|
173
176
|
```
|
|
@@ -176,6 +176,9 @@ feedback memory에 누적된 실패 패턴을 분석하여 영구 구조(스킬
|
|
|
176
176
|
|
|
177
177
|
`.claude/outputs/sessions/{date}/skill-extractor-failure-{HH}.md` 아티팩트 (R006 Artifact Channel Protocol)
|
|
178
178
|
|
|
179
|
+
> **Tool**: Use the **Write tool** to create artifact files — Write auto-creates parent directories. **Never use `Bash(mkdir -p .claude/outputs/...)`** — the path triggers CC sensitive-path guard and prompts for permission, breaking unattended pipeline execution.
|
|
180
|
+
|
|
181
|
+
|
|
179
182
|
### 참조
|
|
180
183
|
|
|
181
184
|
- R016 `MUST-continuous-improvement.md` Defect Response Matrix — Skill Promotion 열
|
package/templates/manifest.json
CHANGED