Research Paper Push
Create daily paper-alert subscriptions that query OpenAlex, filter real recent papers by topic and preferred venues, and format concise Chinese summaries for delivery.
This skill is for researchers who want an automated “what's new today?” workflow: define journals/conferences, define keywords, choose a time, and let OpenClaw cron run the subscription.
What it helps with
- Subscribe to new papers by topic, journal, or conference.
- Run one-off test queries before enabling a schedule.
- Maintain local subscription state and last-checked dates.
- Produce short Chinese summaries with title, authors, venue, date, link, matched topics, and relevance.
- Monitor neuroimaging/medical-AI topics such as AD/MCI, dynamic functional connectivity, rs-fMRI, GNNs, and brain networks.
Use cases
Use this skill when the user wants to:
- Subscribe to new papers in a research area.
- Push papers from selected journals/conferences at a daily time.
- List, update, or cancel paper subscriptions.
- Send a test paper-summary push.
- Run a local scheduled research-monitoring workflow with OpenClaw cron.
Do not use this skill for one-off literature search, DOI lookup, or long literature reviews; use a paper-search/review skill instead.
Safety and privacy
- Do not store API keys, tokens, cookies, or private channel credentials in the skill folder.
- OpenAlex does not require an API key. Set
OPENALEX_MAILTOonly if the user wants a polite-pool contact email. - Treat recipient IDs passed with
--toas local user data; do not include generateddata/*.jsonfiles when publishing the skill. - Ask before creating or deleting external cron jobs if the user did not explicitly request scheduling changes.
- For QQ or other chat channels, confirm timezone before creating the first scheduled push.
Bundled script
Run:
python scripts/manage_papers.py <action> [options]
Supported actions:
add— create a subscription and register a cron job.list— list subscriptions, optionally filtered by recipient.update— update time, timezone, journals, topics, or lookback days.remove— remove a subscription and cron job.test— query OpenAlex once and print a test summary without saving a subscription.run— execute one subscription by ID and update itslast_checkeddate.
Common options:
--to "<recipient-id>"--time "09:00"--timezone "Asia/Shanghai"--journals "IEEE TMI,NeuroImage,Medical Image Analysis"--topics "Alzheimer,MCI,dynamic functional connectivity,graph neural network,rs-fMRI"--days 3— look back N days when nolast_checkeddate exists.--since YYYY-MM-DD— override the OpenAlexfrom_publication_datefilter.--limit 10— maximum papers to summarize.
First-time subscription flow
- Ask for a clear daily push time if missing.
- Example:
09:00,12:00,20:30.
- Example:
- Confirm the user's timezone.
- Default can be
Asia/Shanghaiwhen appropriate.
- Default can be
- Confirm journals/conferences and topics.
- Create the subscription with the script.
- Verify the cron registration succeeded.
Example:
python scripts/manage_papers.py add --to "<recipient-id>" --time "09:00" --timezone "Asia/Shanghai" --journals "IEEE TMI,NeuroImage,Medical Image Analysis" --topics "Alzheimer,MCI,dynamic functional connectivity,graph neural network,rs-fMRI"
List subscriptions:
python scripts/manage_papers.py list --to "<recipient-id>"
Update a subscription:
python scripts/manage_papers.py update --id "1" --time "20:30" --topics "Alzheimer,MCI,dynamic brain network,GNN"
Remove a subscription:
python scripts/manage_papers.py remove --id "1"
Run a real OpenAlex test query:
python scripts/manage_papers.py test --since "2026-01-01" --limit 5 --journals "NeuroImage,Human Brain Mapping" --topics "Alzheimer,MCI,dynamic functional connectivity,rs-fMRI,GNN"
Run one saved subscription:
python scripts/manage_papers.py run --id "1" --limit 10
OpenAlex behavior
The script:
- Builds English OpenAlex search queries from subscription topics.
- Uses
from_publication_datebased on--since, savedlast_checked, or--days. - Queries
https://api.openalex.org/workssorted by recent publication date. - Converts OpenAlex works into paper records with title, authors, venue, date, DOI/link, citation count, and abstract.
- Scores relevance against subscription topics plus common neuroimaging synonym groups.
- Prefers requested journals/conferences but keeps highly relevant adjacent results.
- Deduplicates by DOI, OpenAlex ID, or title.
Default subscription model
If the user does not specify journals or topics, use the bundled defaults in scripts/manage_papers.py:
- Medical imaging and neuroimaging journals/conferences.
- Dynamic brain networks, functional connectivity, neurodegenerative disease, MRI/fMRI, and graph/deep learning topics.
Output style
Default summaries are concise Chinese bullet points including:
- Title
- Authors/year/venue
- Publication date and citation count
- DOI or OpenAlex link
- Matched topic keywords
- Whether the paper is directly relevant or adjacent