Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

daigestdaigest 搜索

Agent Skill

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

总安装

259

周安装

11

GitHub Stars

1

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:daigest(daigest 搜索)
来源仓库:https://github.com/daige-st/daigest-skill
仓库路径:skills/daigest
安装命令:
npx skills add https://github.com/daige-st/daigest-skill --skill daigest
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/daige-st/daigest-skill --skill daigest

简介

daigest 为 AI Agent 提供可信的内容摘要服务,聚合 RSS、网页、Slack 等多源信息并生成事实性报告。

  • 适用于需要持续追踪行业动态、竞品更新或技术趋势的研究型任务场景。
  • 不同于普通搜索,它返回的是经 AI 总结且可追溯原始出处的 digest,降低幻觉风险。
  • Agent 也可通过 API 创建自有 feed,但需自行维护订阅源质量与更新频率。
  • 使用前请核实目标宿主是否支持 Daigest API 调用,并遵守其速率限制与使用条款。

SKILL.md

Daigest — Context Feed API for AI Agents

Give your AI grounded context, not hallucinated search results.

Daigest delivers AI-summarized digests from trusted sources (RSS, web pages, Slack, Notion, GitHub, and more) — grounded in real content, always traceable to the original source. Agents can also create and manage their own feeds via this API when they need context on new topics.

When AI agents search the web, they risk hallucination and unreliable results. Daigest solves this: instead of searching and hoping for accuracy, the agent subscribes to trusted sources and gets pre-summarized, factual context on demand. No guesswork, no fabrication — just reliable information the agent can act on.

Core Concepts

ConceptDescription
FeedThe core unit. A container that holds sources, content, and memory.
SourceAn information channel to monitor — RSS feed, web page, Slack channel, etc.
MemoryInstructions for the AI: language, focus areas, output format, what to highlight or ignore.
ContentThe feed's current markdown digest. Generated by sync or written directly by the agent.
PostA published snapshot of content. Both sync and manual publishing create posts.

Authentication

Authorization: Bearer dk_live_xxxxxxxxxxxx

API keys: https://daige.st/account/api-keys

Base URL & OpenAPI Spec

https://daige.st/api/v1

OpenAPI spec for auto-generating agent tools (Claude Code, Cursor, Windsurf, ChatGPT GPTs, Dify, n8n, etc.):

GET https://daige.st/api/v1/openapi.json

Usage Flows

A. Read existing feeds

The most common flow. Feeds are already set up (by a human in the web app or previously by an agent).

GET /feeds                              → find the relevant feed
GET /feeds/{id}?since=2026-02-09T00:00Z → check for updates

If has_changes: true, use the content. If false, skip — nothing new.

B-1. Create a feed and get content via sync

POST /feeds
{
  "name": "AI News Digest",
  "memory": "Summarize the latest AI news. Highlight new model releases and benchmark results.",
  "sources": [
    { "type": "rss", "url": "https://example.com/ai-feed.xml" },
    { "type": "url", "url": "https://example.com/blog" }
  ]
}
→ 201 { "id": "feed-uuid", ... }

Option A — Sync now: Call sync immediately when the agent needs context right now.

POST /feeds/{id}/sync
→ 200 { "content": "# AI News\n\n...", "has_changes": true, ... }

Synchronous — takes 30s to 5min depending on source count. Consumes AI quota.

Option B — Schedule: Add schedule_enabled and scheduled_times to auto-sync periodically, then poll for updates.

POST /feeds
{
  "name": "Daily Tech Brief",
  "memory": "Summarize key updates from these tech blogs.",
  "schedule_enabled": true,
  "scheduled_times": [{ "time": "09:00", "days": ["mon", "tue", "wed", "thu", "fri"] }],
  "sources": [{ "type": "rss", "url": "https://example.com/feed.xml" }]
}
→ 201 { "id": "feed-uuid", ... }

GET /feeds/{id}?since=2026-02-09T09:00:00Z
→ 200 { "has_changes": true, "content": "..." }   // new digest ready

B-2. Create a feed and write content directly

The agent writes its own content to a feed — using Daigest as a context store without relying on AI sync.

POST /feeds { "name": "Research Notes" }
→ 201 { "id": "feed-uuid", ... }

PATCH /feeds/{id}
{ "content": "# Agent's research notes\n\n..." }
→ 200 { "content": "# Agent's research notes\n\n...", ... }

Useful when the agent curates and organizes information itself, and uses the feed to store or share the result.

C. Adjust an existing feed

Use PATCH /feeds/{id} to change any combination of settings in a single request.

Change sources and AI instructions, then re-sync:

PATCH /feeds/{id}
{
  "memory": "Focus on product launches only. Ignore hiring news.",
  "add_sources": [{ "type": "url", "url": "https://example.com/changelog" }],
  "remove_source_ids": ["old-source-uuid"]
}

POST /feeds/{id}/sync    → regenerate with new settings

Update content and publish as a post:

PATCH /feeds/{id}
{ "content": "# Updated digest\n\nAgent-curated content here." }

POST /feeds/{id}/posts    → publish as a post (once per 15 min)
→ 201 { "version_number": 1, "content": "...", ... }

Change schedule:

PATCH /feeds/{id}
{
  "schedule_enabled": true,
  "scheduled_times": [{ "time": "18:00", "days": ["mon", "fri"] }]
}

Endpoints

List feeds

GET /feeds
→ 200 { "feeds": [{ "id", "name", "source_count", "updated_at", ... }] }

Create a feed

POST /feeds
{
  "name": "Feed Name",                          // required, max 200 chars
  "memory": "Instructions for AI summarizer",   // optional, max 1500 chars
  "schedule_enabled": true,                     // optional
  "scheduled_times": [{ "time": "09:00", "days": ["mon", "fri"] }],  // optional
  "sources": [{ "type": "rss", "url": "..." }] // optional
}
→ 201 { "id", "name", "schedule_enabled", "source_count", "created_at" }

Get feed details

GET /feeds/{id}
GET /feeds/{id}?since=2026-02-09T00:00:00Z
→ 200 {
  "id", "name", "schedule_enabled", "scheduled_times",
  "content",      // markdown, max 2000 chars. Empty when has_changes is false.
  "memory",       // AI instructions, max 1500 chars
  "has_changes",  // false if nothing changed since `since`
  "updated_at",
  "sources": [{ "id", "type", "name" }]
}

Update a feed

PATCH /feeds/{id}
{
  "name": "New Name",                           // optional
  "content": "# Updated content",               // optional, max 2000 chars
  "memory": "New AI instructions",              // optional, max 1500 chars
  "schedule_enabled": true,                     // optional
  "scheduled_times": [{ "time": "10:00" }],     // optional
  "add_sources": [{ "type": "rss", "url": "..." }],   // optional, max 20
  "remove_source_ids": ["source-uuid"],                // optional, max 20
}
→ 200 { "id", "name", "content", "memory", "sources", "updated_at", ... }
  • remove_source_ids: Get IDs from GET /feeds/{id} response sources[].id.

Delete a feed

DELETE /feeds/{id}
→ 200 { "deleted": true }

Publish a post

Snapshot the current content as a new post. Rate limited to once per 15 minutes per feed.

POST /feeds/{id}/posts
→ 201 { "version_number", "name", "content", "references", "created_at" }

Returns 429 if called within 15 minutes of the last post.

List past posts

Sync and publish both create posts. Use this to access historical digests.

GET /feeds/{id}/posts
GET /feeds/{id}/posts?cursor=42&limit=5
→ 200 {
  "posts": [{
    "version_number": 42,
    "name": "My Feed",
    "content": "# Summary...",
    "references": [{ "id": 1, "title": "Article Title", "url": "https://example.com/article" }],
    "created_at": "2026-02-08T09:00:00Z"
  }],
  "next_cursor": 38,
  "has_more": true
}

Paginate with cursor (version_number, exclusive) and limit (default 10, max 50).

Get a specific past post

GET /feeds/{id}/posts/{versionNumber}
→ 200 { "version_number", "name", "content", "references", "created_at" }

Returns 404 if the version doesn't exist.

Sync a feed

POST /feeds/{id}/sync
→ 200 { "id", "name", "content", "has_changes": true, "sources", ... }

Fetches latest data from all sources, then AI generates/updates the digest. Synchronous — waits until completion. Consumes AI quota.

Source Types

Create via API

TypeDescription
rssAny RSS or Atom feed URL
urlAny web page — Daigest extracts and monitors the content

Configure in web app, use via API

These sources require setup in the Daigest web app first, then you can read and sync feeds containing them via the API.

TypeSetup
slackOAuth
notionOAuth
githubOAuth
discordOAuth (Pro plan)
youtubeWeb app (channel/trending free, search Pro plan)
xWeb app (Pro plan)
redditWeb app
substackWeb app
threadsWeb app

Best Practices

Memory examples

  • Language: "Write the digest in Korean." or "Summarize in Japanese with English technical terms."
  • Focus: "Focus on pricing changes and product launches. Ignore job postings."
  • Format: "Use bullet points grouped by topic. Start each section with a one-line summary."
  • Tone: "Write for a technical audience. Be concise — no fluff."

Sync cost management

Each sync consumes an AI request from the user's plan.

  • Prefer scheduled syncs (schedule_enabled) over frequent manual syncs
  • Combine related sources into one feed rather than many small feeds
  • Use since to check for changes before deciding to sync

Source combination

RSS for regular updates + URL for specific pages gives comprehensive coverage. For example, an RSS feed for blog posts + a URL for the changelog page.

Rate Limits

ScopeLimit
General60 req/min per API key
Sync10 req/min per API key

Returns 429 with Retry-After header (seconds) when exceeded.

Error Responses

{ "error": "description", "code": "ERROR_CODE" }
StatusMeaning
400Validation error
401Missing or invalid API key
404Feed not found
429Rate limit exceeded

Links

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.21%
按下载量换算30

Claude

31.14%
按下载量换算28

Cursor

18.92%
按下载量换算17

Gemini CLI

9.77%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills