oh-my-customcodex 0.3.0 → 0.3.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/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/templates/index.yaml +5 -4
- package/templates/manifest.json +2 -2
- package/templates/workflows/auto-dev.yaml +23 -2
package/dist/cli/index.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
package/templates/index.yaml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Pipeline Registry
|
|
2
2
|
|
|
3
|
-
description: Registry of available
|
|
3
|
+
description: Registry of available workflow templates for the /pipeline skill
|
|
4
4
|
|
|
5
5
|
pipelines:
|
|
6
6
|
- name: code-review
|
|
@@ -13,6 +13,7 @@ templates:
|
|
|
13
13
|
description: Base template for creating new pipelines
|
|
14
14
|
|
|
15
15
|
usage:
|
|
16
|
-
run: "pipeline
|
|
17
|
-
list: "pipeline
|
|
18
|
-
|
|
16
|
+
run: "/pipeline <name>"
|
|
17
|
+
list: "/pipeline"
|
|
18
|
+
resume: "/pipeline resume"
|
|
19
|
+
create: "Create workflows/<name>.yaml from templates/pipeline-template.yaml"
|
package/templates/manifest.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# /pipeline auto-dev — Full-auto release pipeline
|
|
2
|
-
# Pre-triages open issues → triage verify-done → plan → implement → verify → PR → followup
|
|
2
|
+
# Pre-triages open issues → triage verify-done → plan → implement → verify → PR/release → publish → followup
|
|
3
3
|
|
|
4
4
|
name: auto-dev
|
|
5
|
-
description: "Full-auto release pipeline: pre-triage → triage → plan → implement → verify → PR → followup"
|
|
5
|
+
description: "Full-auto release pipeline: pre-triage → triage → plan → implement → verify → PR → publish → followup"
|
|
6
6
|
mode: auto
|
|
7
7
|
error: halt-and-report
|
|
8
8
|
|
|
@@ -41,6 +41,27 @@ steps:
|
|
|
41
41
|
prompt: "Create release branch and pull request"
|
|
42
42
|
description: Create release branch and pull request
|
|
43
43
|
|
|
44
|
+
- name: publish
|
|
45
|
+
prompt: |
|
|
46
|
+
Publish the validated release artifact after the release PR/branch stage.
|
|
47
|
+
|
|
48
|
+
Project-specific behavior:
|
|
49
|
+
- npm package:
|
|
50
|
+
1. Confirm package name and current version from package.json
|
|
51
|
+
2. Check registry state (`npm view <pkg> version`)
|
|
52
|
+
3. If version is unchanged but release-worthy, bump semver intentionally
|
|
53
|
+
4. Run the publish path (`npm publish` or the repo's release workflow trigger)
|
|
54
|
+
5. Verify registry publication (`npm view <pkg> version`)
|
|
55
|
+
- GitHub-release artifact project:
|
|
56
|
+
1. Create/push tag if required
|
|
57
|
+
2. Trigger or create the release artifact
|
|
58
|
+
3. Verify the release exists and assets are available
|
|
59
|
+
|
|
60
|
+
Halt and report on auth, versioning, or publish verification failures.
|
|
61
|
+
description: Publish the release artifact and verify external availability
|
|
62
|
+
depends_on: release
|
|
63
|
+
|
|
44
64
|
- name: followup
|
|
45
65
|
skill: post-release-followup
|
|
46
66
|
description: Recommend follow-up actions — user chooses to execute now or register as issues
|
|
67
|
+
depends_on: publish
|