一键导入
research-workflow
Research workflow: paper discovery (arXiv, Semantic Scholar), blog/RSS monitoring, knowledge base management, and ML paper writing pipeline.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Research workflow: paper discovery (arXiv, Semantic Scholar), blog/RSS monitoring, knowledge base management, and ML paper writing pipeline.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
macOS-specific automation: iMessage/SMS messaging and desktop control (screenshots, clicks, keyboard input).
Messaging platform integrations: email (IMAP/SMTP via Himalaya), X/Twitter (xurl CLI), and Yuanbao groups (@mentions, DMs).
Control creative software programmatically: ComfyUI (AI image/video generation via REST/WebSocket API) and TouchDesigner (real-time visual programming via MCP).
Systematic engineering disciplines: debugging (root cause investigation), TDD (test-first development), and exploratory QA (web app testing).
Creative coding: p5.js sketches, Manim animations, Pretext text layouts.
Create, read, edit .pptx decks, slides, notes, templates.
| name | research-workflow |
| description | Research workflow: paper discovery (arXiv, Semantic Scholar), blog/RSS monitoring, knowledge base management, and ML paper writing pipeline. |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["Research","arXiv","blogs","knowledge-base","paper-writing","ML","AI"]}} |
Unified skill for the complete research lifecycle: discovery, monitoring, knowledge management, and paper writing.
Search and retrieve academic papers from arXiv via REST API. No API key needed.
Quick search:
curl -s "https://export.arxiv.org/api/query?search_query=all:QUERY&max_results=5&sortBy=submittedDate&sortOrder=descending"
Clean output (parse XML to readable format):
# Pipe arXiv XML through Python for clean output
curl -s "URL" | python3 -c "
import sys, xml.etree.ElementTree as ET
ns = {'a': 'http://www.w3.org/2005/Atom'}
root = ET.parse(sys.stdin).getroot()
for entry in root.findall('a:entry', ns):
title = entry.find('a:title', ns).text.strip()
arxiv_id = entry.find('a:id', ns).text.strip().split('/abs/')[-1]
print(f'[{arxiv_id}] {title}')
"
Search prefixes: all:, ti: (title), au: (author), abs: (abstract), cat: (category)
Semantic Scholar (citations, related papers, author profiles):
# Get paper details + citations
curl -s "https://api.semanticscholar.org/graph/v1/paper/arXiv:2402.03300?fields=title,authors,citationCount,year,abstract"
# Get recommendations based on a paper
curl -s -X POST "https://api.semanticscholar.org/recommendations/v1/papers/" -H "Content-Type: application/json" -d '{"positivePaperIds": ["arXiv:2402.03300"]}'
Common categories: cs.AI, cs.CL (NLP), cs.CV, cs.LG, cs.CR, stat.ML
Helper script: scripts/search_arxiv.py — handles XML parsing, search by keyword/author/category/ID.
Rate limits: arXiv ~1 req/3s, Semantic Scholar 1 req/s (100/s with API key).
ID versioning: arxiv.org/abs/1706.03762 = latest version; arxiv.org/abs/1706.03762v1 = specific immutable version. Preserve version suffix in citations.
Monitor blogs and RSS/Atom feeds via blogwatcher-cli.
Use when: User wants to track blog updates, RSS feeds, or news sources.
Workflow: Configure feeds → monitor for updates → summarize new content → deliver to user.
Build and query an interlinked markdown knowledge base using Karpathy's LLM Wiki concept.
Use when: User wants to create, query, or maintain a structured knowledge base with linked entries.
Workflow: Create entries with links → query by keyword/topic → follow links for deeper context.
End-to-end pipeline for producing publication-ready ML/AI research papers targeting NeurIPS, ICML, ICLR, ACL, AAAI, and COLM.
Lifecycle: Experiment design → execution → monitoring → analysis → paper writing → review → revision → submission.
This is an iterative loop — results trigger new experiments, reviews trigger new analysis.
Key stages:
Dependencies: semanticscholar, arxiv, habanero, requests, scipy, numpy, matplotlib, SciencePlots
fields= parameter to limit response size