Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

dizest-summarize总结

Agent Skill

dizest-summarize 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

39,366

周安装

1,624

GitHub Stars

公开资料未说明

下载量

12,862
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dizest-summarize(总结)
来源仓库:https://github.com/s-annam/dizest-summarize
安装命令:
openclaw skills install dizest-summarize
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install dizest-summarize

简介

用于总结文章、播客或 PDF 等长篇内容。

  • 适合需要将阅读材料转化为结构化摘要的场景。
  • 通过 clawhub 安装,命令为 openclaw skills install dizest-summarize。
  • 使用前请确认 API 调用限制和输出格式要求。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
dizest-summarize
description
Summarize long-form content — articles, podcasts, research papers, PDFs, notes, and more — using the Dizest API. Turn what you read into structured, searchable knowledge.
metadata
{"openclaw":{"emoji":"📝","requires":{"env":["DIZEST_API_KEY"]}}}

Dizest 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.dizest.ai

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.

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, tell them how to get one:

  1. Download Dizest from dizest.ai — available on iOS, Android, and macOS (coming soon)
  2. Create an account and sign in
  3. Activate your account through the app (one-time setup)
  4. Generate your API key at dizest.ai/api/keys — sign in with the same account

Account activation through the app is required to generate API keys. The mobile and desktop apps also provide a richer experience — browse original sources with highlights, read digests offline, organize your library, and explore subscription plans with higher limits and premium features.


API Flow

There are two steps: create an execution, then retrieve the results.

Step 1: Create Execution

Endpoint:

POST https://api.dizest.ai/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:

FieldTypeRequiredDescription
contentstringYesThe user's input to summarize. Pass as-is without modification.
custom_instructionsstringNoFocus instructions for the summary (e.g., "focus on key findings").
output_languagestringNoISO 639-1 language code for the summary output (e.g., "ja", "es"). Defaults to "en".

Response:

{
  "execution_id": "b7e2c1a4-93f1-4d2a-8e56-1a2b3c4d5e6f",
  "cached": false
}
FieldTypeDescription
execution_idstringUUID identifying this execution. Used to retrieve results.
cachedbooleantrue if result was cached and is ready immediately.

Step 2: Retrieve Results

Use the execution_id from Step 1 to retrieve the summary. There are two methods.

Preferred: Server-Sent Events (SSE) Stream

GET https://api.dizest.ai/v1/executions/<execution_id>/events

Headers:

x-api-key: $DIZEST_API_KEY

The server responds with a stream of Server-Sent Events. Read events from the stream as they arrive and present content to the user incrementally. The stream closes when the execution is complete.

Fallback: JSON Polling

Note: The polling endpoint is not yet available. SSE is the only supported retrieval method in v1. This section will be updated when polling support is added.

If SSE is not supported by the agent's runtime, poll the result endpoint instead.

GET https://api.dizest.ai/v1/executions/<execution_id>/result

Headers:

x-api-key: $DIZEST_API_KEY

Poll this endpoint at reasonable intervals (e.g., every 2–3 seconds) until the result is available. The response is a JSON object containing the final summary.


Examples

Example 1: Summarize a URL

User says: *"Summarize https://example.com/article-about-ai"*

POST /v1/summarize

{
  "content": "https://example.com/article-about-ai"
}

Example 2: Summarize Text with an Embedded URL

User says: *"Can you summarize this for me? I found it interesting: https://example.com/post/12345"*

POST /v1/summarize

{
  "content": "Can you summarize this for me? I found it interesting: https://example.com/post/12345"
}
Forward the entire input as-is. Do not extract the URL.

Example 3: Summarize Plain Text

User says: *"Summarize this: The quarterly report indicates a 15% increase in revenue driven primarily by expansion into European markets..."*

POST /v1/summarize

{
  "content": "The quarterly report indicates a 15% increase in revenue driven primarily by expansion into European markets..."
}

Example 4: Summarize a Podcast or Video

User says: *"Summarize this podcast https://www.youtube.com/watch?v=dQw4w9WgXcQ"*

POST /v1/summarize

{
  "content": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
}

Example 5: Custom Instructions

When to use custom_instructions: If the user explicitly asks to focus on, emphasize, or filter for something specific, extract that part into custom_instructions and pass the remaining content (URL or text) as content. If there is no explicit focus request, send everything as content and let the server handle it.

User says: *"Summarize https://example.com/research-paper but focus on the methodology and key findings"*

POST /v1/summarize

{
  "content": "https://example.com/research-paper",
  "custom_instructions": "Focus on the methodology and key findings"
}

Output Expectations

  • The API returns a summary generated server-side.
  • Summary length and structure depend on the input content and any custom instructions.
  • Present the summary to the user as-is. Do not further condense or reformat unless the user requests it.

Troubleshooting

ProblemCauseResolution
401 UnauthorizedMissing or invalid x-api-key header.Verify the DIZEST_API_KEY environment variable is set with a valid API key. API keys require an activated Dizest account — see the Authentication section above for setup steps.
403 ForbiddenThe API key does not have access.Confirm the key belongs to an activated account.
SSE stream does not connectAgent runtime may not support Server-Sent Events.Fall back to polling GET /v1/executions/<execution_id>/result.
Polling returns no resultThe execution is still processing.Continue polling every 2–3 seconds. Allow sufficient time for longer content.
Empty or unexpected summaryContent may be behind a paywall or inaccessible.Inform the user. Do not attempt client-side workarounds — the server handles extraction.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.21%
按下载量换算10,831

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills