oh-my-customcode 0.168.0 → 0.169.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/pipeline/labels.md +7 -0
- package/templates/.claude/skills/pipeline/workflows/auto-dev.yaml +2 -1
- package/templates/manifest.json +1 -1
- package/templates/workflows/auto-dev.yaml +2 -1
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -41,6 +41,13 @@ An issue is eligible for `docs-only` compression mode if its labels include at l
|
|
|
41
41
|
If ALL scoped issues are compression-eligible AND scope size ≤ 3, the pipeline MAY use
|
|
42
42
|
`compression_mode=docs-only` (skip professor-triage / release-plan / deep-plan / deep-verify skill spawns).
|
|
43
43
|
|
|
44
|
+
An issue is eligible for `lite` (Tier 2) compression mode if its labels include at least one of:
|
|
45
|
+
`documentation`, `automated`, `claude-code-release`, `feedback`, `professor`, `enhancement`, `improvement`
|
|
46
|
+
|
|
47
|
+
If ALL scoped issues carry at least one lite-eligible label AND scope size ≤ 7 AND no issue carries
|
|
48
|
+
`breaking-change` or `decision-needed`, the pipeline MAY use `compression_mode=lite`
|
|
49
|
+
(integrated analysis replaces heavy skill spawns for triage/plan/deep-plan/deep-verify; implement and verify-build execute normally).
|
|
50
|
+
|
|
44
51
|
## Lifecycle Labels (set by `implement` step)
|
|
45
52
|
|
|
46
53
|
| Transition | Action |
|
|
@@ -137,7 +137,7 @@ steps:
|
|
|
137
137
|
Evaluate ONLY if docs-only NOT met. Conditions (ALL must hold):
|
|
138
138
|
1. scope size ≤ 7
|
|
139
139
|
2. ALL scoped issues are low-risk: for EVERY issue,
|
|
140
|
-
labels ∩ {documentation, automated, claude-code-release, feedback, professor, enhancement} ≠ ∅
|
|
140
|
+
labels ∩ {documentation, automated, claude-code-release, feedback, professor, enhancement, improvement} ≠ ∅
|
|
141
141
|
3. NO scoped issue carries a breaking-change or decision-needed label
|
|
142
142
|
4. No code logic change is expected — work is docs/rule/skill/config/script-centric
|
|
143
143
|
(verify against each issue body; if any issue implies application code logic change, FAIL the lite check)
|
|
@@ -201,6 +201,7 @@ steps:
|
|
|
201
201
|
- Issues whose prerequisites failed in-run MUST be skipped (log reason)
|
|
202
202
|
- No direct orchestrator writes (R010)
|
|
203
203
|
- All Agent tool calls MUST pass mode: "bypassPermissions" to prevent permission prompts during unattended execution
|
|
204
|
+
- Mid-run scope additions (a new issue added via user interrupt AFTER implement began) MUST re-enter the verify-build gate before release — do NOT let a late-added scope item ride to release on a prior verify-build pass. Critical for code changes; benign for docs-only (#1301).
|
|
204
205
|
|
|
205
206
|
|
|
206
207
|
## Sensitive Path Handling (CC v2.1.121+)
|
package/templates/manifest.json
CHANGED
|
@@ -137,7 +137,7 @@ steps:
|
|
|
137
137
|
Evaluate ONLY if docs-only NOT met. Conditions (ALL must hold):
|
|
138
138
|
1. scope size ≤ 7
|
|
139
139
|
2. ALL scoped issues are low-risk: for EVERY issue,
|
|
140
|
-
labels ∩ {documentation, automated, claude-code-release, feedback, professor, enhancement} ≠ ∅
|
|
140
|
+
labels ∩ {documentation, automated, claude-code-release, feedback, professor, enhancement, improvement} ≠ ∅
|
|
141
141
|
3. NO scoped issue carries a breaking-change or decision-needed label
|
|
142
142
|
4. No code logic change is expected — work is docs/rule/skill/config/script-centric
|
|
143
143
|
(verify against each issue body; if any issue implies application code logic change, FAIL the lite check)
|
|
@@ -201,6 +201,7 @@ steps:
|
|
|
201
201
|
- Issues whose prerequisites failed in-run MUST be skipped (log reason)
|
|
202
202
|
- No direct orchestrator writes (R010)
|
|
203
203
|
- All Agent tool calls MUST pass mode: "bypassPermissions" to prevent permission prompts during unattended execution
|
|
204
|
+
- Mid-run scope additions (a new issue added via user interrupt AFTER implement began) MUST re-enter the verify-build gate before release — do NOT let a late-added scope item ride to release on a prior verify-build pass. Critical for code changes; benign for docs-only (#1301).
|
|
204
205
|
|
|
205
206
|
|
|
206
207
|
## Sensitive Path Handling (CC v2.1.121+)
|