dizest-summarize
Summarize long-form content — articles, podcasts, research papers, PDFs, notes, and more — using the Dizest API. Turn what you read into structured, searchable knowledge.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/s-annam/dizest-summarizeDizest Summarize
Summarize long-form content and turn it into structured, searchable knowledge. Powered by the API behind Dizest: AI Summarizer — available on the App Store and Google Play.
Base URL: https://api.116ideas.com
Visit www.dizest.ai for more information about the product.
When to Use This Skill
Use this skill when the user asks to:
- Summarize research papers or academic content to extract key findings
- Summarize long podcasts, interviews, or video content from YouTube and other platforms
- Process articles, blog posts, or web content (by URL)
- Summarize PDFs, reports, market analysis, or business documents
- Summarize plain text such as notes, transcripts, or pasted content
- Summarize any of the above with a custom focus (e.g., "focus on methodology and key findings")
Critical Agent Behavior
The agent MUST act as a thin client. Specifically:
- Do NOT extract, parse, or classify URLs from the user's input.
- Do NOT attempt to determine whether the input is a URL, plain text, or text with an embedded URL.
- Do NOT fetch, scrape, or pre-process any content before calling the API.
- Do NOT handle paywalled content or attempt workarounds.
All content analysis, URL detection, extraction, paywall handling, and execution logic is performed server-side. The agent's only job is to forward the user's input to the API exactly as provided.
Authentication
All requests require the x-api-key header. The value should come from the DIZEST_API_KEY environment variable. Only paid users have valid API keys.
x-api-key: $DIZEST_API_KEY
If the DIZEST_API_KEY environment variable is not set and the user has not provided an API key, prompt them to create one at dizest.ai/api/keys (requires a paid Dizest account).
API Flow
There are two steps: create an execution, then retrieve the results.
Step 1: Create Execution
Endpoint:
POST https://api.116ideas.com/v1/summarize
Headers:
Content-Type: application/json
x-api-key: $DIZEST_API_KEY
Request Body (minimal):
{
"content": "<user input>"
}
Request Body (with custom instructions):
{
"content": "<user input>",
"custom_instructions": "<what to focus on>"
}
Request Body (with output language):
{
"content": "<user input>",
"output_language": "ja"
}
Pass the user's input directly as the content value. Do not modify, parse, or pre-process it.
Request Fields:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-s-annam-dizest-summarize": {
"enabled": true,
"auto_update": true
}
}
}