
Radicle Autonomy
- 1 repo stars
- Updated August 4, 2026
- deanh/rad-skill
Helps with ai & agent building tasks.
About
radicle-autonomy is a Claude Code skill for ai & agent building. It helps developers move faster with AI-assisted coding.
- radicle-autonomy
- AI & Agent Building
- AI-coding skill
Radicle Autonomy by the numbers
- Data as of Aug 5, 2026 (Skillselion catalog sync)
/plugin marketplace add deanh/rad-skill/plugin install radicle-autonomy@rad-skillAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Last updated | August 4, 2026 |
| Repository | deanh/rad-skill ↗ |
What it does
Helps with ai & agent building tasks.
README.md
Radicle Skill
A Claude Code plugin marketplace for working with Radicle — a peer-to-peer code collaboration protocol.
Looking for pi? See rad-pi for the pi package.
Plugins
Three composable plugins — install what you need:
| Plugin | Description | Always-loaded |
|---|---|---|
| radicle | Radicle CLI support — patches, issues, node operations, sync | ~4 KB |
| radicle-extras | Plan and Context COBs — task workflows, import/sync, session observations | ~5 KB |
| radicle-autonomy | Multi-agent orchestration — dispatch tasks to parallel worktree workers | ~2 KB |
radicle (core)
Core Radicle knowledge and CLI routing. Covers rad init, rad clone, patches, issues, node management, sync, and remotes. Includes a session-start hook that detects Radicle repos.
radicle-extras
Plan COBs (me.hdh.plan) and Context COBs (me.hdh.context) with full task integration. Import Radicle issues as Claude Code tasks, sync completions back, and capture session observations for future agents.
Commands: /rad-import, /rad-sync, /rad-status, /rad-context
Requires: rad-plan and/or rad-context CLIs (features gracefully degrade without them)
radicle-autonomy
Multi-agent worktree dispatch. The plan-manager identifies ready tasks and the worker agent executes them in isolated git worktrees — one commit, one Context COB per task.
Commands: /rad-dispatch, /rad-issue
Agents: plan-manager, worker
Requirements
- Radicle installed and configured (
rad auth) - Radicle node running for network operations (
rad node start) - Optional:
rad-planCLI for Plan COB support - Optional:
rad-contextCLI for Context COB support
Installation
Add the marketplace to your settings file (~/.claude/settings.json for global, .claude/settings.json for project):
{
"extraKnownMarketplaces": {
"rad-skill": {
"source": {
"source": "git",
"url": "https://seed.radicle.garden/zvBj4kByGeQSrSy2c4H7fyK42cS8.git"
}
}
}
}
Then enable the plugins you need:
{
"enabledPlugins": {
"radicle@rad-skill": true
}
}
Core only — basic Radicle CLI support:
"enabledPlugins": { "radicle@rad-skill": true }
Core + extras — task workflows and session observations:
"enabledPlugins": { "radicle@rad-skill": true, "radicle-extras@rad-skill": true }
Full stack — add multi-agent orchestration:
"enabledPlugins": { "radicle@rad-skill": true, "radicle-extras@rad-skill": true, "radicle-autonomy@rad-skill": true }
Multi-Agent Worktree Dispatch
Multiple agents work in parallel git worktrees, using COBs as the shared coordination layer. COBs live in ~/.radicle/storage/ and are visible from all worktrees instantly — code is isolated per worktree, metadata flows freely.
- Import and plan:
/rad-import <issue-id>creates tasks, optionally saves as a Plan COB - Dispatch:
/rad-dispatch <plan-id>identifies ready tasks and provides worker launch instructions - Workers: Launch
claude --worktreesessions per task — each worker claims a task, implements, produces a commit + Context COB - Iterate: Re-run
/rad-dispatchto see context feedback and the next batch of ready tasks - Complete: When all tasks pass,
/rad-synccloses the plan and issue
Task-Issue Mapping
Issues are feature-level ("Implement auth"), tasks are work items ("Create middleware", "Write tests"). One issue becomes multiple tasks, each sized for a single session.
Sync uses conservative completion — an issue closes only when 100% of linked tasks are done.
Installing COB CLIs
rad-plan
rad clone rad:z4L8L9ctRYn2bcPuUT4GRz7sggG1v
cd radicle-plan-cob
cargo install --path .
rad-plan --version
rad-context
rad clone rad:z2qBBbhVCfMiFEWN55oXKTPmKkrwY
cd radicle-context-cob
cargo install --path .
rad-context --version