harness-alchemist 0.1.2 → 0.1.3
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
|
|
3
3
|
"name": "harness-alchemist",
|
|
4
4
|
"displayName": "Harness Alchemist",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.3",
|
|
6
6
|
"description": "Scaffold, validate, and publish portable coding-agent plugins across Claude Code, Codex, OpenCode, Antigravity, and DeepSeek Harness.",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Haochuan Zhang"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harness-alchemist",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Scaffold, validate, and publish portable coding-agent plugins across Claude Code, Codex, OpenCode, Antigravity, and DeepSeek Harness.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Haochuan Zhang",
|
package/package.json
CHANGED
|
@@ -45,13 +45,14 @@ The package root exports OpenCode. The `./deepseek` subpath exports Cordis. Keep
|
|
|
45
45
|
|
|
46
46
|
## GitHub Release Publishing
|
|
47
47
|
|
|
48
|
-
`.github/workflows/npm-publish.yml` publishes when a
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
`.github/workflows/npm-publish.yml` publishes when a `vX.Y.Z` tag is pushed
|
|
49
|
+
(or a GitHub release with a semver tag such as `vX.Y.Z-rc.1` is published);
|
|
50
|
+
the workflow applies that version to `package.json`, runs
|
|
51
51
|
`npm run sync`, verifies the package, and publishes it with npm provenance.
|
|
52
52
|
|
|
53
53
|
Configure the repository `NPM_TOKEN` secret with an npm publish token before
|
|
54
|
-
|
|
54
|
+
pushing the tag. The workflow never publishes from pull requests or branch
|
|
55
|
+
pushes.
|
|
55
56
|
|
|
56
57
|
## Public Catalog Metadata
|
|
57
58
|
|
|
@@ -3,6 +3,9 @@ name: Publish npm package
|
|
|
3
3
|
on:
|
|
4
4
|
release:
|
|
5
5
|
types: [published]
|
|
6
|
+
push:
|
|
7
|
+
tags:
|
|
8
|
+
- "v*"
|
|
6
9
|
|
|
7
10
|
permissions:
|
|
8
11
|
contents: read
|
|
@@ -22,7 +25,7 @@ jobs:
|
|
|
22
25
|
id: version
|
|
23
26
|
shell: bash
|
|
24
27
|
run: |
|
|
25
|
-
TAG="${{ github.event.release.tag_name }}"
|
|
28
|
+
TAG="${{ github.event.release.tag_name || github.ref_name }}"
|
|
26
29
|
VERSION="${TAG#v}"
|
|
27
30
|
if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[a-zA-Z0-9.]+)?$ ]]; then
|
|
28
31
|
echo "::error::Tag '$TAG' is not a valid semver version"
|