| name | interesting-finding |
| description | Process links and content shared in the |
interesting-finding Workflow
Channel Details
- Channel:
#interesting-finding
- Channel ID:
1471924730113163398
- Rule: Every response MUST be in a thread — never reply in the main channel.
Step-by-Step Workflow
1. Fetch the content
web_fetch(url)
Extract the main body. If the URL fails, try web_search with the title as fallback.
2. Analyze and summarize
Produce a compact analysis (not a full recap). Include:
- 核心观点 — what's the key argument or finding?
- 为什么有意思 — relevance to Sober's interests (AI, dev tools, self-hosting, health, psychology)
- 可行动的部分 — anything concrete to try, apply, or follow up on
- 相关链接/来源 (if any)
Keep it under 500 chars for Discord thread readability. Dense > verbose.
3. Create Discord thread (CRITICAL: follow exactly)
# Step A — create thread (NO message param)
message(action=thread-create, messageId=<original_message_id>, threadName=<short title>)
# Step B — send analysis to the thread
message(action=send, target=<threadId returned from step A>, message=<analysis>)
⚠️ Common mistakes:
- ❌ Do NOT pass
message param to thread-create — it won't appear in the thread
- ❌ Do NOT use
thread-reply — it posts to the main channel instead
- ✅
threadId = same as original messageId