Leaderboard/Skill Creation/SkillForge
Last commit on July 29, 2026·Created on December 30, 2025

tripleyak/SkillForge

An evidence-driven pipeline for creating, validating, and maintaining agent skills.
Combined rank
#351
across all skills
In Skill Creation
#14
category rank
Stars
896
+0.7% in last 7d
Forks
92
0.0% in last 7d
Watchers
13
0.0% in last 7d
Traction scoreGitHub stars can be faked, so popularity alone can be misleading. Traction Score looks for broader signs of recent attention, adoption, and active maintenance.
TL;DR

SkillForge provides a structured framework for AI agent builders to develop and audit skills. It focuses on an evidence-driven approach where a skill is considered complete only when an agent demonstrably performs better with it than without it.

The system assists in the full lifecycle of skill management, from initial creation and testing to ecosystem health checks. It helps developers identify duplicate skills, resolve trigger collisions, and remove stale entries to maintain a clean operational environment.

WHO IT'S FOR
AI agent / automation builders
creating and validating evidence-driven agent skills
Platform / DevEx teams
maintaining agent skill ecosystem health
AI engineering leads
auditing and benchmarking agent skill quality
Claude Code / Codex power users
extending agent capabilities with custom skills
Repository contents

2 skill files

Compatible AgentsThe repository documents support for these agents. The skills may also work with other agents that can load SKILL.md files, but they may need some setup or small changes.

Use this skill collection

Follow the documented setup, then try a first task.

I’m using

Manual Claude Code installation

Installs: Installs the SkillForge skill bundle for Claude Code, with an optional /skillforge command and optional interactive advisor configuration. · Claude Code

Before you start
  • Claude Code
  • Python 3.8+
  • git
  1. In a terminal, clone the SkillForge repository into the documented temporary location.

    git clone https://github.com/tripleyak/SkillForge.git /tmp/skillforge
  2. In a terminal, copy the cloned repository into Claude Code's skill directory.

    cp -r /tmp/skillforge ~/.claude/skills/skillforge
  3. In a terminal, remove the repository-only files listed by the author from the installed skill copy.

    cd ~/.claude/skills/skillforge && rm -rf README.md LICENSE CONTEXT.md docs .git .gitignore .skillignore index.html assets/images scripts/tests SKILLFORGE_AUDIT.md
  4. Optional: in a terminal, install the documented Claude Code /skillforge command.

    cp /tmp/skillforge/commands/skillforge.md ~/.claude/commands/skillforge.md   # optional /skillforge command
  5. Optional: after installing the skill, run the interactive advisor and hooks configurator in a terminal; its choices are opt-in.

    python3 ~/.claude/skills/skillforge/scripts/install_skillforge.py
scripts/install_skillforge.py · Checked Sep 18, 2026SKILL.md · Checked Sep 18, 2026README.md · Checked Sep 18, 2026

Give it something to do.

Suggested first task

Triage a skill-related request

Uses skillforge

  • Replace <request> with the skill-related request you want assessed.
Use the skillforge skill to triage this skill-related request: "<request>". Refresh the skill index if needed, classify the result as a strong, moderate, or weak match, and recommend only the next action—use, improve, create, compose, or clarify. Do not create or modify a skill yet.
SKILL.md · Checked Sep 18, 2026
Suggested first task

Check the sample validator fixture

Uses sample-skill

  • A SkillForge repository checkout containing scripts/tests/fixtures/sample-skill and its validator scripts.

Check the repository for this skill’s setup.

Use the sample-skill skill to validate the fixture at scripts/tests/fixtures/sample-skill. Report whether the validator's error list is empty, whether user-invocable remains a boolean, and whether allowed-tools parses as a three-item list. Do not modify any files.