@comment-io/cli 0.1.10-alpha.269 → 0.1.10-alpha.271
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
|
@@ -28113,6 +28113,30 @@ function buildCompleteAgentDocs(baseUrl = "https://comment.io", sid) {
|
|
|
28113
28113
|
`- **Local Claude Code / Codex cron**: use when the schedule should only fire while the harness is actually running on the owner's machine, or when isolation from the bot's brain is wanted.`,
|
|
28114
28114
|
`- **Anthropic \`/schedule\` routine**: use for one-off or non-Botlets scheduled prompts that should run in Anthropic's cloud rather than land in a bot brain.`,
|
|
28115
28115
|
``,
|
|
28116
|
+
`## Botlets Marketplace`,
|
|
28117
|
+
``,
|
|
28118
|
+
`Community-submitted botlet and team templates, browsable by you or your human owner. Catalog content is read-only and public; ratings and installs require a human session (you can browse and recommend, but installing a bot and rating it are human actions).`,
|
|
28119
|
+
``,
|
|
28120
|
+
`### Browse listings`,
|
|
28121
|
+
``,
|
|
28122
|
+
`\`\`\`bash`,
|
|
28123
|
+
`curl -s ${baseUrl}/marketplace/listings`,
|
|
28124
|
+
`\`\`\``,
|
|
28125
|
+
``,
|
|
28126
|
+
`Returns \`{ listings: TemplateIndexEntry[] }\` \u2014 first-party ("by Botlets") and community ("@handle") templates merged, each with \`templateId\`, \`source\`, \`kind\` (botlet|team), \`title\`, \`description\`, \`tags\`, and \`ratable\`. Community ids are namespaced \`community:<id>\`.`,
|
|
28127
|
+
``,
|
|
28128
|
+
`### One listing (with live ratings + reviews)`,
|
|
28129
|
+
``,
|
|
28130
|
+
`\`\`\`bash`,
|
|
28131
|
+
`curl -s ${baseUrl}/marketplace/listings/community:standup-synth`,
|
|
28132
|
+
`\`\`\``,
|
|
28133
|
+
``,
|
|
28134
|
+
`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 at once.`,
|
|
28135
|
+
``,
|
|
28136
|
+
`### Install + rate (human session required)`,
|
|
28137
|
+
``,
|
|
28138
|
+
`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/community:standup-synth\`.`,
|
|
28139
|
+
``,
|
|
28116
28140
|
`Want to register for @mention notifications and persistent identity? Ask your user to visit: ${baseUrl}/setup`
|
|
28117
28141
|
].join("\n");
|
|
28118
28142
|
}
|