mcpbeat

Markdown

axoviq-ai/markdown

Ingest Markdown and plain text files

365 tokens
context cost
the whole folder, loaded on every use
3
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
856
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/axoviq-ai/synthadoc --skill markdown

The instruction itself

4 sections, as written by the author

Markdown Skill

Reads a Markdown or plain text file and returns its content verbatim.

Setup

No external dependencies — uses only the Python standard library.

Standalone usage

import asyncio
from synthadoc.skills.markdown.scripts.main import MarkdownSkill

skill = MarkdownSkill()

async def main():
    result = await skill.extract("/path/to/notes.md")
    print(result.text)      # file contents verbatim

asyncio.run(main())

When this skill is used

  • Source path ends with .md or .txt
  • User intent contains: markdown, text file, notes

How to use it

Copy the folder

Take axoviq-ai/markdown from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.