aerostack skill
Manage skills — atomic, single-purpose tools that LLMs can call. Skills are installed into your active workspace and namespaced to avoid conflicts.
Install a skill
aerostack skill install <username/slug># Install a skill from the marketplace
aerostack skill install johndoe/github-skill
# Installed tools are namespaced as: github-skill__create_issueAfter install, the skill’s tools are available in your active workspace as {skill-slug}__{tool-name}.
List installed skills
aerostack skill listRemove a skill
aerostack skill removeLaunches an interactive prompt to select which skill to remove from the active workspace.
Publish a skill
aerostack skill publish --name "My Skill" --function <function-id>| Flag | Description |
|---|---|
--name | Display name for the skill |
--function | Function ID backing this skill |
aerostack skill publish --name "GitHub Issues" --function abc-123Skills are tied to your active workspace. Use aerostack workspace use <slug> to switch workspaces before installing.