Documentation Index
Fetch the complete documentation index at: https://docs.gofastskill.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- The
fastskillbinary on yourPATH(see Installation: Homebrew on macOS/Linux, Scoop on Windows, or release archives) OPENAI_API_KEYwhen you use embedding search orreindex
Five-minute setup (CLI)
Install the CLI
Follow Installation, then confirm:
Search & verify
You should see JSON results for installed skills. If empty, run
fastskill install, then fastskill reindex, and search again.Use-case quick recipes
-
Install skills from different sources
- Public registry ID:
fastskill add pptx@1.0.0 - Local folder (editable):
fastskill add ./skills/my-skill -e --group dev - Git repo with branch:
fastskill add https://github.com/org/skill.git --branch main - Private Git marketplace:
- Public registry ID:
-
Add standard-compliant skills (SKILL.md only)
FastSkill will:
- Extract the skill ID from SKILL.md (
nameormetadata.id) - Extract version from SKILL.md (
metadata.versionorversion, defaulting to1.0.0) - Display a warning suggesting
fastskill initto addskill-project.toml
- Extract the skill ID from SKILL.md (
-
Package skills
Troubleshooting
- No skills found: ensure
skill-project.tomlexists at project root and rerunfastskill install. - Search returns nothing: run
fastskill reindexafter adding or installing skills. - Binary not on PATH: reinstall or move the binary to a directory in PATH (e.g.,
~/.local/bin).