OpenClaw Skills with High Adoption: Capability Evolver, WACLI, Composio, and More

A post on r/openclaw lists several OpenClaw skills that have gained traction based on install numbers and user feedback. The skills serve distinct purposes, from agent self-improvement to external tool integration.
Key Skills and Their Functions
- Capability Evolver: 35k installs, #1 on ClawHub. It enables an agent to audit itself and gradually rewrite its own behavior over time.
- Self-Improving Agent: 15k installs, 132 stars. It picks up patterns from user interaction and improves its responses specifically for that user. Can be run alongside Capability Evolver as they focus on different aspects.
- WACLI: 16k installs. Provides full WhatsApp access from an agent, allowing it to send messages, pull conversation history, and search threads.
- Composio: A single skill that connects an agent to 860+ apps (e.g., Gmail, Slack, GitHub, Notion, Jira, Linear) through Composio's auth layer, handling OAuth properly so tokens are not stored near the agent.
- GoG: 14k installs. One skill for all of Google Workspace: Gmail, Calendar, Drive, Docs, Sheets, and Contacts, avoiding the need for several separate integrations for the same account.
- Agent-Browser: Gives an agent a real browser to click, fill forms, navigate pages, and extract data from sites that block basic scraping.
- Tavily-Web-Search: A search tool designed for agents, returning results in a format agents can use directly without extra parsing.
- DuckDB: Enables SQL queries over local files (CSV, Parquet, JSON, etc.) without setting up a database.
- AgentZero Bridge: When a task is too long or complex for OpenClaw to handle in one pass, it hands the task off to Agent Zero and brings the result back, with bidirectional communication to keep the user in the loop.
- ArXiv-Watcher: Monitors arXiv for specified topics or authors and surfaces new papers automatically.
- n8n Workflow Skill: Triggers and manages n8n workflows from inside OpenClaw, with credentials staying in n8n.
- Memory-Hygiene: Clears out stale context, contradictions, and outdated preferences from OpenClaw memory to prevent old context from affecting new sessions.
- GitHub: Wraps the GitHub CLI as a skill to manage issues, pull requests, branches, and repo workflows through chat.
- Debug-Pro: Implements a structured debugging methodology into the agent, walking through systematic isolation and resolution steps across languages.
- Test-Runner: Writes and runs tests from a single instruction, handling scaffolding, execution, and result interpretation in one pass across multiple languages.
The post suggests these skills are worth trying based on their adoption metrics and practical applications.
📖 Read the full source: r/openclaw
👀 See Also

Nit: A Git Replacement in Zig Optimized for AI Agent Token Efficiency
Nit is a native Git replacement written in Zig that reduces token usage by 35-87% on common commands like status, diff, log, and show. It achieves this through compact output defaults and direct libgit2 integration, eliminating subprocess overhead.

Sonicker: Voice Cloning Web App Built with Claude Code in 4 Days
Sonicker is a voice cloning web app that requires only 3 seconds of audio input and supports 10 languages. The developer built it solo in 4 days using Claude Code for the entire frontend, API integration, and deployment.

Open Source AI Context Packs for Legal, Compliance, and Finance Questions
A developer used Claude to research and build 32 free, open source context packs that provide specific answers to legal, compliance, and finance questions instead of generic 'consult a lawyer' responses. The packs cover GDPR, contracts, SaaS billing, EU AI Act, and more.

Artificial-life: A 300-line Python reproduction of Computational Life research
A Python implementation reproducing the Computational Life paper, where 240x135 grid of Brainfuck-like programs interact and evolve self-replicating code through random pairing and instruction tape concatenation.