
Proactive Agent
- 237 installs
- Updated February 7, 2026
- veithly/proactive-agent
Helps with ai & agent building tasks.
About
proactive-agent is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.
- proactive-agent
- AI & Agent Building
- AI-coding skill
Proactive Agent by the numbers
- 237 all-time installs (skills.sh)
- +2 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #2,617 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Jul 27, 2026 (Skillselion catalog sync)
npx skills add https://github.com/veithly/proactive-agent --skill proactive-agentAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 237 |
|---|---|
| Last updated | February 7, 2026 |
| Repository | veithly/proactive-agent ↗ |
What it does
Helps with ai & agent building tasks.
Files
Proactive Agent
Self-improving agent with skill management.
Usage
./scripts/upgrade "search capability"
./scripts/learn "how to parse CSV"
./scripts/adapt "new file format"Scripts
| Script | Usage |
|---|---|
scripts/upgrade <skill> | Upgrade a skill |
scripts/learn <task> | Learn new capability |
scripts/adapt <format> | Adapt to new format |
Capabilities
- Automatic skill discovery
- Self-improvement loops
- Context-aware learning
Example
./scripts/learn "web scraping"
# Agent learns and remembers how to scrape web pages#!/bin/bash
# Proactive agent upgrade script
TARGET="${1:-}"
if [ -z "$TARGET" ]; then
echo "Usage: upgrade <skill|capability>"
exit 1
fi
echo "🔄 Upgrading: $TARGET"
echo ""
# Clone or update skill from clawhub
if [ -d "/home/google/clawd/skills/$TARGET" ]; then
echo "📦 Skill already exists, updating..."
cd "/home/google/clawd/skills/$TARGET"
git pull 2>/dev/null || echo "No git repo, manual update needed"
else
echo "📥 Attempting to install from clawhub..."
echo "Note: clawhub not available, manual install required"
fi
echo ""
echo "✅ Upgrade complete"
echo ""
echo "💡 Tip: The agent can now use '$TARGET' for relevant tasks"
Related skills
AI & Agent Buildingagents