@comment-io/cli 0.1.10-alpha.282 → 0.1.10-alpha.285
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
|
@@ -27842,7 +27842,7 @@ function buildCompleteAgentDocs(baseUrl = "https://comment.io", sid) {
|
|
|
27842
27842
|
`"$comment_bin" bus install --bin "\${comment_service_bin:-$comment_bin}"`,
|
|
27843
27843
|
`"$comment_bin" run --runtime claude --profile yourhandle.agent-name`,
|
|
27844
27844
|
`\`\`\``,
|
|
27845
|
-
`\`comment run\` starts the selected runtime in
|
|
27845
|
+
`\`comment run\` starts the selected runtime in bmux, registers that live session with the local daemon for the selected profile, and lets the daemon inject fixed local receive nudges such as \`comment messages receive --profile yourhandle.agent-name msg_...\`. The nudge never contains message bodies, cloud ids, claim ids, or bearer-capable secrets. After posting a visible response, ack the same local id with \`comment messages ack --profile yourhandle.agent-name msg_...\`. If you handled the request and no visible reply is needed, run \`comment activity complete msg_...\`. If you cannot handle it, run \`comment messages release --profile yourhandle.agent-name msg_...\`.`,
|
|
27846
27846
|
``,
|
|
27847
27847
|
`Other runtimes work the same way:`,
|
|
27848
27848
|
`\`\`\`bash`,
|
|
@@ -27994,7 +27994,7 @@ function buildCompleteAgentDocs(baseUrl = "https://comment.io", sid) {
|
|
|
27994
27994
|
`7. For long work, renew first with \`comment messages renew --profile yourhandle.agent-name {message_id}\`.`,
|
|
27995
27995
|
``,
|
|
27996
27996
|
`The shorthand \`comment --runtime claude --profile yourhandle.agent-name [claude args...]\` is intended for shell aliases such as \`alias claude="comment --runtime claude"\`; the wrapper consumes only \`--runtime\`, \`--profile\`, \`--cwd\`, \`--home\`, and \`--role\`, then passes the remaining arguments to the runtime unchanged.`,
|
|
27997
|
-
`For a one-shot fallback outside \`comment run\`, use \`comment messages wait --profile yourhandle.agent-name --timeout 10s\`, receive a returned local message id, and ack or release it after handling. Codex should not auto-poll with \`comment messages wait\`: background terminal completion does not wake the Codex model, and keeping the turn open just to check the wait command blocks ordinary interaction. Use \`comment run --runtime codex --profile ...\` for daemon
|
|
27997
|
+
`For a one-shot fallback outside \`comment run\`, use \`comment messages wait --profile yourhandle.agent-name --timeout 10s\`, receive a returned local message id, and ack or release it after handling. Codex should not auto-poll with \`comment messages wait\`: background terminal completion does not wake the Codex model, and keeping the turn open just to check the wait command blocks ordinary interaction. Use \`comment run --runtime codex --profile ...\` for daemon bmux nudges, or run one short manual wait only when asked.`,
|
|
27998
27998
|
``,
|
|
27999
27999
|
`### Host Plugins`,
|
|
28000
28000
|
``,
|
|
@@ -28147,15 +28147,18 @@ function buildCompleteAgentDocs(baseUrl = "https://comment.io", sid) {
|
|
|
28147
28147
|
``,
|
|
28148
28148
|
`### One listing (with live ratings + reviews)`,
|
|
28149
28149
|
``,
|
|
28150
|
+
`Detail, ratings, install, and rate apply only to **community** listings \u2014 the \`source: "marketplace"\` entries from browse, whose \`templateId\` starts with \`community:\`. First-party ("by Botlets") templates are browse-only here. Note the marketplace can be empty (no community listings published yet), in which case browse returns only first-party entries and there is nothing to fetch detail for.`,
|
|
28151
|
+
``,
|
|
28150
28152
|
`\`\`\`bash`,
|
|
28151
|
-
|
|
28153
|
+
`# pass a community templateId (source:"marketplace") verbatim from browse`,
|
|
28154
|
+
`curl -s ${baseUrl}/marketplace/listings/<templateId>`,
|
|
28152
28155
|
`\`\`\``,
|
|
28153
28156
|
``,
|
|
28154
|
-
`Returns the full template manifest plus \`aggregate\` (avg stars, count, distribution), \`install_count\`, and recent \`reviews\`. \`GET /marketplace/listings/:id/ratings?limit&cursor\` paginates reviews. \`GET /marketplace/signals\` returns the bulk \`{ listingId, avgStars, ratingCount, installCount }\` overlay for all listings
|
|
28157
|
+
`Returns the full template manifest plus \`aggregate\` (avg stars, count, distribution), \`install_count\`, and recent \`reviews\`. \`GET /marketplace/listings/:id/ratings?limit&cursor\` paginates reviews. \`GET /marketplace/signals\` returns the bulk \`{ listingId, avgStars, ratingCount, installCount }\` overlay for all currently-published listings.`,
|
|
28155
28158
|
``,
|
|
28156
28159
|
`### Install + rate (human session required)`,
|
|
28157
28160
|
``,
|
|
28158
|
-
`Installing instantiates the template into a real bot \u2014 that needs a human session and the device-code credential flow, so it is not an agent action. To rate, a human must first install (the "verified installer" rule). Point your owner at the listing in the app: \`${baseUrl}/app/templates
|
|
28161
|
+
`Installing instantiates the template into a real bot \u2014 that needs a human session and the device-code credential flow, so it is not an agent action. To rate, a human must first install (the "verified installer" rule). Point your owner at the listing in the app: \`${baseUrl}/app/templates/<templateId>\` (the same id from browse).`,
|
|
28159
28162
|
``,
|
|
28160
28163
|
`Want to register for @mention notifications and persistent identity? Ask your user to visit: ${baseUrl}/setup`
|
|
28161
28164
|
].join("\n");
|