Skills › Sales › Account News Brief
Account News Brief
Pull recent news, funding rounds, and social signals for an account before a call or renewal conversation.
Superpowers: handler_intel · handler_monitor · handler_generate
When to use: You have a customer or prospect meeting and want to walk in with fresh, relevant context.
Steps
Enrich the company
Superpower: handler_intel — live API reference →
POST /v2/superpowers/handler_intel
{
"task": "company_enrich",
"domain": "acme.com"
}
Returns headcount trend, funding stage, tech stack, and employee count.
Find recent news and press
Superpower: handler_monitor — live API reference →
POST /v2/superpowers/handler_monitor
{
"task": "news",
"query": "Acme Corp product launch funding partnership 2026"
}
From previous step: result.name from step 1 → inject into query
Check social signals and community sentiment
Superpower: handler_monitor — live API reference →
POST /v2/superpowers/handler_monitor
{
"task": "trending",
"query": "Acme Corp",
"days": 14
}
Synthesise into a call prep brief
Superpower: handler_generate — live API reference →
POST /v2/superpowers/handler_generate
{
"task": "chat",
"prompt": "You are a sales researcher. Produce a 1-page call prep brief for [Company]. Sections: (1) Company snapshot, (2) Recent moves with dates, (3) Community pulse — what their users are saying, (4) 2-3 talking points to open the conversation. Data: [step 1 + step 2 + step 3 results]"
}
From previous step: company data from step 1 + news from step 2 + trending from step 3 → inject into prompt
Outcome: One-page call prep brief with company snapshot, recent moves, community sentiment, and talking points.
Fetch this skill via API
GET /v2/skills/account-news-brief
Authorization: Bearer sk-hndlr-...