@nookplot/cli 0.7.29 → 0.7.30

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.
@@ -223,18 +223,18 @@ export function extractCapabilities(skills) {
223
223
  * Generate a starter skills.yaml content string.
224
224
  */
225
225
  export function generateStarterSkillsYaml() {
226
- return `# skills.yaml — Declarative skill definitions for your Nookplot agent
227
- #
228
- # Each skill becomes a marketplace listing and updates your agent's profile.
229
- # Run \`nookplot skills sync\` to publish changes to the network.
230
-
231
- skills:
232
- - name: example-skill
233
- description: "Describe what this skill does"
234
- category: ai
235
- # price: "0.50" # USDC per task (optional — omit for free)
236
- # pricingModel: per-task # per-task | hourly | subscription | custom
237
- tags: [example]
226
+ return `# skills.yaml — Declarative skill definitions for your Nookplot agent
227
+ #
228
+ # Each skill becomes a marketplace listing and updates your agent's profile.
229
+ # Run \`nookplot skills sync\` to publish changes to the network.
230
+
231
+ skills:
232
+ - name: example-skill
233
+ description: "Describe what this skill does"
234
+ category: ai
235
+ # price: "0.50" # USDC per task (optional — omit for free)
236
+ # pricingModel: per-task # per-task | hourly | subscription | custom
237
+ tags: [example]
238
238
  `;
239
239
  }
240
240
  //# sourceMappingURL=skills.js.map
package/package.json CHANGED
@@ -1,56 +1,57 @@
1
- {
2
- "name": "@nookplot/cli",
3
- "version": "0.7.29",
4
- "description": "CLI toolkit for NookPlot agent developers — scaffold, register, sync, and monitor agents",
5
- "author": "nookplot",
6
- "type": "module",
7
- "main": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "files": [
10
- "dist",
11
- "README.md"
12
- ],
13
- "publishConfig": {
14
- "access": "public"
15
- },
16
- "bin": {
17
- "nookplot": "dist/index.js"
18
- },
19
- "scripts": {
20
- "build": "tsc && cp src/tool-manifest.json dist/tool-manifest.json && cp src/evalManifest.json dist/evalManifest.json",
21
- "clean": "rm -rf dist",
22
- "dev": "tsx src/index.ts",
23
- "test": "vitest run",
24
- "postinstall": "node dist/postinstall.js 2>/dev/null || true"
25
- },
26
- "dependencies": {
27
- "@nookplot/runtime": "^0.5.128",
28
- "chalk": "5.6.2",
29
- "commander": "12.1.0",
30
- "dotenv": "16.6.1",
31
- "ethers": "6.16.0",
32
- "glob": "11.1.0",
33
- "inquirer": "12.11.1",
34
- "js-yaml": "4.1.1",
35
- "ora": "8.2.0"
36
- },
37
- "peerDependencies": {
38
- "@xmtp/agent-sdk": ">=0.1.0"
39
- },
40
- "peerDependenciesMeta": {
41
- "@xmtp/agent-sdk": {
42
- "optional": true
43
- }
44
- },
45
- "devDependencies": {
46
- "@types/inquirer": "^9.0.7",
47
- "@types/js-yaml": "^4.0.9",
48
- "@types/node": "20.14.10",
49
- "typescript": "5.5.4",
50
- "vitest": "3.0.5"
51
- },
52
- "engines": {
53
- "node": ">=18.0.0"
54
- },
55
- "license": "MIT"
56
- }
1
+ {
2
+ "name": "@nookplot/cli",
3
+ "version": "0.7.30",
4
+ "description": "CLI toolkit for NookPlot agent developers — scaffold, register, sync, and monitor agents",
5
+ "author": "nookplot",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "bin": {
17
+ "nookplot": "dist/index.js"
18
+ },
19
+ "scripts": {
20
+ "build": "tsc && cp src/tool-manifest.json dist/tool-manifest.json && cp src/evalManifest.json dist/evalManifest.json",
21
+ "clean": "rm -rf dist",
22
+ "dev": "tsx src/index.ts",
23
+ "test": "vitest run",
24
+ "postinstall": "node dist/postinstall.js 2>/dev/null || true"
25
+ },
26
+ "dependencies": {
27
+ "@nookplot/mcp": "^0.4.122",
28
+ "@nookplot/runtime": "^0.5.136",
29
+ "chalk": "5.6.2",
30
+ "commander": "12.1.0",
31
+ "dotenv": "16.6.1",
32
+ "ethers": "6.16.0",
33
+ "glob": "11.1.0",
34
+ "inquirer": "12.11.1",
35
+ "js-yaml": "4.1.1",
36
+ "ora": "8.2.0"
37
+ },
38
+ "peerDependencies": {
39
+ "@xmtp/agent-sdk": ">=0.1.0"
40
+ },
41
+ "peerDependenciesMeta": {
42
+ "@xmtp/agent-sdk": {
43
+ "optional": true
44
+ }
45
+ },
46
+ "devDependencies": {
47
+ "@types/inquirer": "^9.0.7",
48
+ "@types/js-yaml": "^4.0.9",
49
+ "@types/node": "20.14.10",
50
+ "typescript": "5.5.4",
51
+ "vitest": "3.0.5"
52
+ },
53
+ "engines": {
54
+ "node": ">=18.0.0"
55
+ },
56
+ "license": "MIT"
57
+ }