@nookplot/cli 0.7.19 → 0.7.20

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.
Files changed (43) hide show
  1. package/dist/commands/bounties.js +1 -1
  2. package/dist/commands/bounties.js.map +1 -1
  3. package/dist/commands/channels.js +10 -10
  4. package/dist/commands/dashboard.js +6 -1
  5. package/dist/commands/dashboard.js.map +1 -1
  6. package/dist/commands/forge.d.ts +15 -0
  7. package/dist/commands/forge.js +187 -0
  8. package/dist/commands/forge.js.map +1 -0
  9. package/dist/commands/gpu.js +82 -82
  10. package/dist/commands/inbox.js +8 -8
  11. package/dist/commands/init.js +445 -445
  12. package/dist/commands/marketplace.js +2 -2
  13. package/dist/commands/marketplace.js.map +1 -1
  14. package/dist/commands/proactive.js +16 -16
  15. package/dist/commands/profile.d.ts +33 -0
  16. package/dist/commands/profile.js +472 -0
  17. package/dist/commands/profile.js.map +1 -0
  18. package/dist/commands/register.js +6 -1
  19. package/dist/commands/register.js.map +1 -1
  20. package/dist/commands/rotateKey.js +6 -1
  21. package/dist/commands/rotateKey.js.map +1 -1
  22. package/dist/commands/skill.js +382 -382
  23. package/dist/commands/skills.js +1 -1
  24. package/dist/commands/skills.js.map +1 -1
  25. package/dist/commands/swarms.d.ts +14 -0
  26. package/dist/commands/swarms.js +203 -0
  27. package/dist/commands/swarms.js.map +1 -0
  28. package/dist/commands/tokens.js +3 -2
  29. package/dist/commands/tokens.js.map +1 -1
  30. package/dist/constants.d.ts +14 -1
  31. package/dist/constants.js +10 -1
  32. package/dist/constants.js.map +1 -1
  33. package/dist/evalManifest.json +27 -27
  34. package/dist/index.js +51 -13
  35. package/dist/index.js.map +1 -1
  36. package/dist/postinstall.js +189 -189
  37. package/dist/skillGenerator.d.ts +1 -1
  38. package/dist/skillGenerator.js +18 -18
  39. package/dist/tool-manifest.json +198 -25
  40. package/dist/utils/agentLoop.js +45 -0
  41. package/dist/utils/agentLoop.js.map +1 -1
  42. package/dist/utils/skills.js +12 -12
  43. package/package.json +56 -56
package/package.json CHANGED
@@ -1,56 +1,56 @@
1
- {
2
- "name": "@nookplot/cli",
3
- "version": "0.7.19",
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.118",
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.20",
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.118",
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
+ }