Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
外部スクリプトでDiscordメッセージを取得し、要約を生成する。「ダイジェスト作って」「1月まとめて」「チャンネルの情報まとめて」などで使用。exec方式でLLMコンテキストを汚さない。大量データも安全に処理できる。 --- name: discord-digest-v2 description: 外部スクリプトでDiscordメッセージを取得し、要約を生成する。「ダイジェスト作って」「1月まとめて」「チャンネルの情報まとめて」などで使用。exec方式でLLMコンテキストを汚さない。大量データも安全に処理できる。 --- discord-digest-v2 - 外部スクリプト方式ダイジェスト生成 概要 **従来の問題:** サブエージェントがDiscord APIを叩くとコンテキストオーバーフロー(217K tokens) **解決策:** 1. exec で外部Pythonスクリプトを実行(Discord API直接叩く) 2. メッセージがJSONファイルに保存される(LLMと無関係) 3. clawdbotがファイルを読んで要約 前提条件 - discord.py がインストールされていること: pip install discord. Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
discord-digest-v2 is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
外部スクリプトでDiscordメッセージを取得し、要約を生成する。「ダイジェスト作って」「1月まとめて」「チャンネルの情報まとめて」などで使用。exec方式でLLMコンテキストを汚さない。大量データも安全に処理できる。 --- name: discord-digest-v2 description: 外部スクリプトでDiscordメッセージを取得し、要約を生成する。「ダイジェスト作って」「1月まとめて」「チャンネルの情報まとめて」などで使用。exec方式でLLMコンテキストを汚さない。大量データも安全に処理できる。 --- discord-digest-v2 - 外部スクリプト方式ダイジェスト生成 概要 **従来の問題:** サブエージェントがDiscord APIを叩くとコンテキストオーバーフロー(217K tokens) **解決策:** 1. exec で外部Pythonスクリプトを実行(Discord API直接叩く) 2. メッセージがJSONファイルに保存される(LLMと無関係) 3. clawdbotがファイルを読んで要約 前提条件 - discord.py がインストールされていること: pip install discord.
Public facts
4
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Feb 25, 2026
Vendor
Naoterumaker
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/naoterumaker/discord-digest-v2.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Naoterumaker
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
python
# discord.py で全チャンネル列挙(exec経由)
python3 -c "
import json, asyncio, discord
with open('/Users/naoterun/.clawdbot/clawdbot.json') as f:
config = json.load(f)
token = config['channels']['discord']['token']
async def main():
client = discord.Client(intents=discord.Intents.default())
@client.event
async def on_ready():
guild = client.get_guild(GUILD_ID)
for ch in guild.text_channels:
print(f'{ch.id}\t{ch.name}\t{ch.category}')
await client.close()
await client.start(token)
asyncio.run(main())
"bash
python3 ~/clawd/scripts/discord_fetcher.py \ --channel <channel_id> \ --start <YYYY-MM-DD> \ --end <YYYY-MM-DD> \ --output ~/clawd/discord-data/<job_id>/<channel_name>
bash
# 例: 複数チャンネルをバッチ実行 python3 discord_fetcher.py --channel ID1 --start ... --end ... --output .../ch1 & python3 discord_fetcher.py --channel ID2 --start ... --end ... --output .../ch2 & # ... wait echo "ALL DONE"
json
{"tool": "process", "action": "poll", "sessionId": "<id>"}text
ループ: 1. page-NNNN.json を読む 2. 要点を抽出(トピック、決定事項、質問、重要発言) 3. 要点を ~/clawd/discord-digests/<date>/page-summary-NNNN.md に書く 4. 生データを忘れる(次のページへ) 全ページ完了後: 1. page-summary-*.md を全部読む 2. 統合ダイジェストを生成 3. final-digest.md に保存
text
sessions_spawn:
task: |
以下のディレクトリにDiscordメッセージのJSONファイルがあります。
ディレクトリ: ~/clawd/discord-data/<job_id>/
各チャンネルのpage-0001.jsonを読んで、チャンネルごとの要約を作成してください。
要約はSKILL.mdのダイジェスト書き方ガイドラインに従ってください。
結果を ~/clawd/discord-digests/<date>/final-digest.md に保存してください。Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
外部スクリプトでDiscordメッセージを取得し、要約を生成する。「ダイジェスト作って」「1月まとめて」「チャンネルの情報まとめて」などで使用。exec方式でLLMコンテキストを汚さない。大量データも安全に処理できる。 --- name: discord-digest-v2 description: 外部スクリプトでDiscordメッセージを取得し、要約を生成する。「ダイジェスト作って」「1月まとめて」「チャンネルの情報まとめて」などで使用。exec方式でLLMコンテキストを汚さない。大量データも安全に処理できる。 --- discord-digest-v2 - 外部スクリプト方式ダイジェスト生成 概要 **従来の問題:** サブエージェントがDiscord APIを叩くとコンテキストオーバーフロー(217K tokens) **解決策:** 1. exec で外部Pythonスクリプトを実行(Discord API直接叩く) 2. メッセージがJSONファイルに保存される(LLMと無関係) 3. clawdbotがファイルを読んで要約 前提条件 - discord.py がインストールされていること: pip install discord.
従来の問題: サブエージェントがDiscord APIを叩くとコンテキストオーバーフロー(217K tokens)
解決策:
discord.py がインストールされていること: pip install discord.py~/clawd/scripts/discord_fetcher.pyトークンは自動取得:
DISCORD_BOT_TOKEN(あれば)~/.clawdbot/clawdbot.json の channels.discord.token(自動で読む)→ 環境変数の設定は不要!clawdbot.json にトークンがあればOK。
ユーザーから以下を確認:
channel-list または discord.py でギルド内の全テキストチャンネルを列挙チャンネル一覧の取得方法:
# discord.py で全チャンネル列挙(exec経由)
python3 -c "
import json, asyncio, discord
with open('/Users/naoterun/.clawdbot/clawdbot.json') as f:
config = json.load(f)
token = config['channels']['discord']['token']
async def main():
client = discord.Client(intents=discord.Intents.default())
@client.event
async def on_ready():
guild = client.get_guild(GUILD_ID)
for ch in guild.text_channels:
print(f'{ch.id}\t{ch.name}\t{ch.category}')
await client.close()
await client.start(token)
asyncio.run(main())
"
単一チャンネル:
python3 ~/clawd/scripts/discord_fetcher.py \
--channel <channel_id> \
--start <YYYY-MM-DD> \
--end <YYYY-MM-DD> \
--output ~/clawd/discord-data/<job_id>/<channel_name>
全チャンネル一括取得:
チャンネルごとにスクリプトを実行。& + wait で並列化可能だが、同時接続が多すぎるとDiscord APIのセッション無効化が起きるため注意。
# 例: 複数チャンネルをバッチ実行
python3 discord_fetcher.py --channel ID1 --start ... --end ... --output .../ch1 &
python3 discord_fetcher.py --channel ID2 --start ... --end ... --output .../ch2 &
# ...
wait
echo "ALL DONE"
出力ディレクトリの命名規則:
discord-data/weekly-YYYY-WXX/<channel_name>/discord-data/digest-YYYYMMDD-MMDD/<channel_name>/discord-data/<server_name>-YYYYMMDD/<channel_name>/process ツールでジョブの完了を確認:
{"tool": "process", "action": "poll", "sessionId": "<id>"}
または、出力ディレクトリの manifest.json を確認:
status: "completed" → 成功status: "error" → エラー(error フィールドに詳細)重要: セッションにデータを溜め込まない!
manifest.json を読んで総ページ数を確認ループ:
1. page-NNNN.json を読む
2. 要点を抽出(トピック、決定事項、質問、重要発言)
3. 要点を ~/clawd/discord-digests/<date>/page-summary-NNNN.md に書く
4. 生データを忘れる(次のページへ)
全ページ完了後:
1. page-summary-*.md を全部読む
2. 統合ダイジェストを生成
3. final-digest.md に保存
データ量が多い場合(10チャンネル以上、500件以上など)、サブエージェントに要約を委任できる。
sessions_spawn:
task: |
以下のディレクトリにDiscordメッセージのJSONファイルがあります。
ディレクトリ: ~/clawd/discord-data/<job_id>/
各チャンネルのpage-0001.jsonを読んで、チャンネルごとの要約を作成してください。
要約はSKILL.mdのダイジェスト書き方ガイドラインに従ってください。
結果を ~/clawd/discord-digests/<date>/final-digest.md に保存してください。
注意:
最終ダイジェストをユーザーに報告。Discordに送信する場合は2000文字制限があるため、セクションごとに分割送信する。
~/clawd/
├── scripts/
│ └── discord_fetcher.py # データ取得スクリプト
│
├── discord-data/ # 取得した生データ
│ └── <job_id>/
│ ├── manifest.json # メタデータ
│ ├── page-0001.json # 1ページ目(最大100件)
│ ├── page-0002.json
│ └── ...
│
└── discord-digests/ # 生成したダイジェスト
└── <YYYY-MM-DD>/
├── page-summary-0001.md # ページごとの要約
├── page-summary-0002.md
└── final-digest.md # 最終ダイジェスト
{
"channel_id": "977473910402609162",
"channel_name": "収益剥奪や収益審査の情報交換",
"start_date": "2026-01-01T00:00:00+00:00",
"end_date": "2026-01-31T23:59:59+00:00",
"total_pages": 15,
"total_messages": 1423,
"fetched_at": "2026-02-04T06:30:00+00:00",
"status": "completed"
}
[
{
"id": "1234567890",
"author": "username",
"author_display_name": "Display Name",
"author_id": "9876543210",
"content": "メッセージ本文",
"timestamp": "2026-01-15T10:30:00+00:00",
"attachments": [{"url": "...", "filename": "..."}],
"embeds": [{"title": "...", "description": "..."}],
"reactions": [{"emoji": "👍", "count": 5}],
"reply_to": "1234567889"
}
]
各ページから以下を抽出:
目指すレベル: 「週間ニュースレター」
忙しい人が2〜3分で読めて、サーバーの流れを把握できるレベル。
manifest.json を確認status が "completed" でなければ再実行--output を同じにして再実行(上書き)manifest.json を確認manifest.json の error フィールドを確認Channel not found: チャンネルIDが間違っているNo permission: BotがチャンネルにアクセスできないDISCORD_BOT_TOKEN not set: 環境変数が未設定DISCORD_BOT_TOKEN は clawdbot 起動時に設定しておく必要があるMachine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/snapshot"
curl -s "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/contract"
curl -s "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T02:19:13.018Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Naoterumaker",
"href": "https://github.com/naoterumaker/discord-digest-v2",
"sourceUrl": "https://github.com/naoterumaker/discord-digest-v2",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T02:24:13.211Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T02:24:13.211Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/naoterumaker-discord-digest-v2/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to discord-digest-v2 and adjacent AI workflows.