oh-my-customcode 0.65.0 → 0.65.1
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 +2 -2
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/manifest.json +1 -1
- package/templates/workflows/auto-dev.yaml +7 -2
package/README.md
CHANGED
|
@@ -30,8 +30,8 @@ npm install -g oh-my-customcode && cd your-project && omcustom init
|
|
|
30
30
|
| **Graph Accessibility** | WCAG keyboard navigation, aria-live announcements, skip link, focus-visible, reduced-motion support |
|
|
31
31
|
| **CI Lockfile-Sync Gate** | New CI job validates bun.lockb consistency before lint/test |
|
|
32
32
|
| **Token Optimization** | HTML comment technique reduces CLAUDE.md from 550→286 lines (48% reduction) |
|
|
33
|
-
| **Workflow Engine** | YAML-defined workflow pipelines with `auto-dev`
|
|
34
|
-
| **CC v2.1.83–v2.1.
|
|
33
|
+
| **Workflow Engine** | YAML-defined workflow pipelines with `auto-dev` 8-step release batch |
|
|
34
|
+
| **CC v2.1.83–v2.1.87 Compat** | Conditional hook `if` field, CwdChanged/FileChanged events, managed-settings.d |
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
package/templates/manifest.json
CHANGED
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
# /omcustom:workflow auto-dev — Full-auto release pipeline
|
|
2
|
-
#
|
|
2
|
+
# Pre-triages professor-labeled issues → triage verify-done → plan → implement → verify → PR → followup
|
|
3
3
|
|
|
4
4
|
name: auto-dev
|
|
5
|
-
description: "
|
|
5
|
+
description: "Full-auto release pipeline: pre-triage → triage → plan → implement → verify → PR → followup"
|
|
6
6
|
mode: auto
|
|
7
7
|
error: halt-and-report
|
|
8
8
|
|
|
9
9
|
steps:
|
|
10
|
+
- name: pre-triage
|
|
11
|
+
skill: professor-triage
|
|
12
|
+
description: Run professor-triage on professor-labeled issues that lack verify-done label
|
|
13
|
+
condition: "issues with label:professor but NOT label:verify-done exist"
|
|
14
|
+
|
|
10
15
|
- name: triage
|
|
11
16
|
skill: professor-triage
|
|
12
17
|
description: Cross-analyze verify-done issues with omc_issue_analyzer comments
|