Skip to content
🤖 Consolidated, AI-optimized SKF docs: llms-full.txt. Fetch this plain text file for complete context.

Why Skill Forge?

Skill Forge is the only AI-skills toolchain where every claim your agent reads cites a file, a line, and a commit SHA. Not “sourced from training data.” Not “retrieved from context.” Cited. You can open the upstream repo at the pinned commit and see the function exists — in under a minute. That’s the wedge. This page explains why it matters, how SKF compares to alternatives, and who it’s for.


Your AI agents read your codebase through the lens of whatever happened to be in their training data. When that training data is wrong, stale, or incomplete, your agent invents — function names that don’t exist, parameter types that don’t match, config options removed two versions ago. You catch some of it in review. You ship some of it by accident. Every sprint, your team spends hours untangling code that only compiles in the AI’s imagination.

SKF treats this as a citation problem, not a model problem. If a skill claims cognee.search() takes query_text as its first parameter, SKF points to cognee/api/v1/search/search.py:L26 at commit 3c048aa4 in the upstream repo. That’s the whole pitch: nothing is made up, and everything is falsifiable in 60 seconds.


ApproachWhat it does wellWhere it falls short
Skill scaffolding (npx skills init)Generates a spec-compliant skill fileThe file is empty — you still have to write every instruction by hand
LLM summarizationUnderstands context and intentGenerates plausible-sounding content that may not match the actual API
RAG / context stuffingRetrieves relevant code snippetsReturns fragments without synthesis — no coherent skill output
Manual authoringHigh initial accuracyDrifts as the source code changes, doesn’t scale across dependencies
IDE built-in context (Copilot, Cursor)Convenient, zero setupUses generic training data, not your project’s specific integration patterns
Skill ForgeEvery instruction cites upstream file:line at a pinned commit. Falsifiable in 60 seconds.Coverage depends on which tools you’ve installed (Quick / Forge / Forge+ / Deep tiers).

What “falsifiable in 60 seconds” actually means

Section titled “What “falsifiable in 60 seconds” actually means”

Pick any symbol in any SKF-compiled skill. Three clicks:

  1. Open the skill’s metadata.json — it names the upstream repo and the exact commit SHA.
  2. Open the skill’s provenance-map.json — find your symbol; it lists the file and line.
  3. Visit the upstream repo at that commit and that line. The signature in the skill should match.

If it doesn’t, that’s a bug. Open an issue and SKF republishes the skill with a new commit SHA and a new provenance map. No other AI-skills tool treats disagreement between claim and source as a defect. SKF does.

See the Verifying a Skill page for the full three-step audit on real skills, the test reports that log exactly where coverage falls short, and the scoring formula behind the 80% pass threshold.


Your agent just hallucinated a method that doesn’t exist, again. You want this to stop, and you don’t want to read a 569-line architecture page before running your first command. → Start with Getting Started.

You already use BMAD Method, BMM phases, TEA, or BMB, and you want to know where SKF fits. → Read BMAD Synergy for the phase-by-phase integration playbook.

“AI docs for AI” sounds like the problem pretending to be the solution. You want receipts before you install anything. → Start with Verifying a Skill — the three-step audit on real skills, including the 1% that fails.

You want to ship verified skills alongside your library releases — npx skills publish-ready, drift-detectable, version-pinned. → See Examples → OSS Maintainer Publishing Official Skills.

You’re considering running SKF across a brownfield platform. You need to know about rollback safety, [MANUAL] section preservation, and the health-check feedback loop before committing. → Start with Architecture, then Workflows → Workflow Health Check.


  • You want docs that hand-hold through every happy path with screenshots and emojis. SKF is a citation machine, not a tutorial series.
  • You need perfect coverage of every private implementation detail. SKF extracts public APIs; if you want internals, read the code directly.
  • You don’t have Node.js ≥ 22 and Python ≥ 3.10 installed. SKF is a Node/Python toolchain at its core.
  • You’re looking for something that generates skills from natural-language descriptions alone. SKF compiles from source code and documentation — not prompts.

Everything else is downstream of one question: are the instructions your AI reads provably true? If yes, SKF isn’t adding value. If you can’t be sure, SKF is the tool.