Convert any llms.txt documentation into installable agent skills.
Generated skills are saved to hk-vk/skills.
apps/web: Next.js web app (txtskills.hari.works)packages/cli:txtskillsCLI for conversion and skill managementpackages/ui: shared UI components
The app exposes three usage modes, matching the UI nav:
- Convert (Web) →
https://txtskills.hari.works/ - CLI →
https://txtskills.hari.works/cli - Agent Skill →
https://txtskills.hari.works/agent-skill
Visit txtskills.hari.works and use the Convert flow:
- Paste a docs URL (or paste raw content)
- Generate a publishable skill
- Copy install command instantly
See packages/cli/README.md for the complete command reference.
Use @latest when you want the newest published CLI release:
# Start the interactive CLI
npx txtskills@latest
# Install one skill from the registry
npx txtskills@latest add <skill-name>
# Convert docs URL -> skill
npx txtskills@latest convert docs.example.com
# Convert and auto-install
npx txtskills@latest convert docs.example.com --install
# Search and list
npx txtskills@latest search react
npx txtskills@latest list
# Remove installed skills
npx txtskills@latest remove <skill-name>For agent workflows that only need a CLI-native experience:
- Install the conversion workflow skill with the latest installer:
npx skills@latest add hk-vk/txtskills --skill txtskills-llms-to-agent-skills- Use that skill in your coding agent to discover
llms.txtand generate an agent skill.
The CLI supports these commands:
add– install a skilllist– browse available registry skillssearch– find skills by name (alias:find)convert– convert docs URL/llms.txtinto a publishable skillremove– remove installed skills (alias:rm)
Run without arguments to open an interactive prompt:
npx txtskills@latestNo terminal setup required.
- Website: https://txtskills.hari.works
- Skills browser: https://txtskills.hari.works/skills
- Skills registry: https://github.com/hk-vk/skills
- llms.txt standard: https://llmstxt.org/
- Agent Skills format: https://agentskills.io
