skillett pull
skillett pull <integration> [--path <directory>]Description
Section titled “Description”Downloads all skill files (SKILL.md + endpoint docs) for an integration and writes them to your agent’s skill directory. This enables offline discovery — your agent can read the docs without calling the API.
Options
Section titled “Options”| Flag | Description | Default |
|---|---|---|
--path <dir> | Custom output directory | Platform-detected skill path |
Default paths
Section titled “Default paths”| Platform | Path |
|---|---|
| Claude Code | .claude/skills/skillett-<integration>/ |
| Cursor | .cursor/rules/skillett-<integration>/ |
| Windsurf | .windsurf/rules/skillett-<integration>/ |
| Generic | .skillett/skills/<integration>/ |
API call
Section titled “API call”GET /v1/:slug/download
Returns all file paths and content for the integration’s skill docs.
Examples
Section titled “Examples”$ skillett pull github{ "slug": "github", "files": 62, "path": ".claude/skills/skillett-github/" }$ skillett pull github --path ./docs/github/{ "slug": "github", "files": 62, "path": "./docs/github/" }Exit codes
Section titled “Exit codes”0— Successfully downloaded1— Integration not found2— Network or server error