ccski 2.1.0 → 2.2.0
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 +4 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# ccski – Claude Code Skills Manager
|
|
2
2
|
|
|
3
|
-
ccski is a CLI + MCP server to discover, install, enable/disable, and serve Claude
|
|
3
|
+
ccski is a CLI + MCP server to discover, install, enable/disable, and serve Claude/Codex-compatible skills. This README covers install and usage. For architecture and UX philosophy, see `SPEC.md`.
|
|
4
|
+
|
|
5
|
+
Documentation site: https://jixoai-labs.github.io/ccski/
|
|
4
6
|
|
|
5
7
|
## Install
|
|
6
8
|
|
|
@@ -75,6 +77,7 @@ ccski disable --all
|
|
|
75
77
|
|
|
76
78
|
## More
|
|
77
79
|
|
|
80
|
+
- Programmatic API is available from the package export; see the docs site for API usage examples.
|
|
78
81
|
- Claude users: prefer `ccski mcp --exclude=claude` to avoid echoing built-in Claude skills.
|
|
79
82
|
- Codex users: prefer `ccski mcp --exclude=codex` when avoid echoing built-in Codex skills.
|
|
80
83
|
- All commands support `--json` for scripting.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccski",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Claude Code Skills Manager - CLI and MCP interface for managing skills across AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"tsx": "^4.19.2",
|
|
58
58
|
"typescript": "^5.7.2",
|
|
59
59
|
"vitest": "^2.1.8",
|
|
60
|
+
"vitepress": "^1.5.0",
|
|
60
61
|
"yargs": "^17.7.2",
|
|
61
62
|
"zod": "^3.24.1"
|
|
62
63
|
},
|
|
@@ -73,6 +74,9 @@
|
|
|
73
74
|
"test:coverage": "vitest run --coverage",
|
|
74
75
|
"ts": "tsc --noEmit",
|
|
75
76
|
"lint": "echo 'Linting not configured yet'",
|
|
76
|
-
"fmt": "prettier --write ."
|
|
77
|
+
"fmt": "prettier --write .",
|
|
78
|
+
"docs:dev": "vitepress dev docs",
|
|
79
|
+
"docs:build": "vitepress build docs",
|
|
80
|
+
"docs:preview": "vitepress preview docs"
|
|
77
81
|
}
|
|
78
82
|
}
|