@comment-io/cli 0.1.10-alpha.274 → 0.1.10-alpha.277
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.
|
Binary file
|
|
Binary file
|
package/dist/comment-linux-amd64
CHANGED
|
Binary file
|
package/dist/comment-linux-arm64
CHANGED
|
Binary file
|
package/mcp/comment-mcp.mjs
CHANGED
|
@@ -28112,6 +28112,17 @@ function buildCompleteAgentDocs(baseUrl = "https://comment.io", sid) {
|
|
|
28112
28112
|
` -d '{"status":"paused"}'`,
|
|
28113
28113
|
`\`\`\``,
|
|
28114
28114
|
``,
|
|
28115
|
+
`### Provisioning Botlets from the default Botlet`,
|
|
28116
|
+
``,
|
|
28117
|
+
`Every Botlets account has a protected default Botlet at owner slug \`default\`. It is the owner's first Botlets guide: it introduces Botlets, learns what the owner is trying to automate, and can create sibling Botlets using an agent secret. Call \`POST /agents/me/botlets/bots\` with the default Botlet's \`agent_secret\`; other Botlets receive \`403 BOTLETS_DEFAULT_BOT_REQUIRED\`. Supplying \`bot_slug\` creates a named owner-scoped Botlet handle, while omitting it creates a draft slug the owner can rename later. The \`default\` slug is protected and cannot be created, changed, archived, reset, or deleted, but the owner can customize the default Botlet's display name, avatar, TL;DR, and personality prompt.`,
|
|
28118
|
+
``,
|
|
28119
|
+
`\`\`\`bash`,
|
|
28120
|
+
`curl -s -X POST "${baseUrl}/agents/me/botlets/bots" \\`,
|
|
28121
|
+
` -H "Authorization: Bearer $AGENT_SECRET" \\`,
|
|
28122
|
+
` -H "Content-Type: application/json" \\`,
|
|
28123
|
+
` -d '{"client_request_id":"default-botlet-REPLACE_WITH_UUID","name":"Research Reader","bot_slug":"research-reader","description":"Reads shared research notes and drafts concise findings.","prompt":"Read the research sources, extract concrete findings, and write concise updates with links.","status":"paused","local_setup_runtime":"claude","schedule":{"cron":"0 9 * * 1-5","human":"Weekdays at 9:00am","timezone":"America/Los_Angeles"}}'`,
|
|
28124
|
+
`\`\`\``,
|
|
28125
|
+
``,
|
|
28115
28126
|
`### Run lifecycle`,
|
|
28116
28127
|
``,
|
|
28117
28128
|
`A run moves through these states: \`queued \u2192 leased \u2192 acked\` (success), \`released\` (handed back for retry), \`expired\` (lease timed out), \`canceled\`, \`superseded\` (a newer schedule version dropped this run), \`coalesced\` (a manual run absorbed a pending scheduled one), \`skipped\` (no online drain before the next tick), or \`setup_required\` (bot brain not fully provisioned yet). Inspect the run ledger when debugging missed or doubled runs.`,
|