Openakita install-store-skill
Install a Skill from the OpenAkita Platform Skill Store
install
source · Clone the upstream repo
git clone https://github.com/openakita/openakita
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openakita/openakita "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/system/install-store-skill" ~/.claude/skills/openakita-openakita-install-store-skill && rm -rf "$T"
manifest:
skills/system/install-store-skill/SKILL.mdsource content
install-store-skill
Install a Skill from the OpenAkita Platform Skill Store to the local system.
When to Use
- User wants to install a specific Skill from the store
- User says "安装这个技能" after browsing search results
- User provides a Skill ID to install
Workflow
- (Optional) Call
first to find the Skillsearch_store_skills - (Optional) Call
to preview details, license, ratingsget_store_skill_detail - Call
with theinstall_store_skillskill_id - The system will:
- Fetch the Skill's install URL from the platform
- Clone the Skill from its original GitHub repository
- Auto-reload skills so the Skill is immediately available
Tools
install_store_skill
| Parameter | Required | Description |
|---|---|---|
| Yes | The platform Skill ID (from search results) |
get_store_skill_detail
| Parameter | Required | Description |
|---|---|---|
| Yes | The platform Skill ID to inspect |
submit_skill_repo
| Parameter | Required | Description |
|---|---|---|
| Yes | GitHub repository URL to submit as a new Skill |
Important Notes
- Skills are installed from their original GitHub repository, not redistributed by the platform
- Each skill's open-source license applies — check the license before using in production
- After installation, the Skill is auto-loaded and immediately usable
- If a skill with the same name already exists locally, it will be updated
Fallback
If the platform is unavailable, the user can still:
- Install skills directly from GitHub using
install_skill - Browse and install from skills.sh marketplace via Setup Center
- Manage local skills using
,list_skills
,enable_skilldisable_skill