harness-alchemist 0.1.4 → 0.1.5

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.4",
5
+ "version": "0.1.5",
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.4",
3
+ "version": "0.1.5",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harness-alchemist",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Scaffold, validate, and publish portable coding-agent plugins across Claude Code, Codex, OpenCode, Antigravity, and DeepSeek Harness.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,9 +27,13 @@ The rich `interface` object is recommended for public presentation but is not re
27
27
 
28
28
  ```bash
29
29
  codex plugin marketplace add owner/repo
30
+ codex plugin add <plugin-name>@<marketplace-name>
31
+ codex plugin list
30
32
  ```
31
33
 
32
- Open `/plugins` to install from a configured marketplace, then start a new session. Codex npm marketplace sources download packages without running lifecycle scripts, so published packages must already contain built runtime files.
34
+ The `@marketplace` suffix is required for `codex plugin add`; a bare plugin
35
+ name is rejected. Headless install works without opening `/plugins`, then
36
+ start a new session. Codex npm marketplace sources download packages without running lifecycle scripts, so published packages must already contain built runtime files.
33
37
 
34
38
  Official references:
35
39
 
@@ -49,6 +49,12 @@ dsh plugin --profile demo add @scope/my-plugin
49
49
  dsh --profile demo --dump-config
50
50
  ```
51
51
 
52
+ `dsh plugin add` forwards to pnpm in the profile directory, so an unpublished checkout can be installed by absolute path and stays linked to the working tree:
53
+
54
+ ```bash
55
+ dsh plugin --profile demo add /absolute/path/to/my-plugin
56
+ ```
57
+
52
58
  Bundle membership changes require a profile restart. Profile patch edits may hot-reload.
53
59
 
54
60
  Shared Agent Skills are discovered from project `.agents/skills` and other configured filesystem roots. Package-relative skill assets are not automatically activated by a bundle; install repository skills separately when needed.
@@ -33,12 +33,16 @@ OpenCode accepts npm package names in `opencode.json`:
33
33
 
34
34
  OpenCode installs npm plugins with Bun at startup. For local development, register an absolute `file://` URL to compiled JavaScript or a direct TypeScript file with all of its dependencies available.
35
35
 
36
- Skills are separate from the npm plugin. Install them from the Git repository:
36
+ Skills are discovered from `~/.agents/skills/` (and project `.agents/skills/`), not from the OpenCode config directory, and symlinked skill directories are skipped. Install them from the Git repository or a checkout:
37
37
 
38
38
  ```bash
39
39
  npx skills add owner/repo --agent opencode
40
+ # or, from a local clone:
41
+ cp -R skills/<name> ~/.agents/skills/
40
42
  ```
41
43
 
44
+ Verify discovery with `opencode debug skill`.
45
+
42
46
  ## Extension Rules
43
47
 
44
48
  - Return `{}` when no hooks are registered.
@@ -19,7 +19,7 @@ cordis.patch.yml DeepSeek Harness bundle layer
19
19
  plugin.json Antigravity plugin manifest
20
20
  ```
21
21
 
22
- The initial runtime entrypoints are intentionally inert. Add only the hooks, tools, or services the plugin actually needs.
22
+ The runtime entrypoints are thin adapters that delegate to skill scripts; see `skills/{{NAME}}/references/tool-contract.md` before extending them.
23
23
 
24
24
  ## Skill Boundaries
25
25
 
@@ -54,13 +54,13 @@ npm pack --dry-run
54
54
 
55
55
  ## GitHub Release Publishing
56
56
 
57
- `.github/workflows/npm-publish.yml` publishes when a GitHub release is
58
- published. Tag the release as `vX.Y.Z` (or a semver prerelease such as
59
- `vX.Y.Z-rc.1`); the workflow applies that version, synchronizes manifests,
57
+ `.github/workflows/npm-publish.yml` publishes when a `vX.Y.Z` tag is pushed
58
+ (or a GitHub release with a semver tag such as `vX.Y.Z-rc.1` is published);
59
+ the workflow applies that version, synchronizes manifests,
60
60
  verifies the package, and publishes with npm provenance.
61
61
 
62
62
  Configure the repository `NPM_TOKEN` secret with an npm publish token before
63
- creating a release.
63
+ pushing the tag.
64
64
 
65
65
  ## Claude Code
66
66
 
@@ -80,9 +80,11 @@ claude plugin validate . --strict
80
80
 
81
81
  ```bash
82
82
  codex plugin marketplace add {{REPOSITORY_SOURCE}}
83
+ codex plugin add {{NAME}}@{{MARKETPLACE}}
84
+ codex plugin list
83
85
  ```
84
86
 
85
- Open `/plugins`, install **{{DISPLAY_NAME}}**, and start a new session.
87
+ The `@{{MARKETPLACE}}` suffix is required; a bare plugin name is rejected.
86
88
 
87
89
  ## OpenCode
88
90
 
@@ -95,12 +97,24 @@ After publishing `{{PACKAGE_NAME}}`, add it to `opencode.json`:
95
97
  }
96
98
  ```
97
99
 
98
- Install the shared skill separately:
100
+ For an unpublished checkout, point the entry at the built adapter instead:
101
+
102
+ ```json
103
+ {
104
+ "plugin": ["file:///absolute/path/to/{{NAME}}/dist/opencode.js"]
105
+ }
106
+ ```
107
+
108
+ Skills are discovered from `~/.agents/skills/`, not from the OpenCode config
109
+ directory, and symlinked directories are skipped. Copy each shared skill you
110
+ need:
99
111
 
100
112
  ```bash
101
- npx skills add {{REPOSITORY_SOURCE}} --agent opencode
113
+ cp -R skills/{{NAME}} ~/.agents/skills/
102
114
  ```
103
115
 
116
+ Verify with `opencode debug skill`.
117
+
104
118
  ## Google Antigravity
105
119
 
106
120
  Clone the repository and install its root as a plugin:
@@ -120,12 +134,18 @@ dsh plugin --profile demo add {{PACKAGE_NAME}}
120
134
  dsh --profile demo --dump-config
121
135
  ```
122
136
 
123
- The bundle loads `{{PACKAGE_NAME}}/deepseek`. Install the shared Agent Skill separately when the workflow needs it:
137
+ For an unpublished checkout, `dsh plugin add` forwards to pnpm, so a local
138
+ path works and stays linked to your working tree:
124
139
 
125
140
  ```bash
126
- npx skills add {{REPOSITORY_SOURCE}}
141
+ dsh plugin --profile demo add /absolute/path/to/{{NAME}}
127
142
  ```
128
143
 
144
+ The bundle loads `{{PACKAGE_NAME}}/deepseek` through `package.json`'s
145
+ `dsh.bundle.patch` entry. Verify composition with
146
+ `dsh --profile demo --dump-config`, which should list an insert for
147
+ `{{NAME}}`.
148
+
129
149
  ## License
130
150
 
131
151
  {{LICENSE}}