Markdown
Ingest Markdown and plain text filesFrom its SKILL.md
npx -y skills add axoviq-ai/synthadoc --skill markdownAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its file declares
Copied from the file, not written here
The file declares its own license as AGPL-3.0-or-later. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
0.9 KB, 134 tokens by cl100k_base, as published. Nobody here has run it
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
.mdor.txt - User intent contains:
markdown,text file,notes
What ships with it: 2 files
567 B alongside SKILL.md, 2 of them executable
scripts/
- __init__.pyruns0 B
- main.pyruns567 B