Workspace
CODEBLOCK0
Quick Reference
| Task | Load |
|---|
| Add/configure sources | INLINECODE0 |
| Set up filtering rules |
filtering.md |
| Configure alert tiers |
alerts.md |
| Query archived content |
querying.md |
| Platform-specific setup |
platforms.md |
Core Loop
- 1. Add source: User names person/topic/feed → create tracking file
- Monitor: Check sources on schedule (cron) or on-demand
- Filter: Apply relevance rules, skip noise
- Store: Archive what matters (summaries, not full dumps)
- Alert: Notify based on tier (immediate/daily/weekly/passive)
- Query: Answer "what did X say about Y?" from archive
Common Patterns
| User says | Agent does |
|---|
| "Follow @naval on Twitter" | Create sources/people/naval.md, configure Twitter monitoring |
| "Track AI safety discussions" |
Create topic tracker with keywords across multiple sources |
| "What has Competitor X posted this week?" | Query archive, synthesize summary |
| "Alert me immediately when Y happens" | Add to high-priority tier in
alerts.md |
| "Give me a weekly digest of everything" | Configure weekly summary in alerts |
| "Stop following X" | Archive and mark inactive |
Capture Principles
- - Summaries over full content — save space, stay legal
- Links + timestamps always — retrievable later
- Context for why it matters — not just "X posted"
- Deduplicate across sources — same news from 5 places = 1 entry
工作区
~/follow/
├── sources/ # 每个关注实体对应一个文件
│ ├── people/ # @naval.md, @dhh.md
│ ├── topics/ # ai-safety.md, rust.md
│ └── feeds/ # techcrunch.md, hn-frontpage.md
├── archive/ # 按日期归档捕获的内容
│ └── YYYY-MM/
├── alerts.md # 提醒配置
└── index.md # 快速状态:正在关注的内容
快速参考
| 任务 | 加载 |
|---|
| 添加/配置来源 | sources.md |
| 设置过滤规则 |
filtering.md |
| 配置提醒等级 | alerts.md |
| 查询归档内容 | querying.md |
| 特定平台设置 | platforms.md |
核心循环
- 1. 添加来源:用户指定人物/话题/订阅源 → 创建追踪文件
- 监控:按计划(定时任务)或按需检查来源
- 过滤:应用相关性规则,跳过噪音
- 存储:归档重要内容(摘要,非完整转储)
- 提醒:根据等级通知(即时/每日/每周/被动)
- 查询:从归档中回答“X对Y说了什么?”
常见模式
| 用户说 | 智能体做 |
|---|
| “在Twitter上关注@naval” | 创建 sources/people/naval.md,配置Twitter监控 |
| “追踪AI安全讨论” |
创建跨多个来源的关键词话题追踪器 |
| “竞争对手X这周发了什么?” | 查询归档,综合生成摘要 |
| “Y发生时立即提醒我” | 添加到 alerts.md 的高优先级等级 |
| “给我每周所有内容的摘要” | 在提醒中配置每周摘要 |
| “停止关注X” | 归档并标记为不活跃 |
捕获原则
- - 摘要优于完整内容 — 节省空间,保持合法
- 始终包含链接和时间戳 — 后续可检索
- 说明为何重要 — 不仅仅是“X发布了”
- 跨来源去重 — 5个来源的同一新闻 = 1条记录