md-anything copilot-instructions.md

Contributor instructions for md-anything, a tool that converts inputs such as text, videos, and documents into Markdown. They cover Bun commands for installing, building, linting, testing, and generating PDF or EPUB fixtures.

In plain words
What is it for?
They help run builds and tests, test individual cases, regenerate document fixtures, and diagnose optional local tool support.
Why use it?
They provide the commands and project structure needed to check changes and debug the conversion tool.

Instructions file for GitHub Copilot

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.

agentmods
npx agentmods add instructions/ojspace/md-anything/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/ojspace/md-anything

Made for: GitHub Copilot.

Per session 903 This file is loaded in full into every session.
When invoked 903 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.00903 $0.00903
Opus 5 $0.00451 $0.00451
Sonnet 5 $0.00181 $0.00181
Haiku 4.5 $0.00090 $0.00090

Measured 2d ago against content hash 77b3b751d45f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

md-anything copilot-instructions.md 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 2d ago.

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.

.github/copilot-instructions.md · 82 lines

How it starts

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

Copilot instructions for md-anything

Build, test, and lint commands

Use Bun throughout this repository.

bun install
bun run lint
bun run build

# Full suite
bun test
bun run test

# Contributor-safe required subset
bun run test:required

# Regenerate generated PDF/EPUB fixtures when needed
bun run test:fixtures

# Run a single test file
bun test tests/unit/detect-input.test.ts

# Run one test by name
bun test tests/integration/convert-text.test.ts -t "converts .txt file to markdown"

# Live/network tests
LIVE_TESTS=1 bun test tests/integration/youtube-live.test.ts tests/integration/url-live.test.ts

When debugging optional local tool support, run bun run src/cli.ts doctor.

High-level architecture

  • src/cli.ts and src/mcp.ts are the shipped entry points. They both build a runtime with createRuntimeProviders(DEFAULT_CONFIG) and delegate to shared core logic instead of implementing format-specific behavior themselves.

  • The main conversion path lives in src/core/convert.ts: validate with ConvertRequestSchema, detect the input kind, route with routeInput, normalize quality metadata with finalizeDocument, attach chunk/provenance data, and render Markdown with formatMarkdown.

  • src/providers/* contains one converter per input kind. Providers return a NormalizedDocument; they should not format final Markdown themselves.

  • Runtime capability checks are centralized in src/core/runtime.ts. Optional tools such as tesseract, pdftotext, ebook-convert, unzip, ffmpeg, whisper-cpp, and whisper are detected once and then passed through the runtime so providers can gate behavior consistently.

  • src/core/ingest.ts walks supported files in a folder, converts them through the shared pipeline, and returns counts plus per-document metadata. It does not currently process source manifests or generate graph/index artifacts.

  • src/mcp-support.ts is the MCP policy layer: it restricts local paths to the current workspace root, blocks private URLs by default, and defines structured tool output, resources, and prompts.

Read the full file on GitHub · 82 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. 2d ago First seen · 82 lines · 903 tokens per session scan A 77b3b751d45f

Subscribe to this mod's changes

md-anything copilot-instructions.md is an instructions file published in the GitHub repository ojspace/md-anything (49 stars, last pushed 5mo ago), licensed MIT. It adds 903 tokens to every session, about $0.0045 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.