Openakita install-hub-agent
Download and install an Agent from the OpenAkita Platform Agent 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-hub-agent" ~/.claude/skills/openakita-openakita-install-hub-agent && rm -rf "$T"
manifest:
skills/system/install-hub-agent/SKILL.mdsource content
install-hub-agent
Download and install an Agent from the OpenAkita Platform Agent Store to the local system.
When to Use
- User wants to install a specific Agent from the hub
- User says "安装这个 Agent" after browsing search results
- User provides an Agent ID to install
Workflow
- (Optional) Call
first to find the Agentsearch_hub_agents - (Optional) Call
to preview Agent detailsget_hub_agent_detail - Call
with theinstall_hub_agentagent_id - The system will:
- Download the
package from the platform.akita-agent - Extract and install bundled skills (version-aware, skips if same/newer exists locally)
- Fetch required external skills from their original GitHub repos
- Register the Agent profile locally
- Auto-reload skills so the Agent is immediately usable
- Download the
Tools
install_hub_agent
| Parameter | Required | Description |
|---|---|---|
| Yes | The platform Agent ID (from search results) |
| No | Force overwrite if local ID conflict (default: false) |
get_hub_agent_detail
| Parameter | Required | Description |
|---|---|---|
| Yes | The platform Agent ID to inspect |
Important Notes
- Installed Agents appear in the local Agent list immediately
- Bundled skills go to
, external skills go toskills/custom/skills/community/ - Skills are version-deduplicated: if a newer version already exists locally, it is kept
- Each installed skill gets a
tracking its source and version.openakita-origin.json - The Agent's
field records where it came fromhub_source
Fallback
If the platform is unavailable, the user can still:
- Import Agents from
files using.akita-agentimport_agent - Export local Agents using
export_agent