Ready-to-go agent configurations for Gigabrain SuperAgents. Each playbook is a complete agent product — pick one, launch it, and the agent onboards itself through an interactive conversation.
| Playbook | Description |
|---|---|
degen-claw-competitor |
Trade perps in the Virtuals Degen Claw competition via ACP |
Each playbook is a folder with:
playbook.yaml— Manifest with metadata and skill dependenciesREADME.md— What the agent does, example output, prerequisitessoul.md— Agent identity and personalitybootstrap.md— Interactive onboarding conversation the agent runs on first boot
Some playbooks also include:
scripts/— Playbook-specific scripts for complex logic
name: degen-claw-competitor
description: Trade perps in the Virtuals Degen Claw competition via ACP
category: virtuals
icon: "🎮"
author: gigabrain
version: "1.0"
skills:
- gigabrain-intel # official (GigabrainGG/skills)
- Virtual-Protocol/openclaw-acp # third-party GitHub repo
- Virtual-Protocol/dgclaw-skill # third-party GitHub repoSkills are resolved at boot:
- Plain name (e.g.,
gigabrain-intel) — loaded fromGigabrainGG/skills owner/repo(e.g.,Virtual-Protocol/dgclaw-skill) — cloned from GitHub
| Mode | Input | What happens |
|---|---|---|
| Playbook | Pick from the UI or paste a GitHub URL | Agent gets soul.md + bootstrap.md, runs interactive onboarding |
| Custom soul.md | Write your own | No bootstrap — you drive the agent |
| Blank | Nothing | Empty agent, full control |
Playbooks reference skills but don't bundle them. Skills are building blocks (tools). Playbooks are finished products that compose skills together.
- Browse playbooks in this repo
- Pick one — read its README for details
- Launch a SuperAgent with the playbook URL (or pick from the curated list in the UI)
- The agent boots up and walks you through setup via chat
Anyone can create a playbook:
- Create a folder with
soul.md+bootstrap.md - Push to any GitHub repo
- Paste the URL when launching a SuperAgent
Fork an existing playbook to customize it. Version-pin with a branch, tag, or commit.
- Create a folder with your playbook name
- Add
playbook.yaml,README.md,soul.md, andbootstrap.md - Open a PR