ワンクリックで
traversing-citations
Backward (references) and forward (citing papers) traversal via OpenAlex, with relevance filtering and deduplication
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Backward (references) and forward (citing papers) traversal via OpenAlex, with relevance filtering and deduplication
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Main orchestration workflow for systematic literature research - search, evaluate, traverse, synthesize via the rp_* tools pipeline (Scopus + OpenAlex)
Collaboratively build and refine paper screening rubrics through brainstorming, test-driven development, and iterative feedback
Safely remove intermediate files from completed research sessions while preserving important data
Perform advanced search on CNKI with field filters like author, title, journal, date range, source category (SCI/EI/CSSCI/北大核心). Use when user needs precise filtered search beyond simple keywords.
Download a paper PDF/CAJ from CNKI. Requires user to be logged in. Use when user wants to download a specific paper.
Export paper from CNKI and push to Zotero, or save as RIS file. Use when user wants to save a paper to Zotero or export citation data.
| name | traversing-citations |
| description | Backward (references) and forward (citing papers) traversal via OpenAlex, with relevance filtering and deduplication |
| when_to_use | After finding a relevant paper (score >= 7). When you need related work. When following references or citing papers. When building a citation graph. |
| version | 2.0.0 |
RC native tools — this skill's pipeline ships as four built-in RC tools. Call them directly; do not shell out to any
rp.pyscript or write curl:
rp_search({ query, limit?, min_year? })— Scopus relevance search enriched with OpenAlex abstracts + OA PDF links. The Elsevier key is built in.rp_abstracts({ dois })— batch abstracts + OA links for a DOI list (OpenAlex, no key).rp_cite({ doi, direction?, limit? })— citation traversal (direction:both/backward/forward).rp_fulltext({ doi, out? })— OA full text (Elsevier ScienceDirect OA → OpenAlex OA fallback); passoutto also save the text to a file.Results return inline as JSON (there is no
--json <file>flag). To persist a result set, save the returned JSON with the workspace file tools.
Follow citations backward (a paper's references) and forward (papers citing it)
through OpenAlex, driven by rp_cite.
Core principle: Only expand papers that already scored >= 7, and only enqueue citations that pass relevance filtering. Filter before traversing to avoid explosion.
Why OpenAlex, not Scopus or Semantic Scholar: the personal Scopus key cannot return references or run forward-citation (
REFEID) searches — both 403. Semantic Scholar was dropped from this pipeline: in testing it returneddata: nullfor the references of papers it had clearly indexed (e.g. it reported 18 references but served none), failing silently. OpenAlex returned the full reference list for those same papers. OpenAlex is the single citation source here.
rp_cite "10.1056/NEJMoa2300696" --direction both --limit 50 \
Returns:
{
"seed": {"doi": "...", "title": "...", "openalex_id": "W..."},
"backward": [ {normalized work: doi,title,year,abstract,cited_by,oa_pdf_url}, ... ],
"forward": [ {normalized work, sorted by cited_by desc}, ... ]
}
referenced_works (what this paper cites), resolved to full metadata
with abstracts in batch.cites field includes the seed, sorted by citation count
(most-cited citing papers first — usually the highest-signal follow-ups).Both arrays already carry abstracts, so you can score immediately with
evaluating-paper-relevance without another fetch.
For each returned citation, score for relevance to the query (use the same rubric as
evaluating-paper-relevance). Cheap pre-filter signals already in the record:
cited_by → prioritizeOnly enqueue citations scoring >= 5. Then evaluate enqueued papers normally.
Before enqueuing, check papers-reviewed.json by DOI; skip if present. After
evaluating any traversed paper, add it to papers-reviewed.json regardless of score, so
it is never re-processed from another seed.
Record the relationship in citations/citation-graph.json:
{ "10.1056/nejmoa2300696": { "references": ["10.x/...", ...], "cited_by": ["10.y/...", ...] } }
Use only citation-graph.json for relationships and SUMMARY.md for findings — do
not create ad-hoc files like forward_citation_dois.txt.
--limit caps each direction per call; raise deliberately, not by default.referenced_works. When backward is empty for a paper that clearly has references,
note it (⚠️ No references in OpenAlex) and continue; do not assume zero references.rp_cite (OpenAlex). SS is removed.papers-reviewed.json before and after; add every evaluated paper.backward as truth → may be a coverage gap; flag it.Evaluate enqueued papers with evaluating-paper-relevance; update SUMMARY.md and
citation-graph.json; checkpoint at 50 papers.