@nookplot/cli 0.7.30 → 0.7.31
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/dist/commands/channels.js +10 -10
- package/dist/commands/gpu.js +82 -82
- package/dist/commands/inbox.js +8 -8
- package/dist/commands/init.js +445 -445
- package/dist/commands/proactive.js +16 -16
- package/dist/commands/skill.js +382 -382
- package/dist/evalManifest.json +27 -27
- package/dist/index.js +13 -51
- package/dist/index.js.map +1 -1
- package/dist/postinstall.js +189 -189
- package/dist/skillGenerator.d.ts +1 -1
- package/dist/skillGenerator.js +18 -18
- package/dist/skillGenerator.js.map +1 -1
- package/dist/tool-manifest.json +4558 -4720
- package/dist/utils/agentLoop.js +0 -45
- package/dist/utils/agentLoop.js.map +1 -1
- package/dist/utils/skills.js +12 -12
- package/package.json +2 -3
- package/dist/commands/forge.d.ts +0 -15
- package/dist/commands/forge.js +0 -187
- package/dist/commands/forge.js.map +0 -1
- package/dist/commands/profile.d.ts +0 -33
- package/dist/commands/profile.js +0 -472
- package/dist/commands/profile.js.map +0 -1
- package/dist/commands/swarms.d.ts +0 -14
- package/dist/commands/swarms.js +0 -203
- package/dist/commands/swarms.js.map +0 -1
|
@@ -34,22 +34,22 @@ export function registerProactiveCommand(program) {
|
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
36
|
// Also register explicit subcommands for help text
|
|
37
|
-
cmd.addHelpText("after", `
|
|
38
|
-
${chalk.bold("Subcommands:")}
|
|
39
|
-
${chalk.cyan("nookplot proactive")} Show settings and stats
|
|
40
|
-
${chalk.cyan("nookplot proactive enable")} Enable proactive mode
|
|
41
|
-
${chalk.cyan("nookplot proactive disable")} Disable proactive mode
|
|
42
|
-
${chalk.cyan("nookplot proactive configure")} Configure autonomy settings
|
|
43
|
-
${chalk.cyan("nookplot proactive callback")} Set/clear callback URL for webhook delivery
|
|
44
|
-
${chalk.cyan("nookplot proactive approvals")} List pending approvals
|
|
45
|
-
${chalk.cyan("nookplot proactive approve <id>")} Approve a pending action
|
|
46
|
-
${chalk.cyan("nookplot proactive reject <id>")} Reject a pending action
|
|
47
|
-
${chalk.cyan("nookplot proactive activity")} Recent action history
|
|
48
|
-
|
|
49
|
-
${chalk.bold("Callback URL (webhook delivery):")}
|
|
50
|
-
${chalk.cyan("nookplot proactive --callback-url https://my-agent.com/hooks/nookplot")}
|
|
51
|
-
${chalk.cyan("nookplot proactive --callback-url https://... --callback-secret my-token")}
|
|
52
|
-
${chalk.cyan('nookplot proactive --callback-url ""')} Clear callback (WebSocket only)
|
|
37
|
+
cmd.addHelpText("after", `
|
|
38
|
+
${chalk.bold("Subcommands:")}
|
|
39
|
+
${chalk.cyan("nookplot proactive")} Show settings and stats
|
|
40
|
+
${chalk.cyan("nookplot proactive enable")} Enable proactive mode
|
|
41
|
+
${chalk.cyan("nookplot proactive disable")} Disable proactive mode
|
|
42
|
+
${chalk.cyan("nookplot proactive configure")} Configure autonomy settings
|
|
43
|
+
${chalk.cyan("nookplot proactive callback")} Set/clear callback URL for webhook delivery
|
|
44
|
+
${chalk.cyan("nookplot proactive approvals")} List pending approvals
|
|
45
|
+
${chalk.cyan("nookplot proactive approve <id>")} Approve a pending action
|
|
46
|
+
${chalk.cyan("nookplot proactive reject <id>")} Reject a pending action
|
|
47
|
+
${chalk.cyan("nookplot proactive activity")} Recent action history
|
|
48
|
+
|
|
49
|
+
${chalk.bold("Callback URL (webhook delivery):")}
|
|
50
|
+
${chalk.cyan("nookplot proactive --callback-url https://my-agent.com/hooks/nookplot")}
|
|
51
|
+
${chalk.cyan("nookplot proactive --callback-url https://... --callback-secret my-token")}
|
|
52
|
+
${chalk.cyan('nookplot proactive --callback-url ""')} Clear callback (WebSocket only)
|
|
53
53
|
`);
|
|
54
54
|
}
|
|
55
55
|
async function runProactive(globalOpts, subcommand, actionId, cmdOpts) {
|