Agent skill · AI & Agents

evolution

This skill enables makepad-skills to self-improve continuously during development.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill evolution --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/evolution/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Makepad Skills Evolution This skill enables makepad-skills to self-improve continuously during development. ## When to Use - You are maintaining `makepad-skills` and want the skill library to improve itself during development. - You need the workflow for deciding when a new pattern should become a skill update or hook-driven evolution. - You are working on self-correction, self-validation, or version adaptation for the skill set. ## Quick Navigation | Topic | Description | |-------|-------------| | Collaboration Guidelines | **Contributing to makepad-skills** | | [Hooks Setup](#hooks-based-auto-triggering) | Auto-trigger evolution with hooks | | [When to Evolve](#when-to-evolve) | Triggers and classification | | [Evolution Process](#evolution-process) | Step-by-step guide | | [Self-Correction](#self-correction) | Auto-fix skill errors | | [Self-Validation](#self-validation) | Verify skill accuracy | | [Version Adaptation](#version-adaptation) | Multi-branch support | --- ## Hooks-Based Auto-Triggering For reliable automatic triggering, use Claude Code hooks. Install with `--with-hooks`: ```bash # Install makepad-skills with hooks enabled tmpdir="$(mktemp -d)" trap 'rm -rf "$tmpdi

What's inside
Steps it walks through
  1. When to Use
  2. Quick Navigation
  3. Hooks-Based Auto-Triggering
  4. What Hooks Do
  5. Skill Routing and Bundling
  6. Context Detection
  7. Skill Dependencies
  8. Example
  9. When to Evolve
  10. Evolution Process
  11. Step 1: Identify Knowledge Worth Capturing
  12. Step 2: Classify the Knowledge
  13. Step 3: Format the Contribution
  14. Step 4: Mark Evolution (NOT Version)
Commands it runs
Install makepad-skills with hooks enabled
trap 'rm -rf "$tmpdir"' EXIT
curl -fsSLo "$tmpdir/makepad-skills-install.sh" https://raw.githubusercontent.com/ZhangHanDong/makepad-skills/main/install.sh
cat "$tmpdir/makepad-skills-install.sh"  # review the full installer before executing
bash "$tmpdir/makepad-skills-install.sh" --with-hooks
Create branch for your contribution
git checkout -b evolution/add-loading-pattern
Commit your changes
git add robius-widget-patterns/_base/my-pattern.md
git commit -m "evolution: add loading state pattern from my-app"
More from agentic-awesome-skills
All skills →
About this skill
What does the evolution skill do?

This skill enables makepad-skills to self-improve continuously during development.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill evolution --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going