CLI Referenceaerostack skill

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_issue

After install, the skill’s tools are available in your active workspace as {skill-slug}__{tool-name}.


List installed skills

aerostack skill list

Remove a skill

aerostack skill remove

Launches 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>
FlagDescription
--nameDisplay name for the skill
--functionFunction ID backing this skill
aerostack skill publish --name "GitHub Issues" --function abc-123

Skills are tied to your active workspace. Use aerostack workspace use <slug> to switch workspaces before installing.