New to Claude Skills? Learn how to install them →

yuan1z0825 on GitHub

Nature Writing

Free

Streamline your scientific manuscript drafting process.

Get this skill

Free · Opens the source repo

What Nature Writing does

The Nature Writing skill is designed to assist researchers and authors in drafting and structuring their scientific manuscripts in accordance with the standards of Nature journals. This skill facilitates the creation of various sections of a manuscript, including abstracts, introductions, methods, discussions, and submission packages. By utilizing user-provided claims, results, figures, and notes, it helps to generate coherent and well-structured documents that meet the specific requirements of academic publishing.

The skill operates through a two-layer architecture: a static layer that contains reusable content fragments and a dynamic layer that processes user requests. When invoked, the skill first detects the axes of the request—such as the type of manuscript, the specific sections needed, and the target journal—before loading only the relevant content fragments. This targeted approach ensures efficiency and relevance in drafting, allowing users to focus on the specific needs of their writing task without being overwhelmed by unnecessary information.

Ideal for researchers and academic writers aiming to submit to Nature journals, this skill not only streamlines the writing process but also ensures adherence to the specific formatting and structural guidelines required for initial submissions. It is particularly useful for those who are drafting manuscripts from scratch or restructuring existing documents to fit submission standards, thus saving time and reducing the complexity of academic writing.

However, it is important to note that this skill is focused on the initial submission phase of the writing process. It does not cater to revision correspondence or post-decision materials, which are handled by a different skill. Users looking for assistance with manuscript revisions or responses to reviewer comments should consider other tools in conjunction with this skill.

When to use it

Use this skill when you need to draft or restructure sections of a scientific manuscript or prepare initial submission materials.

When not to use it

This skill is not suitable for revising manuscripts or handling post-submission correspondence, as it focuses solely on initial submissions.

What you can build with it

Drafting a Manuscript from Scratch

Use this skill to create a complete manuscript by inputting your research claims and results, guiding you through each section.

Preparing Submission Materials

When ready to submit, this skill helps you compile all necessary documents, including cover letters and title pages, tailored for Nature journals.

Restructuring Existing Manuscripts

If you have a draft that needs reorganization to fit submission standards, this skill can assist in restructuring your manuscript effectively.

How to install Nature Writing

View source

1. Install with the skills CLI

npx skills add yuan1z0825/nature-skills/nature-writing --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by yuan1z0825

Nature-Style Scientific Writing — Router

This skill is split into two layers:

  • A static layer under static/ that holds versioned, reusable content fragments (core stance + workflow, paper-type playbooks, per-section drafting guidance, initial-submission guidance, language-specific rules, per-journal style).
  • A dynamic layer (this file plus manifest.yaml) that detects the request's axes and loads only the fragments needed for the current job.

Do not try to apply the drafting logic from memory or from this router. Always load fragments from disk as described below.

Routing protocol

Follow these five steps every time the skill is invoked.

1. Load the manifest and the core layer

Read manifest.yaml. It declares the axes (task, paper_type, section, language, journal), the allowed values, and the file paths each value maps to.

Also read every file listed under always_load. These hold the default stance, writing workflow, and output format that apply to every drafting job.

2. Detect the axis values for this request

For each axis in the manifest, decide the value using the manifest's detect: hint and the user's input:

  • task — manuscript / submission-package. Use submission-package for first-submission materials, never for revision correspondence.
  • paper_type — research / methods / hypothesis / algorithmic / review. Default: research.
  • section — abstract / intro / related-work / method / experiments / discussion / conclusion / title. May be multiple. Ask the user if it is ambiguous and matters for the draft.
  • language — en or zh-to-en. Detect from the user's notes themselves.
  • journal — nature / nature-family / nat-comms / generic. Default: generic. Use nature only for the flagship journal Nature, nat-comms for Nature Communications, and nature-family for other Nature Portfolio titles or an unspecified Nature-family request.

State the detected axis values in one short line to the user before drafting, so they can correct you cheaply.

3. Load the matching fragments

For each axis value, Read the file mapped in the manifest. Skip the section axis when the task is submission-package or when the user explicitly asks for a free-floating argument paragraph with no section context.

Do not read every fragment in static/. Load only what step 2 selected.

4. Draft using the loaded material

Apply the loaded fragments in this priority order:

  1. Core stance + intake (core/stance.md) — surface missing claim / evidence / boundary before drafting.
  2. Paper-type playbook — argument chain, drafting order.
  3. Section-specific drafting rules and structure.
  4. Task-specific submission rules when task=submission-package.
  5. Journal-specific framing and constraints.
  6. Language-specific sentence and paragraph rules (apply last).

For task=manuscript, run the workflow in core/workflow.md end-to-end. Do not skip planning just because the user asked for prose immediately.

For task=submission-package, follow static/fragments/task/submission-package.md and references/submission-package.md instead. Build the deliverable matrix and readiness audit; do not force manuscript paragraph architecture onto administrative submission materials.

If essential evidence or boundary is missing, write a placeholder and list it under Assumptions or missing inputs: instead of inventing content.

5. Reach for references only when needed

The files under references/ are deep references and the example library, not defaults. Open them on demand per the references.on_demand table in the manifest. Typical triggers:

  • The user asks for a concrete example or template → references/examples/index.md.
  • A section's draft has structural problems that the section fragment alone does not explain → the matching references/<section>.md.
  • The user needs a broad-audience Nature abstract opening or asks about a summary paragraphreferences/nature-summary-paragraph.md.
  • The user asks "does this paragraph flow?" → references/paragraph-flow.md.
  • The user asks for a self-review or rejection-risk audit → references/paper-review.md.
  • The user requests a complete first-submission package, templates, or a submission-readiness audit → references/submission-package.md.
  • The target is the flagship journal Nature and exact submission or formatting requirements matter → ../nature-shared/journal-formats/nature.md.
  • The work involves regulated or specialist research compliance → ../nature-shared/core/research-compliance.md.

Submission boundary

  • nature-writing owns initial submission materials prepared before peer review.
  • nature-response owns revision cover letters, rebuttals, point-by-point responses, marked manuscripts, appeals, and other post-decision correspondence.
  • Route graphical abstracts and TOC graphics to nature-figure; route simulated pre-submission peer review to nature-reviewer.

Why this split

  • The static layer is versioned and reviewable. Adding a new journal style, paper type, or section is one new file plus one manifest line.
  • The dynamic layer keeps each invocation cheap: only the fragments relevant to this draft enter context, instead of the full multi-thousand-line reference set.
  • The router itself is short on purpose. Update fragments, not this file, when adding scope.
  • This structure mirrors nature-polishing so shared content can later be lifted into a nature-shared/ layer used by both skills.

Frequently asked questions about Nature Writing

Similar skills