hiveloom capability
Skills are markdown documents (with frontmatter) that extend an agent’s
behaviour. capability attaches them to a specific agent and manages the
binding.
Synopsis
hiveloom capability [GLOBAL FLAGS] <COMMAND>Global flags
| Flag | Default | Description |
|---|---|---|
--tenant <TENANT> | default | Tenant slug. |
--endpoint <URL> | — | API endpoint. |
--token <TOKEN> | — | Bearer token. |
--json | — | JSON output. |
Subcommands
| Subcommand | Purpose |
|---|---|
add | Attach a skill file to an agent. |
list | List capabilities attached to an agent. |
show | Show one capability’s metadata + body. |
edit | Edit a capability in $EDITOR. |
remove | Detach a capability from an agent. |
Examples
Attach a markdown skill file:
hiveloom capability add \
--agent pirate \
--file ./skills/pirate-voice.mdList attached skills:
hiveloom capability list --agent pirateInspect one:
hiveloom capability show cap_abc123 --agent pirateEdit live (bumps the agent’s version on save):
hiveloom capability edit cap_abc123 --agent pirateDetach without deleting the source file:
hiveloom capability remove cap_abc123 --agent pirateSkill file format
See Skills reference for frontmatter fields and the on-disk layout. Three worked examples (persona, tool-calling, retrieval-style knowledge injection) are at Skill examples.