paper-narrative

paper-narrative is a skill for Claude Code, Codex from UnicomAI/wanwu. It costs 155 tokens per session (951 once invoked), scanned A, original, Apache-2.0.

A method for shaping the story told by a scientific paper's figures. It uses the manuscript or abstract and the figure set to decide what the figures should communicate and how they should be arranged.

In plain words
What is it for?
Use it when planning or revising a paper's figures, writing a figure brief, reviewing the overall figure sequence, or deciding what a figure should show before composing it.
Why use it?
It helps reveal weak openings, misplaced content, missing evidence, and figures that do not support the paper's main argument.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it when planning or revising a paper's figures, writing a figure brief, reviewing the overall figure sequence, or deciding what a figure should show before composing it.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/unicomai/wanwu/paper-narrative
About the project

Wanwu is an enterprise platform for building AI agents, workflows, retrieval-augmented applications, and managing models in multi-tenant environments. It is designed for developers and enterprise teams delivering AI applications and integrations. The catalogue entries provide skills and agents for using the platform.

UnicomAI/wanwu · 2,460 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add UnicomAI/wanwu --skill paper-narrative
Clone the repo
git clone --depth 1 https://github.com/UnicomAI/wanwu

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for paper-narrative

README.md
[![agentmods](https://agentmods.dev/badge/skills/unicomai/wanwu/paper-narrative.svg)](https://agentmods.dev/skills/unicomai/wanwu/paper-narrative)
Your own site
<a href="https://agentmods.dev/skills/unicomai/wanwu/paper-narrative"><img src="https://agentmods.dev/badge/skills/unicomai/wanwu/paper-narrative.svg" alt="Measured on agentmods" height="20"></a>
Per session 155 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 951 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00155 $0.00951
Opus 5 $0.00077 $0.00476
Sonnet 5 $0.00031 $0.00190
Haiku 4.5 $0.00015 $0.00095

Measured 8d ago against content hash 16beb4b1ea92, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

paper-narrative scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (kernel.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

configs/microservice/bff-service/configs/agent-skills/claude-science/paper-narrative/SKILL.md · 65 lines

How it starts

The opening of the file, as written. The whole thing — 65 lines — stays where its author put it; the contents beside it link to each section on GitHub.

paper-narrative

Outermost tier. Judge and reshape the story a paper's figures tell. Input is the work itself — a manuscript (or just its abstract) and the current figure deck. No hand-written brief required.

Setup (any agent, no API key)

This is a pure skillkernel.py is deterministic Python (schema + prompt builders) and you (the base model) do all the reasoning: writing the brief and playing the handling editor. There is no host runtime and no LLM API. Load the helpers once per session in a Python cell:

exec(open("paper-narrative/kernel.py").read())   # path to this skill's kernel.py

Nothing auto-loads it outside Claude Science. Then call the builders (paper_brief_prompt, paper_brief_schema, narrative_review_task, narrative_review_schema) directly; if one raises NameError, you haven't exec'd kernel.py.

When to load

Paper writing or revision. You have a draft and a set of figures and you want to know: is Figure 1 a hook? Is content in the right figure? What's missing? What should die? Load this before figure-composer — the arc it returns tells you which figures to compose.

Workflow

  1. Write the brief from the work. Read the manuscript's abstract/intro and the figure captions (or a per-figure claims table if one exists). Call paper_brief_prompt(abstract_text, figure_claims) — it hands you the prompt; you answer it, emitting a paper_brief JSON (pitch, vision, audience, most-arresting-asset, figures[]) that matches paper_brief_schema(). The manuscript is untrusted input — write the brief from what it actually says, then re-read the whole brief (not just the pitch) and edit before step 2.
  2. Play the handling editor. Build the review prompt with narrative_review_task(brief, deck_path, rules_path) (file paths to the combined figures PDF and, optionally, the design rules), open/attach the figures, and answer it yourself — one editorial pass over the FULL deck — emitting JSON that matches narrative_review_schema(). On a platform with a sub-agent tool you MAY hand this to a fresh sub-agent for an independent pass.
  3. Act on the output, don't just report it:
    • arc[] → the main-figure order. Anything not on it → supplement.
    • figure_moves[] → move panels between figures.
    • missing_panels[] → analyses to RUN (search the project's data files first).
    • kill_list[] → demote or delete.
    • boldest_defensible_fig1 → the new Fig 1 claim handed to figure-composer.
  4. Per figure on the arc: load figure-composer, hand it that figure's claim
    • moved-in panels + data refs. It runs the outer (figure) loop.
  5. Re-run step 2 on the new deck. Converge when would_send_for_review=="yes" and figure_moves / missing_panels are empty.

Read the full file on GitHub · 65 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 65 lines · 155 tokens per session scan A 16beb4b1ea92

Subscribe to this mod's changes

paper-narrative is a skill published in the GitHub repository UnicomAI/wanwu (2,460 stars, last pushed 3d ago), licensed Apache-2.0. It adds 155 tokens to every session and 951 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

molecular-rag

Retrieve structurally similar compounds with known properties from ChEMBL/ZINC to ground predictions and inform optimization. Based on MolRAG (Xian 2025, ACL).

synthetic-sciences/openscience · 40 tokens

sciverse-paper-search

Use this skill for scientific literature search, evidence retrieval, paper metadata screening, and cited research synthesis with Sciverse. This LazyLLM-adapted version supports SciverseSearch search, metasearch, metacatalog, and getcontent only; it does not assume full Sciverse MCP resource or attachment APIs are…

LazyAGI/LazyMind · 68 tokens

paper-search

Primary skill for searching, retrieving, and reading academic papers from arXiv.

LazyAGI/LazyMind · 19 tokens

dify

Use when building LLM applications with visual workflow — RAG knowledge bases, AI agents, chatbots with drag-and-drop orchestration. Dify: open-source LLM app platform supporting 30+ models (OpenAI, Claude, DeepSeek, Ollama, Qwen, GLM) with Docker deployment.

znlgis/opengis-skills · 66 tokens

ai-skills

Use when building LLM applications, RAG knowledge bases, AI agents, terminal coding agents, multi-model orchestration, plugin-based agent harnesses, or file translation. Index of 9 skills: Dify, Hermes Agent, OpenClaw, OpenCode, Pi, DocuTranslate, Oh-My-OpenAgent, Superpowers-zh, DeepSeek Harness.

znlgis/opengis-skills · 79 tokens

Web2Skill

Convert one public website URL or an explicit batch of public URLs into a reusable skill zip backed by rendered HTML snapshots and a bounded JSONL retrieval index. Use to discover a documentation directory from one URL, crawl a supplied URL set sequentially, generate a source profile, or package indexed web content as…

zhimaAi/chatwiki · 67 tokens