SkillsResearch & Intel › Monitoring Digest

Monitoring Digest

Aggregate social signals across multiple topics into a concise digest — useful for daily briefings, newsletters, or Slack updates.

Superpowers: handler_monitor · handler_generate

When to use: You need a regular digest of what's happening around a set of topics (brand, competitor, industry).

Steps

Gather signals for topic 1

Superpower: handler_monitor

POST /v2/superpowers/handler_monitor
{
  "task": "trending",
  "query": "Anthropic Claude",
  "days": 1
}

Repeat this step for each topic you track. Use days: 1 for daily digests.

Gather signals for topic 2

Superpower: handler_monitor

POST /v2/superpowers/handler_monitor
{
  "task": "trending",
  "query": "AI agents 2026",
  "days": 1
}

Gather recent news across topics

Superpower: handler_monitor

POST /v2/superpowers/handler_monitor
{
  "task": "news",
  "query": "Anthropic OR "AI agents""
}

Synthesise into a scannable digest

Superpower: handler_generate

POST /v2/superpowers/handler_generate
{
  "task": "chat",
  "prompt": "Create a concise daily digest. One section per topic, 2-3 bullet points per section highlighting the most interesting items. Include source and one-line summary per item. Keep under 300 words.

Data: [combine results from steps 1-3]"
}

From previous steps: top_results from steps 1, 2, and 3 → combine and inject into prompt.

Outcome: Concise digest grouped by topic, ready to paste into Slack, email, or a newsletter.

Fetch this skill via API

GET /v2/skills/monitoring-digest
Authorization: Bearer sk-hndlr-...