ancoder-skill-cli 0.13.8 → 0.13.10
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
CHANGED
|
@@ -84,24 +84,32 @@ Use `--no-adversarial` if you want the older OMC-only generation behavior.
|
|
|
84
84
|
|
|
85
85
|
## Publish to npm
|
|
86
86
|
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
Releases are published by GitHub Actions, not by running `npm publish` from a developer machine. The workflow in `.github/workflows/release.yml` runs when a `v*` tag is pushed; it builds the release binaries, creates the GitHub Release, prepares `bin/targets/` for the npm package, and publishes with the repository `NPM_TOKEN` secret.
|
|
88
|
+
|
|
89
|
+
1. Bump `package.json` and `package-lock.json` to the intended version.
|
|
90
|
+
2. Run local verification:
|
|
89
91
|
|
|
90
92
|
```bash
|
|
93
|
+
go test ./...
|
|
91
94
|
bash scripts/build-all.sh
|
|
95
|
+
node scripts/check-bin.js
|
|
96
|
+
npm pack --dry-run
|
|
92
97
|
```
|
|
93
98
|
|
|
94
|
-
3.
|
|
95
|
-
|
|
96
|
-
- `skill-cli-linux-x64`, `skill-cli-linux-arm64`
|
|
97
|
-
- `skill-cli-win32-x64.exe`
|
|
98
|
-
4. Publish the package:
|
|
99
|
+
3. Commit the source changes, version files, and regenerated binaries under `bin/targets/`.
|
|
100
|
+
4. Create and push the release tag:
|
|
99
101
|
|
|
100
102
|
```bash
|
|
101
|
-
|
|
102
|
-
|
|
103
|
+
git tag v0.13.10
|
|
104
|
+
git push origin v0.13.10
|
|
103
105
|
```
|
|
104
106
|
|
|
107
|
+
The CI release publishes binaries named:
|
|
108
|
+
|
|
109
|
+
- `skill-cli-darwin-arm64`, `skill-cli-darwin-x64`
|
|
110
|
+
- `skill-cli-linux-x64`, `skill-cli-linux-arm64`
|
|
111
|
+
- `skill-cli-win32-x64.exe`
|
|
112
|
+
|
|
105
113
|
Users who `npm install -g ancoder-skill-cli` get a fully bundled package. No extra binary download is required during install.
|
|
106
114
|
|
|
107
115
|
## Test-Driven Skill Development (100:10:1 Architecture)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ancoder-skill-cli",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.10",
|
|
4
4
|
"description": "CLI for managing everything-claude-code (ECC) components — agents, skills, commands, rules, hooks, MCP configs. Single binary, all assets embedded.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"skill-cli": "bin/skill-cli.js"
|