claude-scientific-writer: Skill for Claude Code

.claude/skills/markitdown/SKILL.md

markitdown is a skill for Claude Code from K-Dense-AI/claude-scientific-writer. It costs 61 tokens per session (2,487 once invoked), scanned A, a copy of markitdown, MIT.

A Microsoft utility that converts documents and selected web addresses into Markdown, a plain-text format with headings and links. It handles formats such as PDF, Office files, HTML, CSV, EPUB, and ZIP archives.

In plain words
What is it for?
Use it for local or uploaded document conversion, batch processing, OCR of scanned material, and feeding extracted text into search or AI workflows.
Why use it?
It gives search systems and language models text they can index and analyze instead of requiring each source format to be handled separately.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is K-Dense-AI/claude-scientific-writer's own configuration. It tells Claude Code how to work on claude-scientific-writer itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything claude-scientific-writer configures →

About the project

Claude Scientific Writer is an AI-assisted research and writing tool that searches literature and produces documents such as scientific papers, reports, posters, grant proposals, and reviews with citations. Researchers and technical writers can use it as a Claude Code plugin, Python package, or command-line tool, with the catalogue entries defining agent workflows for it.

K-Dense-AI/claude-scientific-writer · 2,327 stars · on GitHub · k-dense.ai

Reuse

Borrowing it

Nothing to install: this file belongs to K-Dense-AI/claude-scientific-writer. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/K-Dense-AI/claude-scientific-writer/main/.claude/skills/markitdown/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/K-Dense-AI/claude-scientific-writer

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 markitdown

README.md
[![agentmods](https://agentmods.dev/badge/skills/k-dense-ai/claude-scientific-writer/markitdown/github.svg)](https://agentmods.dev/skills/k-dense-ai/claude-scientific-writer/markitdown)
Your own site
<a href="https://agentmods.dev/skills/k-dense-ai/claude-scientific-writer/markitdown"><img src="https://agentmods.dev/badge/skills/k-dense-ai/claude-scientific-writer/markitdown/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for markitdown

Your own site · 80×15
<a href="https://agentmods.dev/skills/k-dense-ai/claude-scientific-writer/markitdown"><img src="https://agentmods.dev/badge/skills/k-dense-ai/claude-scientific-writer/markitdown.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,487 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.
Origin 89% copy Near-identical to another mod 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.00061 $0.02487
Opus 5 $0.00030 $0.01243
Sonnet 5 $0.00012 $0.00497
Haiku 4.5 $0.00006 $0.00249

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

Security

Grade A, and why

markitdown 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 12d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/batch_convert.py, scripts/convert_literature.py, scripts/inspect_installation.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.

Origin

This is a copy

89% identical to markitdown — 19 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/markitdown/SKILL.md · 265 lines

How it starts

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

MarkItDown

Overview

MarkItDown is Microsoft's lightweight Python utility for turning common documents into structure-preserving Markdown. Its output is designed primarily for indexing, text analysis, search, and LLM ingestion—not high-fidelity visual reproduction.

This skill targets MarkItDown 0.1.6, released May 26, 2026. New code should use result.markdown; result.text_content remains only as a soft-deprecated compatibility alias.

Choose the Right Path

Need Recommended path
Trusted local PDF, Office, HTML, CSV, EPUB, or ZIP Built-in converter with convert_local()
Uploaded bytes or an already-open file convert_stream() with StreamInfo hints
Remote HTTP(S) input Validate and fetch it yourself, then call convert_response()
Scanned PDF or text inside embedded images Official markitdown-ocr vision plugin, Azure Document Intelligence, or Azure Content Understanding
Video, structured fields, or custom multimodal extraction Azure Content Understanding
Local agent integration Official markitdown-mcp server over STDIO or localhost
Bounding boxes, page coordinates, or screenshots Use a layout-aware parser such as LiteParse instead
PDF merge/split/forms/watermarks Use the pdf skill instead

Installation

Create an isolated environment:

uv venv --python 3.12 .venv
source .venv/bin/activate

Install every built-in feature:

uv pip install "markitdown[all]==0.1.6"

Or install only the converters required by the task:

uv pip install "markitdown[pdf,docx,pptx,xlsx]==0.1.6"

Available extras in 0.1.6 are:

  • pptx, docx, xlsx, xls, pdf, and outlook
  • audio-transcription and youtube-transcription
  • az-doc-intel and az-content-understanding
  • all

Verify the installation:

markitdown --version
python scripts/inspect_installation.py

The [all] extra does not install the separate markitdown-ocr plugin or an OpenAI-compatible client.

Read the full file on GitHub · 265 lines

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. 12d ago First seen · 265 lines · 61 tokens per session scan A ca8be4f687a1

Subscribe to this mod's changes

markitdown is a skill published in the GitHub repository K-Dense-AI/claude-scientific-writer (2,327 stars, last pushed 24d ago), licensed MIT. It adds 61 tokens to every session and 2,487 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 89% identical to markitdown, differing in 19 lines, and is treated as a copy.

Related

Other skills, from other repositories

document-ai

Comprehensive patterns for AI-powered document understanding including PDF parsing, OCR, invoice/receipt extraction, table extraction, multimodal RAG with vision models, and structured data output. Use when "document parsing, PDF extraction, OCR, invoice processing, receipt extraction, document understanding…

omer-metin/skills-for-antigravity · 79 tokens

markitdown

Convert heterogeneous documents and selected URIs to Markdown with Microsoft MarkItDown for text analysis, search, and LLM/RAG ingestion. Covers safe local conversion, streams, Office/PDF/data formats, batch workflows, plugins, vision OCR, Azure extraction, and the official MCP server.

K-Dense-AI/scientific-agent-skills · 61 tokens

llamaindex

Data framework for building LLM applications with RAG. Specializes in document ingestion (300+ connectors), indexing, and querying. Features vector indices, query engines, agents, and multi-modal support. Use for document Q&A, chatbots, knowledge retrieval, or building RAG pipelines. Best for data-centric LLM…

davila7/claude-code-templates · 70 tokens

azure-ai

Use for Azure AI: Search, Speech, OpenAI, Document Intelligence. Helps with search, vector/hybrid search, speech-to-text, text-to-speech, transcription, OCR. WHEN: AI Search, query search, vector search, hybrid search, semantic search, speech-to-text, text-to-speech, transcribe, OCR, convert text to speech.

microsoft/skills · 76 tokens

kb-retriever

A retrieval and question-answering assistant for a local folder of documents, including Markdown, text, PDFs, and spreadsheets.

ConardLi/garden-skills · 105 tokens

bailian-kb

A command-line manager for Alibaba Cloud Bailian knowledge bases, which are collections of documents prepared for search and question answering. It handles the stored documents, search services, text chunks, and data-centre files rather than everyday searches.

modelstudioai/cli · 234 tokens