SkillForge
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SkillForgesave a skill: always use f-strings in Python"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
โจ What is SkillForge?
SkillForge is a Model Context Protocol (MCP) server that gives your AI agent a persistent, evolving skill library. Instead of repeating the same corrections and preferences every session, SkillForge captures them as skills โ structured instructions that the agent loads and follows automatically.
๐ก Think of it as muscle memory for your AI โ it learns your conventions once and applies them forever.
๐ The Feedback Loop
๐ค User gives feedback
โ
โผ
๐ Agent detects improvement signal
โ
โผ
๐ Triage: reuse / improve / create?
โ
โผ
โ๏ธ Draft skill following guide + plan
โ
โผ
๐ก๏ธ Validation gate (reject or pass)
โ
โผ
๐พ Skill saved (auto-backed up)
โ
โผ
โ
Next task uses improved skill๐ Quick Start
๐ฆ Installation
# Install from PyPI (recommended)
pip install skillforge-mcp
# Or with uv
uv pip install skillforge-mcpโก Run the Server
# Run directly
skillforge
# Or run without installing via uvx
uvx skillforge-mcp๐ Connect to Claude Code
Add to your MCP config:
{
"mcpServers": {
"skillforge": {
"command": "uvx",
"args": ["skillforge-mcp"]
}
}
}git clone https://github.com/CatVinci-Studio/skillForge.git
cd skillForge
pip install -e .๐งฉ Architecture
src/skillforge/
โโโ ๐ server.py # MCP server definition & prompts
โโโ ๐จ response.py # Response formatting & feedback monitor
โโโ ๐ก๏ธ validator.py # Hard validation gates for skill quality
โโโ ๐ skill_manager.py # Core CRUD, backup, restore logic
โโโ ๐ง tools/
โ โโโ ๐ discovery.py # list_skills, get_skill
โ โโโ โ๏ธ crud.py # save_skill (with validation), delete_skill
โ โโโ ๐พ backup.py # list_backups, restore_skill
โ โโโ ๐ triage.py # triage_skill_request
โ โโโ ๐ง optimization.py # get_skill_guide, request_skill_optimization
โโโ ๐ guide/
โโโ skill_writing_guide.md # Best practices for skill authoring๐ Runtime Data
SkillForge stores its data in ~/.skillforge/:
Directory | Purpose |
| ๐ Active skill library |
| ๐๏ธ Automatic version history |
๐ Override with
SKILLFORGE_SKILLS_DIRandSKILLFORGE_BACKUP_DIRenvironment variables.
๐ง Available Tools
Tool | Description |
๐ | List all skills โ mandatory first call before any task |
๐ | Load full skill instructions by name |
๐ | Check existing skills before creating/improving โ prevents duplication |
๐ง | Get a structured plan for skill improvement |
๐ | Load the skill writing best practices guide |
โ๏ธ | Create or update a skill โ validates and rejects if quality is insufficient |
๐๏ธ | Remove a skill (two-step confirmation, auto-backup) |
๐ | View version history for a skill |
โช | Roll back to a previous version |
๐ | View the feedback log that drove skill changes |
๐ก๏ธ Quality Gates (v0.2.0)
Unlike prompt-based quality control that depends on LLM compliance, SkillForge enforces quality through hard validation gates in save_skill:
Check | Type | Rule |
๐ Description length | โ Error | Must be โฅ 50 characters |
๐ Body length | โ Error | Must be 3โ500 lines |
๐ Description โ name | โ Error | Description must explain, not repeat the name |
๐ฏ Trigger conditions | โ ๏ธ Warning | Should include "when/whenever/use this skill..." |
๐ฃ๏ธ Rigid language | โ ๏ธ Warning | Prefer reasoning over "YOU MUST ALWAYS" imperatives |
๐ Description too long | โ ๏ธ Warning | Keep under 1000 chars, move details to body |
๐ด Errors block the save โ fix them and retry. ๐ก Warnings allow the save but flag areas for improvement.
๐ Skill Triage
Before creating a new skill, triage_skill_request returns all existing skills so the LLM can decide:
Decision | Condition | Action |
REUSE | Existing skill covers the need | Load it with |
IMPROVE | Existing skill partially covers it | Optimize with |
CREATE | No relevant skill exists | Create via |
๐ Skill Format
Each skill lives in its own directory as a SKILL.md file with YAML frontmatter:
---
name: my-skill
description: >
What this skill does and when to trigger it.
Use this skill whenever the user asks for...
Also activate when...
---
# Skill Instructions
Your markdown instructions here...๐ท๏ธ Frontmatter Fields
Field | Required | Description |
| โ | Identifier ( |
| โ | Trigger conditions โ WHAT it does + WHEN to use it (โฅ 50 chars) |
| โ |
|
| โ |
|
| โ | Tools allowed without per-use approval |
| โ |
|
๐ง How Optimization Works
SkillForge continuously monitors conversations for improvement signals:
Signal | Example | Action |
๐ด Correction | "No, don't mock the database" | Update relevant skill |
๐ก Preference | "Always use snake_case" | Create or update skill |
๐ต Pattern | Same structure used 3+ times | Bundle into new skill |
๐ข Explicit | "Add this to the review skill" | Direct skill edit |
๐ Safety Guarantees
โ Auto-backup before every save and delete
โ One-click restore from any backup timestamp
โ Path traversal protection on all file operations
โ Atomic writes with file locking for optimization logs
โ Hard validation gates โ quality enforced at the tool boundary, not by prompt
๐ Why SkillForge?
Without SkillForge | With SkillForge |
๐ค Repeat the same corrections every session | ๐ง Agent remembers and applies automatically |
๐ Conventions scattered across docs | ๐ฆ Single source of truth per topic |
๐ฒ Inconsistent agent behavior | โ Deterministic, skill-guided responses |
๐ No learning from feedback | ๐ Skills evolve with every interaction |
๐ค Hope the LLM follows quality guidelines | ๐ก๏ธ Hard validation rejects low-quality skills |
๐ฃ๏ธ Roadmap
๐ก๏ธ Hard validation gates for skill quality
๐ Skill triage to prevent duplication
๐ Skill sharing & import from remote repositories
๐ Analytics dashboard for skill usage & effectiveness
๐ Cross-skill dependency management
๐งช Skill testing framework with evaluation harness
๐ช Community skill marketplace
๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
๐ License
This project is licensed under the MIT License โ see the LICENSE file for details.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CatVinci-Studio/skillForge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server