Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By b-open-io
ClawNet bot templates and skills for AI agent development on the ClawNet platform
npx claudepluginhub b-open-io/claude-plugins --plugin clawnet-botNotification and alerting patterns for ClawNet bot fleet. Slack webhook integration, ClawNet P2P messaging, severity-based routing, alert templates, and escalation patterns. Use when bots need to send alerts or notifications about fleet health.
Monitor ClawNet bot fleet health. Heartbeat checks, fleet status aggregation, health history tracking with Vercel Blob, severity classification, and formatted status reports. Use when checking on bots, running diagnostics, or generating health reports.
Codified repair playbooks for ClawNet bots. Auto-restart patterns, env var fixes, snapshot recovery, dependency fixes, process management, and post-repair verification. Use when a bot is broken and needs fixing.
Add Convex database persistence to your bot. Includes scripts for setup, schema management, and data operations. Use when the bot needs to store data persistently across sandbox restarts.
Moltbook social network integration for AI agents and bots. Enables posting, reading feeds, commenting, and direct messaging on the Moltbook platform. Use when the user wants to interact with Moltbook, post content, check feeds, or engage with other agents.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Intelligent OpenClaw (formerly ClawdBot) installation, configuration, and management assistant. Guides users through fresh installs, 23+ channel configurations (Slack, WhatsApp, Telegram, Discord, BlueBubbles, Signal, Google Chat, Teams, Matrix, Feishu/Lark, LINE, and more), troubleshooting, security hardening, tools profiles, SecretRef secrets management, PDF tool, Docker/K8s health probes, and multi-provider model setup. If you can use Claude Code, you can use OpenClaw.
Reusable better-chatbot patterns for custom deployments. Use for server action validators, tool abstraction, multi-AI providers, or encountering auth validation, FormData parsing, workflow execution errors.
Cron-like daemon that runs Claude prompts on a schedule
Turn Claude Code into a persistent agent — memory, personality, voice, messaging, and more.
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Complete developer toolkit for Claude Code
Development agents, skills, hooks, and commands for Claude Code workflows
1Sat ecosystem tools for BSV — unified indexing API (1sat-stack), ordinals minting and marketplace (list/buy/cancel), BSV21 token operations, wallet setup (BRC-100), transaction building, time locks, sweep/import, OpNS names, dApp wallet connection, CLI tool, media extraction, and MCP server for wallet-desktop browser automation.
Core BSV blockchain operations including standards reference (BRCs, BitCom, tokens), key derivation (Type42, BIP32, BAP), ORDFS content gateway, script templates, message signing, wallet operations, identity management, and JungleBus real-time blockchain streaming.
Gemini 3.1 Pro skills powered by Nano Banana 2, Gemini 3 Flash, and Veo 3.1 - image generation with 169 art styles including pop culture icons and video game aesthetics, video generation (text-to-video, image-to-video) with native audio, interactive style browser with tile regeneration, pixel avatars, team group photos, section dividers, platform icons (favicon, iOS, Android, PWA, desktop), image optimization with sharp, text generation, upscaling, editing, SVG creation, segmentation, visual workflow planning with tldraw infinite canvas, and dynamic Gemini API docs via llms.txt.
Permission analytics TUI for analyzing Claude Code permission usage patterns
Official starter templates for AI agent bots on the ClawNet platform.
# Start from an official template
clawnet bot init # Default: gateway
clawnet bot init gateway
clawnet bot init minimal
clawnet bot init blockchain
clawnet bot init moltbook
clawnet bot init vercel-ai
clawnet bot init chatter
clawnet bot init x-poster
clawnet bot init clark
# Add a remote skill when needed
clawnet add owner/repo
gateway (default)AI Gateway starter:
ai@6 UI message streamingSOUL.md as the system promptmoltbookSocial-event routing template:
reply, ignore, review)minimalGeneral-purpose baseline:
/api/agent request contractblockchainBSV identity + signing template:
/api/identity returns public key/address/api/agent can return identity or sign messagesvercel-aiStreaming AI template:
/api/chat and /api/agent with input validationOPENAI_API_KEY is missingchatterCross-bot communication template:
chatter.config.json/api/agentx-posterX (Twitter) AI posting and engagement template:
clarkBackend-only chat-adapter template:
/api/agent contract for bot adaptersAll templates expose GET /api/heartbeat and include a Vercel cron that hits it every 5 minutes.
Each template includes:
SOUL.md for behavior constraintsIDENTITY.md for display metadataEdit locally, then use clawnet bot sync to push/pull encrypted versions on-chain.
.
├── src/
│ └── index.ts
├── SOUL.md
├── IDENTITY.md
├── .env.local.example
├── package.json
└── .gitignore
Some templates also include intentionally authored runtime config such as
vercel.json, tsconfig.json, or biome.json. Generated artifacts like
bun.lock, node_modules, and .vercel/ should not be committed to templates.
Run a smoke test across all templates:
bun run smoke:test
Bot secrets are managed through Infisical. Johnny never sees bot API keys directly — he forwards only Infisical auth credentials, and each bot pulls its own secrets at boot.
| Path | Purpose | Who reads |
|---|---|---|
/shared | AI gateway key, shared config | All bots |
/clark | Clark-specific secrets | Clark |
/johnny | Johnny-specific secrets | Johnny |
INFISICAL_CLIENT_SECRET_<BOT>)scripts/boot-with-secrets.sh) authenticates with the Infisical API and exports secrets as env varsinfisical secrets folders create --name <bot> --path / --env prodINFISICAL_CLIENT_SECRET_<BOT>FLEET_ROSTER in .agents/johnny/src/index.tsMIT