smithery.ai

tome-guide

How to use tome - the AI agent skill manager

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,155 B
  • docs SUMMARY.md 62 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 1 installs

SKILL.md

Tome - 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.

Quick Reference

Installing Skills

# 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

After Installing

When you install a skill that has setup requirements (like npm packages or environment variables), tome will:

  1. Detect requirements automatically from the skill content
  2. Display them after installation
  3. Provide a doctor command to verify setup

Example output:

✓ Installed: some-skill (skill)

⚠ Detected setup requirements:
  📦 bun: some-package (line 34)
  🔑 env: API_KEY (line 12)

Run: tome doctor some-skill

Checking Setup Status

# Check all artifacts with requirements
tome doctor

# Check a specific artifact
tome doctor skill-name

The doctor command will show:

  • ✓ for satisfied requirements
  • ✗ for missing requirements with install instructions

Listing Installed Skills

# List all installed artifacts
tome list

# Skills needing setup show [needs setup] badge

Other Commands

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

When to Use Tome

Use tome when the user wants to:

  • Install a skill, command, or prompt from GitHub
  • Check what skills are installed
  • Verify setup requirements are met
  • Search for available skills
  • Update installed skills

Example Workflow

# 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 ✓