SkillsOperations › Document Summariser

Document Summariser

Fetch a document from Notion or Google Docs, summarise it, and optionally extract action items.

Superpowers: handler_docs · handler_generate

Requires connection: Notion

When to use: You need a quick summary of a long document — spec, report, brief, or policy — without reading it in full.

Steps

Fetch the document from Notion

Superpower: handler_docslive API reference →

POST /v2/superpowers/handler_docs
{
  "action": "NOTION_RETRIEVE_PAGE",
  "page_id": "<notion-page-id>"
}

Replace with the actual Notion page ID. For Google Docs, use GOOGLEDOCS_GET_DOCUMENT instead.

Summarise and extract key points

Superpower: handler_generatelive API reference →

POST /v2/superpowers/handler_generate
{
  "task": "chat",
  "prompt": "Summarise this document. Provide: (1) 3-sentence executive summary, (2) Key points as bullet list (max 7), (3) Action items or decisions required (if any), (4) Who needs to read this (suggested audience). Document: [content from step 1]"
}

From previous step: result.content from step 1 → inject as document

Outcome: Executive summary, key points, action items, and suggested readership — in under 2 minutes.

Fetch this skill via API

GET /v2/skills/doc-summariser
Authorization: Bearer sk-hndlr-...