Skills
Install Skill
Install a skill from ClawHub onto an instance.
POST
Installs a skill from ClawHub onto the instance. Under the hood, this runs
npx clawhub install with the given slug. If the skill requires environment variables, you can provide them upfront in the env field — or skip them and configure later via the update config endpoint.
Authentication
Requires an org-level API key or a scoped token with theconfigure permission.
Path Parameters
The ID of the instance.
Body Parameters
The ClawHub slug identifying the skill to install (e.g.
web-search).Optional environment variables required by the skill. Keys are variable names, values are strings.
Response
The name of the installed skill.
Either
"installed" (fully ready) or "installed_missing_env" (installed but needs env vars to function).Raw output from the installation process.
The environment variables that were successfully applied, if any.
A list of environment variable names that the skill still needs, if any.
A human-readable status message.