agent_flywheel_clawdbot_skills_and_integrations
💡 摘要
一个为智能体编码工作流、云基础设施和开发工具精心策划的 Clawdbot 技能集合。
🎯 适合人群
🤖 AI 吐槽: “这个集合如此全面,可能都需要一个专门的技能来管理所有其他技能的安装。”
这些技能授予 Clawdbot 对 shell 命令、云基础设施和消息平台的广泛访问权限,为提示注入创造了巨大的攻击面。README 正确地强调了这一点,并推荐 ACIP 安全层作为主要缓解措施,以建立信任边界并检测攻击模式。
Agent Flywheel Clawdbot Skills & Integrations
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.
Security: ACIP Integration
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.
Quick ACIP Install
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:
- 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.
What Are Clawdbot Skills?
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.
Skills Included
Dicklesworthstone Stack (Agentic Coding Tools)
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" |
Workflow Methodologies
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?" |
Discord Integration
| Skill | Description | Use Case | |-------|-------------|----------| | flywheel-discord | Security rules for Discord community assistant | "Respond to Discord without leaking secrets" |
Cloud & Infrastructure
| 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" |
Browser Automation
| 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" |
Media & Image Tools
| 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/..." |
Documentation & Export
| 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/..." |
Development Tools
| 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" |
Installation
One-Line Install (Recommended)
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:
- 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
Installer Options
# 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
Git Clone Install
# 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
Manual Install
- 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.
Prerequisites
Each skill requires its corresponding CLI to be installed:
Dicklesworthstone Stack
Install via ACFS:
undefined
优点
- 涵盖大量专业工作流程的广泛技能集合。
- 清晰的安装和集成说明。
- 强调安全性,集成了 ACIP。
缺点
- 严重依赖外部 CLI 和 Dicklesworthstone 技术栈。
- 对初学者来说可能过于复杂。
- 技能之间可能存在重叠或冗余。
相关技能
免责声明:本内容来源于 GitHub 开源项目,仅供展示和评分分析使用。
版权归原作者所有 Dicklesworthstone.
