export

export is a skill for Claude Code from yha9806/academic-writing-toolkit. It costs 31 tokens per session (774 once invoked), scanned A, original, MIT.

A document-export workflow that turns thesis chapters and reading notes written in Markdown into Word documents and packages them in a ZIP file. Markdown is plain text with simple formatting marks.

In plain words
What is it for?
Use it to export chapters, reading notes, or both, with optional English-only filtering, after checking the available conversion tools.
Why use it?
It removes the repeated manual work of converting and collecting files for supervisors or examiners. It can also filter exported notes or chapters by language.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is python3 .claude/skills/audit/scripts/audit-claim-positioning.py --base-dir chapters --bib references.bib --json.

Good fit Use it to export chapters, reading notes, or both, with optional English-only filtering, after checking the available conversion tools.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/yha9806/academic-writing-toolkit
agentmods
npx agentmods add skills/yha9806/academic-writing-toolkit/export

Made for: Claude Code.

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 export

README.md
[![agentmods](https://agentmods.dev/badge/skills/yha9806/academic-writing-toolkit/export.svg)](https://agentmods.dev/skills/yha9806/academic-writing-toolkit/export)
Your own site
<a href="https://agentmods.dev/skills/yha9806/academic-writing-toolkit/export"><img src="https://agentmods.dev/badge/skills/yha9806/academic-writing-toolkit/export.svg" alt="Measured on agentmods" height="20"></a>
Per session 31 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 774 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.00031 $0.00774
Opus 5 $0.00015 $0.00387
Sonnet 5 $0.00006 $0.00155
Haiku 4.5 $0.00003 $0.00077

Measured today against content hash de6ed2c5ed56, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

export 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 today.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/convert_to_docx.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.

.claude/skills/export/SKILL.md · 79 lines

How it starts

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

/export — Document Export Skill

Purpose

Convert thesis chapters and reading notes from Markdown to Word (.docx) format and package them into a ZIP archive for submission to supervisors or examiners. This skill is user-invoked only and will not be triggered automatically.

Trigger Words

This skill activates on: /export. It is never invoked automatically by the model.

Parameters

  • $ARGUMENTS[0] -- scope: chapters | notes | all (default: all)
  • $ARGUMENTS[1] -- language filter: en-only | all (default: all)

Examples:

  • /export chapters en-only -- export only chapter files, skip files with significant CJK content
  • /export notes all -- export only reading notes, include all languages
  • /export -- export everything, all languages

Workflow

  1. Resolve every source first (Advisory here; Enforced in the AWT app). Before converting, confirm that every author-year citation in chapters/ has a lint-conforming notes file under literature/reading_notes/, and that references.bib (when present) neither contains entries nothing cites nor lacks an entry a chapter cites:

    python3 .claude/skills/audit/scripts/audit-claim-positioning.py --base-dir chapters --bib references.bib --json
    

    Stop and report if anything is unresolved. On this surface nothing blocks you from exporting anyway — say so if you do. In the AWT app the same condition is a typed denial (EXPORT_SOURCES_UNRESOLVED) on the export_docx tool, and the export does not run.

  2. Check dependencies. Verify that pypandoc is installed AND a working pandoc binary is on PATH (the script smoke-probes via pypandoc.get_pandoc_version()). If pypandoc/pandoc are unavailable, fall back to python-docx + markdown. Report which conversion method is being used.

    Run from the project root.

  3. Run the conversion script.

    python3 .claude/skills/export/scripts/convert_to_docx.py \
      --base-dir {project_root} \
      --output-dir {project_root}/final_output \
      --scope {scope} \
      --lang-filter {lang_filter}
    

Read the full file on GitHub · 79 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. today Changed de6ed2c5ed56
  2. yesterday Changed · +15 lines 7d7449b3c625
  3. 8d ago First seen · 64 lines · 31 tokens per session scan A fea0b09ef849

Subscribe to this mod's changes

export is a skill published in the GitHub repository yha9806/academic-writing-toolkit (36 stars, last pushed today), licensed MIT. It adds 31 tokens to every session and 774 once invoked, about $0.0002 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

latex-writer

Write, structure, and compile LaTeX documents for academic purposes. Use this skill whenever the user needs to write a LaTeX document, choose the right document class or packages, format equations, manage bibliographies, create figures and tables in LaTeX, troubleshoot errors, or prepare a journal-ready manuscript.…

muhammad1438/academic-writer-skills · 0 tokens

data-management-plan

Write and review data management plans (DMPs) for research grants and projects. Use this skill whenever the user needs to write a DMP for NIH, NSF, UKRI, EU Horizon, or another funder; understand FAIR data principles; choose a data repository; describe data formats and metadata standards; handle sensitive or…

muhammad1438/academic-writer-skills · 0 tokens

confluence-page

Manage Confluence pages and blog posts - create, read, update, delete, copy, move, and version control. ALWAYS use when user wants to work with page content, create pages, update pages, or manage page versions.

ulises-jeremias/agent-toolkit · 50 tokens

confluence-attachment

Manage file attachments - upload, download, list, and delete attachments. ALWAYS use when user wants to work with files on pages.

ulises-jeremias/agent-toolkit · 31 tokens

docs-generator

WHAT — Generate or update documentation from code: README.md from repo structure, CHANGELOG.md from git history, API reference from OpenAPI/GraphQL schemas, and AGENTS.md starters for new projects.

ulises-jeremias/agent-toolkit · 44 tokens

archivist

Use when a task needs the judgment of an archivist — appraising whether a donated or transferred collection has enduring value, deciding a processing level for a backlog, writing a finding aid, triaging preservation under budget constraints, or resolving a records-restriction question.

wonsukchoi/domain-experts · 57 tokens