一键导入
bolta-review-digest
V2 - Generate a human-readable review summary (daily/weekly digest) of inbox activity, agent performance, and pending actions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
V2 - Generate a human-readable review summary (daily/weekly digest) of inbox activity, agent performance, and pending actions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Activate a paused job after preview and voice validation - the explicit trust moment where user says "yes, start posting"
Modify an existing agent's configuration including persona, model tier, enabled skills, and job settings
Create and onboard a new AI agent teammate from marketplace presets with conversational discovery and preview generation.
Store and retrieve information across job runs - how agents learn and improve over time
Handle @mention interactions where users ask agents for quick feedback on posts and drafts
Bolta Skills Registry - canonical index and orchestration layer for all Bolta skills, organized by plane
| name | bolta.review.digest |
| version | 2.0.0 |
| description | V2 - Generate a human-readable review summary (daily/weekly digest) of inbox activity, agent performance, and pending actions. |
| category | review |
| roles_allowed | ["Viewer","Creator","Editor","Admin"] |
| required_scopes | ["posts:read","workspace:read"] |
| agent_types | ["reviewer","analytics","custom"] |
| tools_required | ["bolta.get_workspace_policy","bolta.list_inbox_items","bolta.list_recent_posts","bolta.get_post_metrics"] |
| inputs_schema | {"type":"object","required":["workspace_id"],"properties":{"workspace_id":{"type":"string"},"agent_id":{"type":"string","description":"V2 - Agent generating digest"},"period":{"type":"string","enum":["daily","weekly","monthly"],"default":"weekly"},"client_tag":{"type":"string","description":"V2 - Filter by client (agency feature)"}}} |
| outputs_schema | {"type":"object","properties":{"summary_text":{"type":"string"},"stats":{"type":"object"},"top_performing_posts":{"type":"array","items":{"type":"object"}},"action_items":{"type":"array","items":{"type":"string"}}}} |
| organization | bolta.ai |
| author | Max Fritzhand |
Produce a concise, actionable summary of review activity for human consumption.
Fetch inbox items from period:
bolta.list_inbox_items({workspace_id, created_after: period_start, limit: 100})client_tag if providedCalculate stats:
Identify top performers:
bolta.list_recent_posts({workspace_id, published_after: period_start, limit: 50})bolta.get_post_metrics(post_id) for eachGenerate action items:
Format summary:
Weekly Review Digest (Feb 14-20, 2026)
📊 Stats:
- 45 posts created (by 3 agents)
- 32 approved (71% approval rate)
- 8 rejected (18%)
- 5 still pending review
🏆 Top Performers:
1. "How we 10x'd engagement" - 234 likes, 45 comments
2. "Founder story: Why we built this" - 189 likes, 32 shares
🤖 Agent Performance:
- HypeMan: 20 posts, 85% approval rate ⭐
- ContentBot: 15 posts, 60% approval rate ⚠️
- WeeklyPlanner: 10 posts, 100% approval rate 🎯
✅ Action Items:
- 5 posts pending review (oldest: 3 days)
- ContentBot needs persona review (approval rate dropped)
- Client Acme Corp: 8 posts ready to schedule
Return summary_text (markdown formatted), stats (object), top_performing_posts, action_items.