Scheduled intelligence research pipeline with topic monitoring, freshness state, signal-first digest delivery, and per-topic alerting based on topic-defined threshold criteria.
A twice-daily research cadence (morning + afternoon) that:
PROMPTS/TOPICS/.md file as the standing monitoring note for that topicA long-running monitoring domain (e.g., us-iran-conflict, ai, geopolitics).
PROMPTS/TOPICS/ is not just setup text. It is the standing monitoring note for that topic.
It should contain the topic's methodology, analysis framework, entity framing, signal criteria, watch items, and threshold/key event logic used to decide when the user should be alerted.
An active research question within a topic. Threads have state, typed connections, and delta updates.
The default output surface. A structured readout of what changed and why.
Every topic has a META.json that acts as a shared freshness marker for all writers:
$HOME/.openclaw/workspace/docs/research/
attention-research/
├── PROMPTS/
│ ├── CORE/ # Generic analysis framework shared across topics
│ │ ├── system-prompt.md
│ │ ├── signal-rules.md
│ │ └── digest-format.md
│ ├── TOPICS/ # Topic-local methodology and monitoring notes
│ │ ├── us-iran-conflict.md
│ │ ├── ai.md
│ │ ├── geopolitics.md
│ │ ├── finance-markets.md
│ │ ├── climate-changes.md
│ │ └── bio-tech.md
│ ├── TEMPLATES/
│ │ ├── morning-research.md
│ │ ├── afternoon-research.md
│ │ └── onboarding.md
│ └── GENERATOR/
│ └── generator.md
├── CONFIG/
│ ├── topics.yaml
│ └── default-paths.yaml
├── SCHEMA/
│ └── META.json.template
├── SCRIPTS/
│ ├── research-executor.sh
│ └── setup-cron.sh
├── INSTALL/
│ └── install.sh
├── SKILL.md
├── README.md
└── package.json
# Install via clawhub (after publishing)
clawhub install attention-research
# Or install directly from GitHub with git
mkdir -p ~/.openclaw/skills
git clone https://github.com/riverho/attention-research.git ~/.openclaw/skills/attention-research
cd ~/.openclaw/skills/attention-research
bash INSTALL/install.sh --fresh
# Or install directly from GitHub with curl
mkdir -p ~/.openclaw/skills && \
cd ~/.openclaw/skills && \
curl -L https://github.com/riverho/attention-research/archive/refs/heads/master.tar.gz \
| tar -xz && \
mv attention-research-master attention-research && \
cd attention-research && \
bash INSTALL/install.sh --fresh
Any agent using this skill should follow this order:
~/.openclaw/workspace/docs/research~/docs/researchus-iran-conflictaifinance-marketsPROMPTS/TOPICS/.md and extract the key entities / entity framework back to the user before activationtopics:
us-iran-conflict:
display_name: "US-Iran Conflict"
description: "US-Iran tensions, Hormuz, nuclear talks, sanctions"
enabled: true
search_query: "US Iran conflict Hormuz nuclear talks"
Edit CONFIG/default-paths.yaml:
delivery:
telegram:
chat_id: "YOUR_CHAT_ID"
| Job | Schedule | Purpose |
|---|---|---|
| ----- | ---------- | --------- |
| AR morning digest | 08:00 HKT | Morning research scan |
| AR afternoon update | 16:00 HKT | Afternoon research scan |
clawhub publish ./attention-research \
--slug attention-research \
--name "Attention Research Pipeline" \
--version 1.0.0 \
--changelog "First public OSS cut"
Agents should treat this skill as an attention-research workflow, not just a folder of prompts.
On every run:
PROMPTS/TOPICS/.md as the live monitoring note for that topic共 1 个版本