A growing library of agent skills for peaqOS — on-chain identity and financial rails for autonomous machines. Install any skill to your agent with a single command and let it drive the full onboarding and management flow using the peaqOS CLI.
npx skills add peaqnetwork/peaq-os-skillsAuto-detects your installed agent (Claude Code, Cursor, Windsurf) and installs to the correct skills directory.
| Skill | What it does |
|---|---|
peaqos |
Full machine onboarding — peaqID, Machine NFT, MCR setup, event submission, fleet management |
More skills coming as peaqOS expands.
- Node.js ≥ 18
- Python ≥ 3.10
peaq-os-cliinstalled- For OWS encrypted key storage:
pip install "peaq-os-sdk[ows]"
Each skill in this repo is framework-agnostic by design. AGENT-PROMPT.md contains all the orchestration logic in plain language — adapters for each agent are thin wrappers that wire it into that agent's skill system.
skills/
└── peaqos/
├── AGENT-PROMPT.md # Framework-agnostic orchestration
├── GUIDE.md # Full operator manual
├── knowledge/ # Reference files read at runtime
├── adapters/ # One adapter per supported agent
└── manifest.json # Skill metadata
To test locally after cloning, no npm install is needed — just run the install script directly with node:
git clone https://github.com/peaqnetwork/peaq-os-skills
cd peaq-os-skills
# See available skills
node bin/skills.js list
# Install a skill to your local agent
node bin/skills.js add peaqos --agent claude-codeThen open a Claude Code session in a clean working directory and invoke /peaqos.
To add a new skill, create a folder under skills/ following the structure in skills/peaqos/. At minimum you need AGENT-PROMPT.md, manifest.json, and an adapter for each supported agent under adapters/.
For further information on peaqOS see the docs.