Clawdbot skills for agentic coding workflows - ACFS stack, cloud CLIs, and dev tools
npx skills add https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill sshقم بتثبيت هذه المهارة باستخدام واجهة سطر الأوامر (CLI) وابدأ في استخدام سير عمل SKILL.md في مساحة عملك.
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" | bash
This installs SECURITY.md into your Clawdbot config with cognitive defenses that:
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:
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 -- --all
Or pick skills interactively:
curl -fsSL "https://raw.githubusercontent.com/Dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations/main/install.sh?v=$(date +%s)" | bash
The installer will:
~/clawd/skills or ~/.clawdbot/skills)--all to install everything)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
cp -r skills/gcloud ~/.clawdbot/skills/
cp -r skills/ntm ~/.clawdbot/skills/
# ... etc
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 }
}
}
}
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.sh
Or install individual tools:
cargo install ntm or build from sourcecargo install bv or build from sourcecargo install cass or build from sourcecargo install cm or build from sourcecargo install slb or build from sourcecargo install dcg or build from source (Claude Code hook)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...
skills/<name>/SKILL.mdname and descriptionMIT License (with OpenAI/Anthropic Rider) — see LICENSE for details.
Built for the Agentic Coding Flywheel workflow.