Installing Skills
Install skills locally for offline access or let the MCP server load them on demand.
Install a Skill
Use the aster install command:
aster install scripting-tiktok-videosSkills are installed into the detected agent's own skills directory. Installs are project-scoped by default; add --global to write to your home directory instead.
| Agent | Project | --global |
|---|---|---|
| Claude Code | ./.claude/skills/ | ~/.claude/skills/ |
| Codex CLI | ./.agents/skills/ | ~/.agents/skills/ |
Codex reads skills from .agents/skills — not .codex/skills, which it never scans. The .codex/ directory holds Codex configuration only, as config.toml (TOML, never JSON).
Choose Your Agent
aster install writes skill files into the right location for 35+ agent tools. (Deploying a whole agent definition with aster deploy is a different command and is verified on Claude Code and the OpenAI Codex CLI only.)
aster install scripting-tiktok-videos --agent cursor# Install for Cursoraster install scripting-tiktok-videos --agents cursor,windsurf,claude-code# Multiple agentsaster install scripting-tiktok-videos --all-detected# All installed agentsRun aster install --list-agents to see all 35+ supported agents and which are detected on your system.
Install from Different Sources
Install skills from the Asterism registry, GitHub, or other sources:
aster install scripting-tiktok-videos# Asterism registryaster install github:anthropics/claude-code-skills# Direct from GitHubaster install skills.sh:name# From skills.shGitHub skills are security-scanned before installation. Use --scan to see the security report first, or --force to bypass the minimum score requirement.
Specify a Version
Install a specific version using the @ syntax:
aster install scripting-tiktok-videos@2.0.0aster install scripting-tiktok-videos@^2.0.0aster install scripting-tiktok-videos@latestList Installed Skills
See all locally installed skills:
aster listAdd --json for machine-readable output.
Update Skills
Update a specific skill to the latest version:
aster install scripting-tiktok-videos@latestOr reinstall to get the latest version matching your version constraint.
Uninstall Skills
Remove a skill from your local installation:
aster uninstall scripting-tiktok-videosView Skill Details
Get detailed information about a skill before installing:
aster info scripting-tiktok-videosThis shows the skill's description, version, author, security score, capabilities, and download count.
Local vs. On-Demand Loading
You have two options for using skills:
Local Installation
- + Works offline
- + Faster loading
- + Version pinning
- - Manual updates
- - Uses disk space
MCP On-Demand
- + Always up to date
- + No disk usage
- + Discover new skills
- - Requires internet
- - Slightly slower
Many users combine both approaches: install frequently-used skills locally and use the MCP server for discovery and occasional needs.
Security Considerations
Before installing a skill, review:
- Security score — Higher is better (80+ is excellent)
- Capabilities — What permissions does it need?
- Author — Is the publisher trusted?
- Downloads — Popular skills are often more vetted
Important: While all skills are security-scanned, automated scanning cannot catch everything. Review skill source code for sensitive operations. See our Terms of Service for details.
Audit Installed Skills
Run a security audit on your installed skills:
aster auditThis scans all installed skills and reports any security concerns.