A curated collection of Clawdbot skills for professional agentic coding workflows. Includes skills for the Agentic Coding Flywheel Setup (ACFS) toolkit, workflow methodologies, and popular cloud/dev infrastructure CLIs.
Important: If you're exposing Clawdbot to external inputs (WhatsApp, Telegram, Discord, email, web), you should install the ACIP (Advanced Cognitive Inoculation Prompt) security layer.
Clawdbot has extensive access to messaging platforms, files, shell commands, and web browsing, making it a high-value target for prompt injection attacks. Someone could send you a message designed to trick Clawdbot into revealing secrets or executing malicious commands.
curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/acip/main/integrations/clawdbot/install.sh" | bashThis installs SECURITY.md into your Clawdbot config with cognitive defenses that:
- Establish trust boundaries between owner commands and external data
- Protect system prompts, configs, and credentials from disclosure
- Require confirmation before sending sensitive messages
- Recognize attack patterns (false authority claims, urgency tactics, encoding tricks)
See the ACIP Clawdbot Integration for details.
Skills are markdown files that teach Clawdbot (a multi-surface AI assistant by Peter Steinberger) how to use command-line tools. Each skill contains:
- Tool description and purpose
- Command syntax and examples
- Best practices and common workflows
When you enable a skill, Clawdbot can intelligently use that tool to accomplish tasks across WhatsApp, Telegram, iMessage, web, and voice interfaces.
Tools from the Agentic Coding Flywheel Setup for professional multi-agent development:
| Skill | Description | Use Case |
|---|---|---|
| ntm | Named Tmux Manager - orchestrate Claude Code, Codex, and Gemini in tiled tmux panes | "Start a 3-agent session for the API refactor" |
| agent-mail | MCP Agent Mail - coordination layer with mailboxes and file reservations | "Check if any files are reserved for auth module" |
| bv | Beads Viewer - graph-aware triage engine with 9 metrics (PageRank, betweenness, etc.) | "Show me the task graph for current sprint" |
| cass | Coding Agent Session Search - unified history from all AI coding agents | "Search my history for auth implementations" |
| cm | CASS Memory System - procedural memory with confidence decay | "What patterns did we learn from the refactor?" |
| slb | Simultaneous Launch Button - two-person rule for dangerous commands | "Run the migration with peer review" |
| dcg | Destructive Command Guard - Claude Code hook that blocks dangerous commands | "Block rm -rf and git push --force" |
| ru | Repo Updater - sync dozens of GitHub repos with one command | "Update all my repos in parallel" |
Skills that encode proven workflows and prompts for multi-agent development:
| Skill | Description | Use Case |
|---|---|---|
| planning-workflow | 85%+ time on planning methodology with exact prompts | "How should I plan this feature?" |
| beads-workflow | Converting detailed plans into beads task structure | "Turn this plan into trackable tasks" |
| agent-swarm-workflow | Multi-agent implementation workflow with marching orders | "How do I coordinate 5 agents on this?" |
| agent-fungibility | Philosophy of interchangeable generalist agents | "Should I specialize my agents?" |
| ui-ux-polish | Iterative Stripe-level UI polish with exact prompt | "Make this look world-class" |
| de-slopify | Remove AI writing artifacts from documentation | "Clean up the AI slop in this README" |
| tanstack-integration | Strategic TanStack library adoption (avoid man-with-hammer) | "Should I use TanStack Query here?" |
| Skill | Description | Use Case |
|---|---|---|
| flywheel-discord | Security rules for Discord community assistant | "Respond to Discord without leaking secrets" |
| Skill | Description | Use Case |
|---|---|---|
| gcloud | Google Cloud Platform - Compute, Cloud Run, GKE, Storage, BigQuery, etc. | "Deploy to Cloud Run in us-central1" |
| wrangler | Cloudflare Workers, KV, R2, D1, Pages | "Deploy the worker and tail logs" |
| vercel | Vercel deployments, domains, env vars | "Deploy to production" |
| supabase | Supabase DB, migrations, Edge Functions, storage | "Run migrations and generate types" |
| Skill | Description | Use Case |
|---|---|---|
| claude-chrome | Claude in Chrome - control your authenticated browser, automate workflows, fill forms, extract data | "Open Gmail and draft replies to unread emails" |
| Skill | Description | Use Case |
|---|---|---|
| giil | Get Image [from] Internet Link - download full-resolution images from iCloud, Dropbox, Google Photos, Google Drive share links | "Download this screenshot: https://share.icloud.com/..." |
| Skill | Description | Use Case |
|---|---|---|
| csctf | Chat Shared Conversation To File - convert ChatGPT, Gemini, Grok, and Claude share links to clean Markdown + HTML transcripts | "Save this conversation: https://chatgpt.com/share/..." |
| Skill | Description | Use Case |
|---|---|---|
| github | GitHub CLI - repos, issues, PRs, Actions, releases | "Create a PR from this branch" |
| ssh | SSH patterns, tunnels, keys, rsync | "SSH to prod and check logs" |
| cursor | Cursor AI editor CLI | "Open src/auth in Cursor" |
| ghostty | Ghostty terminal emulator control | "Create a new split pane" |
| wezterm | WezTerm terminal multiplexer | "Send command to pane 3" |
Install all skills instantly:
curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/main/install.sh?v=$(date +%s)" | bash -s -- --allOr pick skills interactively:
curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/main/install.sh?v=$(date +%s)" | bashThe installer will:
- Auto-detect your Clawdbot skills directory (
~/clawd/skillsor~/.clawdbot/skills) - Show a categorized menu to pick specific skills (or
--allto install everything) - Generate the config snippet for your
clawdbot.json
# Install all skills
curl ... | bash -s -- --all
# Install to custom directory
curl ... | bash -s -- --dest ~/my-skills
# List available skills
curl ... | bash -s -- --list
# Uninstall all Agent Flywheel skills
curl ... | bash -s -- --uninstall
# Show help
curl ... | bash -s -- --help# Clone to your skills directory
git clone https://github.com/Dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations.git ~/clawdbot-skills
# Run the installer
cd ~/clawdbot-skills && ./install.sh --all- Copy desired skill folders to your Clawdbot skills directory:
cp -r skills/gcloud ~/.clawdbot/skills/
cp -r skills/ntm ~/.clawdbot/skills/
# ... etc- Enable in your
clawdbot.json:
{
"skills": {
"entries": {
"ntm": { "enabled": true },
"agent-mail": { "enabled": true },
"bv": { "enabled": true },
"cass": { "enabled": true },
"cm": { "enabled": true },
"slb": { "enabled": true },
"dcg": { "enabled": true },
"ru": { "enabled": true },
"planning-workflow": { "enabled": true },
"beads-workflow": { "enabled": true },
"agent-swarm-workflow": { "enabled": true },
"agent-fungibility": { "enabled": true },
"ui-ux-polish": { "enabled": true },
"de-slopify": { "enabled": true },
"tanstack-integration": { "enabled": true },
"flywheel-discord": { "enabled": true },
"gcloud": { "enabled": true },
"wrangler": { "enabled": true },
"vercel": { "enabled": true },
"supabase": { "enabled": true },
"github": { "enabled": true },
"ssh": { "enabled": true },
"cursor": { "enabled": true },
"ghostty": { "enabled": true },
"wezterm": { "enabled": true }
}
}
}- Restart Clawdbot gateway.
Each skill requires its corresponding CLI to be installed:
Install via ACFS:
# Clone and run the setup
git clone https://github.com/Dicklesworthstone/agentic_coding_flywheel_setup.git
cd agentic_coding_flywheel_setup
./acfs.shOr install individual tools:
- ntm:
cargo install ntmor build from source - bv:
cargo install bvor build from source - cass:
cargo install cassor build from source - cm:
cargo install cmor build from source - slb:
cargo install slbor build from source - dcg:
cargo install dcgor build from source (Claude Code hook) - ru: Bash script (see repo)
- agent-mail: Python MCP server (see repo)
The workflow methodology skills (planning-workflow, beads-workflow, agent-swarm-workflow, agent-fungibility, ui-ux-polish, de-slopify, tanstack-integration) are pure knowledge and don't require any external tools. They encode proven prompts and workflows.
# Google Cloud
brew install google-cloud-sdk
# Cloudflare
npm install -g wrangler
# Vercel
npm install -g vercel
# Supabase
brew install supabase/tap/supabase# GitHub CLI
brew install gh
# Cursor (install app, then CLI is at /usr/local/bin/cursor)
# Ghostty (install app, CLI at /Applications/Ghostty.app/Contents/MacOS/ghostty)
# WezTerm (install app, CLI at /Applications/WezTerm.app/Contents/MacOS/wezterm)Once skills are installed and enabled, you can interact naturally:
"Deploy the frontend to Vercel"
"Check the CI status on my latest PR"
"Start a multi-agent session for the auth refactor"
"Search my coding history for database migration patterns"
"What rules do we have for error handling?"
"SSH to prod and check the logs"
clawdbot agent --message "Deploy the latest to Cloud Run"
clawdbot agent --message "Create a PR for this branch"
clawdbot agent --message "Start 2 Claude agents for the API project"Each skill is a markdown file with YAML frontmatter:
---
name: my-tool
description: "Brief description of what the tool does"
---
# My Tool Skill
Explanation of the tool and how to use it.
## Common Commands
\`\`\`bash
my-tool command --flag value
\`\`\`
## Advanced Usage
More examples...- Frontmatter: Name and description for Clawdbot's skill index
- Overview: What the tool does and when to use it
- Commands: Copy-paste ready examples with explanations
- Workflows: Common multi-step patterns
- Create
skills/<name>/SKILL.md - Include frontmatter with
nameanddescription - Document common commands with examples
- Add to the table in this README
- Submit a PR
- Add missing commands or flags
- Improve descriptions and examples
- Add workflow patterns
- Fix errors or outdated syntax
- Clawdbot - The AI assistant that uses these skills
- ACIP - Cognitive inoculation for prompt injection defense
- ACFS - Bootstrap for AI dev environments
- MCP Agent Mail - Agent coordination server
- Named Tmux Manager - Multi-agent tmux orchestration
- CASS - Agent session search
- CASS Memory - Procedural memory for agents
- Beads Viewer - Graph-aware task triage
- DCG - Block dangerous commands
- Repo Updater - Sync multiple repos
MIT License (with OpenAI/Anthropic Rider) — see LICENSE for details.
Built for the Agentic Coding Flywheel workflow.