원클릭으로
bolta-get-comments
Fetch comments on posts to monitor conversations and identify response opportunities or policy violations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fetch comments on posts to monitor conversations and identify response opportunities or policy violations
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.get_comments |
| version | 2.0.0 |
| description | Fetch comments on posts to monitor conversations and identify response opportunities or policy violations |
| category | engagement |
| roles_allowed | ["Viewer","Creator","Editor","Admin"] |
| agent_types | ["engagement","moderator","custom"] |
| safe_defaults | {} |
| tools_required | ["platform_api_integration"] |
| inputs_schema | {"type":"object","properties":{"post_id":{"type":"string","description":"Specific post UUID (optional)"},"account_id":{"type":"string","description":"All recent posts for account (optional)"},"since":{"type":"string","description":"ISO timestamp - fetch comments since this time"},"filter":{"type":"string","enum":["all","unanswered","flagged","spam_suspected"],"default":"all"}}} |
| outputs_schema | {"type":"object","properties":{"success":{"type":"boolean"},"count":{"type":"number"},"comments":{"type":"array","items":{"type":"object","properties":{"comment_id":{"type":"string"},"post_id":{"type":"string"},"author":{"type":"string"},"content":{"type":"string"},"created_at":{"type":"string"},"sentiment":{"type":"string"},"spam_score":{"type":"number"},"has_response":{"type":"boolean"}}}}}} |
| organization | bolta.ai |
| author | Bolta Team |
Fetch comments on specific posts or across recent posts to monitor conversations, identify response opportunities, and detect policy violations.
{
"success": true,
"count": 18,
"comments": [
{
"comment_id": "uuid",
"post_id": "uuid",
"author": "@username",
"content": "Great post! How does this compare to X?",
"created_at": "2026-02-20T10:30:00Z",
"sentiment": "positive",
"spam_score": 0.02,
"has_response": false
}
]
}
{
"account_id": "uuid",
"since": "2026-02-20T08:00:00Z",
"filter": "unanswered"
}
Result: Receive list of unanswered comments since 8am for response drafting