How to use tome - the AI agent skill manager
Tome is a CLI tool for installing and managing skills, commands, and prompts for AI coding agents. Think of it as npm for AI agent knowledge.
# Install from GitHub
tome learn owner/repo
# Install specific branch/tag
tome learn owner/repo@branch
# Install globally (vs project-local)
tome learn owner/repo --global
When you install a skill that has setup requirements (like npm packages or environment variables), tome will:
Example output:
ā Installed: some-skill (skill)
ā Detected setup requirements:
š¦ bun: some-package (line 34)
š env: API_KEY (line 12)
Run: tome doctor some-skill
# Check all artifacts with requirements
tome doctor
# Check a specific artifact
tome doctor skill-name
The doctor command will show:
# List all installed artifacts
tome list
# Skills needing setup show [needs setup] badge
tome search "query" # Find skills on GitHub
tome peek owner/repo # Preview before installing
tome info skill-name # Show skill details
tome remove skill-name # Uninstall a skill
tome sync # Update all installed skills
Use tome when the user wants to:
# User wants to install a plugin
tome learn 0xSero/open-orchestra
# Check what setup is needed
tome doctor open-orchestra
# After user completes setup, verify
tome doctor open-orchestra
# Should show all ā