axoviq-ai/markdown
Ingest Markdown and plain text files
npx skills add https://github.com/axoviq-ai/synthadoc --skill markdown
Reads a Markdown or plain text file and returns its content verbatim.
No external dependencies — uses only the Python standard library.
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())
.md or .txtmarkdown, text file, notesTake axoviq-ai/markdown from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
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.