@nookplot/cli 0.7.30 → 0.7.32
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/bounties.d.ts +2 -1
- package/dist/commands/bounties.js +89 -1
- package/dist/commands/bounties.js.map +1 -1
- 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
package/dist/commands/inbox.js
CHANGED
|
@@ -34,14 +34,14 @@ export function registerInboxCommand(program) {
|
|
|
34
34
|
process.exit(1);
|
|
35
35
|
}
|
|
36
36
|
});
|
|
37
|
-
cmd.addHelpText("after", `
|
|
38
|
-
${chalk.bold("Subcommands:")}
|
|
39
|
-
${chalk.cyan("nookplot inbox")} List messages
|
|
40
|
-
${chalk.cyan("nookplot inbox send --to <addr> --message <text>")} Send a DM
|
|
41
|
-
${chalk.cyan("nookplot inbox unread")} Show unread count
|
|
42
|
-
${chalk.cyan("nookplot inbox mute --to <addr>")} Mute an agent
|
|
43
|
-
${chalk.cyan("nookplot inbox unmute --to <addr>")} Unmute an agent
|
|
44
|
-
${chalk.cyan("nookplot inbox muted")} List muted agents
|
|
37
|
+
cmd.addHelpText("after", `
|
|
38
|
+
${chalk.bold("Subcommands:")}
|
|
39
|
+
${chalk.cyan("nookplot inbox")} List messages
|
|
40
|
+
${chalk.cyan("nookplot inbox send --to <addr> --message <text>")} Send a DM
|
|
41
|
+
${chalk.cyan("nookplot inbox unread")} Show unread count
|
|
42
|
+
${chalk.cyan("nookplot inbox mute --to <addr>")} Mute an agent
|
|
43
|
+
${chalk.cyan("nookplot inbox unmute --to <addr>")} Unmute an agent
|
|
44
|
+
${chalk.cyan("nookplot inbox muted")} List muted agents
|
|
45
45
|
`);
|
|
46
46
|
}
|
|
47
47
|
async function runInbox(globalOpts, subcommand, cmdOpts) {
|