ancoder-skill-cli 0.2.0 → 0.2.4
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 +8 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
CLI for managing and testing [Anthropic Agent Skills](https://agentskills.io) (e.g. [anthropics/skills](https://github.com/anthropics/skills)).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Install (npm)
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
8
|
# Global
|
|
9
|
-
npm install -g skill-cli
|
|
9
|
+
npm install -g ancoder-skill-cli
|
|
10
10
|
|
|
11
11
|
# Or run without installing
|
|
12
|
-
npx skill-cli --help
|
|
13
|
-
```
|
|
12
|
+
npx ancoder-skill-cli --help
|
|
13
|
+
```
|
|
14
14
|
|
|
15
15
|
After install, the binary is either downloaded from GitHub Releases (if you set `repository` in `package.json` and publish releases) or you can build from source once and the wrapper will use it.
|
|
16
16
|
|
|
@@ -34,7 +34,7 @@ go build -o bin/skill-cli .
|
|
|
34
34
|
|
|
35
35
|
## Publish to npm
|
|
36
36
|
|
|
37
|
-
1. Set `repository.url` in `package.json` to your GitHub repo (e.g. `https://github.com/your-org/skill-cli.git`).
|
|
37
|
+
1. Set `repository.url` in `package.json` to your GitHub repo (e.g. `git+https://github.com/your-org/skill-cli.git`).
|
|
38
38
|
2. For install-from-GitHub flow: build binaries per platform and attach to a GitHub Release with names:
|
|
39
39
|
- `skill-cli-darwin-arm64`, `skill-cli-darwin-x64`
|
|
40
40
|
- `skill-cli-linux-x64`, `skill-cli-linux-arm64`
|
|
@@ -42,11 +42,11 @@ go build -o bin/skill-cli .
|
|
|
42
42
|
3. Publish the package:
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
npm login
|
|
46
|
-
npm publish
|
|
45
|
+
npm login --registry=https://registry.npmjs.org/
|
|
46
|
+
npm publish --access public --registry=https://registry.npmjs.org/ --userconfig ~/.npmrc
|
|
47
47
|
```
|
|
48
48
|
|
|
49
|
-
Users who `npm install -g skill-cli` will get the wrapper; `postinstall` will try to download the binary for their platform from the GitHub release. If no release exists, they can still build from source and put the binary in `bin/skill-cli` (or `bin/skill-cli.exe` on Windows).
|
|
49
|
+
Users who `npm install -g ancoder-skill-cli` will get the wrapper; `postinstall` will try to download the binary for their platform from the GitHub release. If no release exists, they can still build from source and put the binary in `bin/skill-cli` (or `bin/skill-cli.exe` on Windows).
|
|
50
50
|
|
|
51
51
|
## License
|
|
52
52
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ancoder-skill-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
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"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/AncoderAI/Ancoder_SkillsCreator.git"
|
|
15
|
+
"url": "git+https://github.com/AncoderAI/Ancoder_SkillsCreator.git"
|
|
16
16
|
},
|
|
17
17
|
"homepage": "https://github.com/AncoderAI/Ancoder_SkillsCreator#readme",
|
|
18
18
|
"bugs": {
|