pip install capaciumpip install git+https://github.com/Capacium/capacium.gitbrew install capacium/tap/capaciumgit clone https://github.com/Capacium/capacium.git
cd capacium
pip install -e .cap --version
cap --helpCreate a directory with a capability.yaml manifest:
mkdir my-skill
cd my-skill# capability.yaml
kind: skill
name: my-skill
version: 1.0.0
description: A simple example skill
author: Your Name
license: Apache-2.0
frameworks:
- opencodeAdd your skill content:
echo "You are a helpful assistant." > prompt.mdcap install my-skill --source .cap list
cap verify my-skillcap package . --output my-skill.tar.gzcap search code-review
cap search --kind skill --registry https://registry.capacium.dev/v1cap install https://github.com/user/my-cap.gitcap install owner/my-cap@1.2.0cap list --kind skillcap remove my-skillcap lock my-skill
cap lock my-skill --updatecap install my-skill --no-lock~/.capacium/
├── cache/ # Central capability cache
│ ├── my-skill/
│ │ ├── 1.0.0/
│ │ └── 1.1.0/
│ └── code-reviewer/
│ └── 1.2.0/
├── active/ # Active installation symlinks
│ ├── my-skill -> ../cache/my-skill/1.0.0
│ └── code-reviewer -> ../cache/code-reviewer/1.2.0
├── packages/ # Storage manager package dirs
│ └── global/
│ └── my-skill/
│ └── 1.0.0/
├── keys/ # Signing keys
│ ├── mykey.key
│ └── mykey.pub
└── registry.db # SQLite registry database
- Read the CLI Reference for all commands
- Learn the Manifest Format for capability packaging
- Explore Signing & Keys for trust and verification
- Run the Marketplace web UI