@skillmaker/cli 0.0.1

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 ADDED
@@ -0,0 +1,20 @@
1
+ # Skillmaker Studio
2
+
3
+ **Design, evaluate, and ship agent skills — with receipts.**
4
+
5
+ Skillmaker Studio is a CLI + local studio for making agent skills
6
+ (Claude Code, Codex) whose quality is never asserted, only measured:
7
+ every skill travels with its evals, pass rates, and version-pinned
8
+ receipts.
9
+
10
+ This package name is held for the npm-native distribution of the
11
+ `skillmaker` CLI, shipping soon. Until then, install the standalone
12
+ build:
13
+
14
+ ```sh
15
+ curl -fsSL https://skillmaker.studio/install.sh | sh
16
+ ```
17
+
18
+ - Site: <https://skillmaker.studio>
19
+ - Docs: <https://docs.skillmaker.studio>
20
+ - Source: <https://github.com/sociotechnica-org/skillmaker-studio>
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+ console.log(`
3
+ Skillmaker Studio — design, evaluate, and ship agent skills, with receipts.
4
+
5
+ The npm-native CLI ships here soon. Until then, install the standalone build:
6
+
7
+ curl -fsSL https://skillmaker.studio/install.sh | sh
8
+
9
+ Docs: https://docs.skillmaker.studio
10
+ Site: https://skillmaker.studio
11
+ `);
12
+ process.exit(0);
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@skillmaker/cli",
3
+ "version": "0.0.1",
4
+ "description": "Skillmaker Studio — design, evaluate, and ship agent skills, with receipts. This package currently points at the standalone installer; the full npm-native CLI ships here soon.",
5
+ "bin": {
6
+ "skillmaker": "bin/skillmaker.js"
7
+ },
8
+ "files": [
9
+ "bin",
10
+ "README.md"
11
+ ],
12
+ "homepage": "https://skillmaker.studio",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/sociotechnica-org/skillmaker-studio.git"
16
+ },
17
+ "license": "MIT",
18
+ "keywords": [
19
+ "skills",
20
+ "agent-skills",
21
+ "claude-code",
22
+ "codex",
23
+ "evals",
24
+ "skillmaker"
25
+ ],
26
+ "engines": {
27
+ "node": ">=18"
28
+ }
29
+ }