skill-forge

SkillCloud & infra

Use when creating new Rune skills, editing existing skills, or verifying skill quality before deployment. Applies TDD discipline to skill authoring — test before write, verify before ship.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the skill-forge skill

What this skill tells your AI

The instructions your AI receives, as published by rune-kit/rune in skills/skill-forge/SKILL.md and read by ahel’s review.

Purpose

The skill that builds skills. Applies Test-Driven Development to skill authoring: write a pressure test first, watch agents fail without the skill, write the skill to fix those failures, then close loopholes until bulletproof. Ensures every Rune skill is battle-tested before it enters the mesh.

Triggers

  • /rune skill-forge — manual invocation to create or edit a skill
  • Auto-trigger: when user says "create a skill", "new skill", "add skill to rune"
  • Auto-trigger: when editing any skills/*/SKILL.md file

Calls (outbound)

  • scout (L3): scan existing skills for patterns and naming conventions
  • plan (L2): structure complex skills with multiple phases
  • hallucination-guard (L3): verify referenced skills/tools actually exist
  • verification (L3): validate SKILL.md format compliance
  • journal (L3): record skill creation decisions in ADR

Called By (inbound)

  • cook (L1): when the feature being built IS a new skill
  • scaffold (L1): when scaffolded project includes custom skills

References

  • references/claude-skill-reference.md — Claude Code skill system: frontmatter fields, variables, shell injection, invocation control matrix, skill type patterns (task/research/knowledge/dynamic), file structure, and quality checklist. Load when creating or editing any skill.

Workflow

Phase 1 — DISCOVER

Before writing anything, understand the landscape:

  1. Scan existing skills via scout — is this already covered?
  2. Check for overlap — will this duplicate or conflict with existing skills?
  3. Identify layer — L1 (orchestrator), L2 (workflow hub), L3 (utility)?
  4. Identify mesh connections — what calls this? What does this call?

Phase 2 — RED (Baseline Test)

Write the test BEFORE writing the skill.

Create a pressure scenario that exposes the problem the skill solves:

## Pressure Scenario: [skill-name]

### Setup
[Describe the situation an agent faces]

### Pressures (combine 2-3)
- Time pressure: "This is urgent, just do it"
- Sunk cost: "I already wrote 200 lines, can't restart"
- Complexity: "Too many moving parts to follow process"
- Authority: "Senior dev says skip testing"
- Exhaustion: "We're 50 tool calls deep"

### Expected Failure (without skill)
[What the agent will probably do wrong]

### Success Criteria (with skill)
[What the agent should do instead]

Run the scenario with a subagent WITHOUT the skill. Document:

  • Exact behavior — what did the agent do?
  • Rationalizations — verbatim excuses for skipping discipline
  • Failure point — where exactly did it go wrong?

Phase 3 — GREEN (Write Minimal Skill)

Write the SKILL.md addressing ONLY the failures observed in Phase 2.

Follow docs/SKILL-TEMPLATE.md format. Required sections:

SectionRequiredPurpose
FrontmatterYESName, description, metadata
PurposeYESOne paragraph, ecosystem role
TriggersYESWhen to invoke
Calls / Called ByYESMesh connections (control flow)
Data FlowYESFeeds Into / Fed By / Feedback Loops (data flow)
WorkflowYESStep-by-step execution
Output FormatYESStructured, parseable output
ConstraintsYES3-7 MUST/MUST NOT rules
Sharp EdgesYESKnown failure modes
Self-ValidationYESDomain-specific QA checklist (per-skill, not centralized)
Done WhenYESVerifiable completion criteria
Cost ProfileYESToken estimate
Mesh GatesL1/L2 onlyProgression guards
SKILL.md Anatomy — WHY vs HOW Split

A skill file answers WHY and WHEN — not HOW. Code examples, syntax references, and implementation patterns belong in separate files:

skills/[name]/
├── SKILL.md          ← WHY: purpose, triggers, constraints, sharp edges (~150-300 lines)
├── references/       ← HOW: code patterns, syntax tables, API examples
│   ├── patterns.md   ← Implementation patterns with code blocks
│   └── gotchas.md    ← Language/framework-specific pitfalls
└── scripts/          ← WHAT: deterministic operations (shell, node)

Rules:

  1. SKILL.md MUST NOT contain code blocks longer than 10 lines — move to references/
  2. One excellent inline example (≤10 lines) is OK for clarity — more than that is a smell
  3. Format templates (Output Format section) are NOT code — they stay in SKILL.md
  4. Pressure test scenarios (Phase 2) are NOT code — they stay in SKILL.md
  5. If a skill has >3 code blocks → create references/ and extract them

Why this matters: Code blocks in SKILL.md inflate context tokens on EVERY invocation. References are loaded only when needed. A 500-line SKILL.md with 200 lines of code examples should be a 300-line SKILL.md + a 200-line references file.

Frontmatter Rules
---
name: kebab-case-max-64-chars    # letters, numbers, hyphens only
description: Use when [specific triggers]. [Symptoms that signal this skill applies].
metadata:
  layer: L1|L2|L3
  model: haiku|sonnet|opus       # haiku=scan, sonnet=code, opus=architecture
  group: [see template]
---

Description rules (CSO Discipline):

  • MUST start with "Use when..."
  • MUST describe triggering conditions, NOT workflow
  • MUST be third person
  • MUST NOT summarize what the skill does internally
  • AI reads description → decides whether to invoke → if description contains workflow summary, AI skips reading the full SKILL.md content (it thinks it already knows)
  • Test: if you can execute the skill from the description alone, the description leaks too much

Bad: "Analyzes code quality through 6-step process: scan files, check patterns, run linters, compare metrics, generate report, suggest fixes" Good: "Use when code changes need quality review before commit. Symptoms: PR ready, refactor complete, pre-release check."

# BAD: Summarizes workflow — agent reads description, skips full content
description: TDD workflow that writes tests first, then code, then refactors

# GOOD: Only triggers — agent must read full content to know workflow
description: Use when implementing any feature or bugfix, before writing code

Why this matters: When description summarizes the workflow, agents take the shortcut — they follow the description and skip the full SKILL.md. Tested and confirmed.

Writing Constraints

Every constraint MUST block a specific failure mode observed in Phase 2:

# BAD: Generic rule
1. MUST write good code

# GOOD: Blocks specific failure with consequence
1. MUST run tests after each fix — batch-and-pray causes cascading regressions
Anti-Rationalization Table

Capture every excuse from Phase 2 baseline testing:

| Excuse | Reality |
|--------|---------|
| "[verbatim excuse from test]" | [why it's wrong + what to do instead] |

Phase 4 — VERIFY (Green Check)

Run the SAME pressure scenario from Phase 2, now WITH the skill loaded.

Check:

  • Does the agent follow the skill's workflow?
  • Are all constraints respected under pressure?
  • Does the output match the defined format?

Phase 5 — REFACTOR (Close Loopholes)

Run additional pressure scenarios with varied pressures. For each new failure:

  1. Identify the rationalization
  2. Add it to the anti-rationalization table
  3. Add explicit constraint or sharp edge
  4. Re-run verification

Repeat until no new failures emerge in 2 consecutive test runs.

Pressure Types for Test Scenarios

Best tests combine 3+ pressures simultaneously:

PressureExample Scenario
Time"Emergency deployment, deadline in 30 min"
Sunk cost"Already wrote 200 lines, can't restart"
Authority"Senior dev says skip testing"
Economic"Customer churning, ship now or lose $50k MRR"
Exhaustion"50 tool calls deep, context filling up"
Social"Looking dogmatic by insisting on process"
Pragmatic"Being practical vs being pedantic"
Scenario Quality Requirements
  1. Concrete A/B/C options — force explicit choice (no "I'd ask the user" escape hatch)
  2. Real constraints — specific times, actual consequences, named files
  3. Real file paths/tmp/payment-system not "a project"
  4. "Make agent ACT" — "What do you do?" not "What should you do?"
  5. No easy outs — every option has a cost
Meta-Testing (When GREEN Isn't Working)

If the agent keeps failing even WITH the skill loaded, ask: "How could that skill have been written differently to make the correct option crystal clear?"

Three possible responses:

  1. "Skill was clear, I chose to ignore it" → foundational principle needed (stronger HARD-GATE)
  2. "Skill should have said X explicitly" → add that exact phrasing verbatim
  3. "I didn't see section Y" → reorganize for discoverability (move up, add header)
Bulletproof Criteria

A skill is bulletproof when:

  • Agent chooses correct option under maximum pressure (3+ pressures combined)
  • Agent CITES skill sections as justification for its choice
  • Agent ACKNOWLEDGES the temptation but follows the rule anyway
Persuasion Principles for Skill Language

Research (Meincke et al., 2025, 28,000 conversations) shows 33% → 72% compliance with these techniques:

PrincipleApplicationUse For
Authority"YOU MUST", imperative languageEliminates decision fatigue, safety-critical rules
CommitmentExplicit announcements + tracked choicesCreates accountability trail
ScarcityTime-bound requirements, "before proceeding"Triggers immediate action
Social Proof"Every time", universal statementsDocuments what prevents failures
Unity"We're building quality" languageShared identity, quality goals

Prohibited in skills:

  • Liking ("Great job following the process!") → creates sycophancy
  • Reciprocity ("I helped you, now follow the rules") → feels manipulative

Ethical test: Would this serve the user's genuine interests if they fully understood the technique?

Phase 5.25 — SCRIPT CONTRACT (skills with helper scripts only)

If the skill bundles executable scripts in its scripts/ directory, those scripts MUST follow the Rune script output contract. This is a testable contract — orchestrators (cook, team, marketing) rely on it for piping and retry logic.

The Three-Mode Contract

Every helper script supports three output modes:

ModeStdoutStderrFile Artifacts
defaultOne artifact path per lineDiagnostics + warningsArtifacts in declared out-dir
--jsonStructured JSON summaryDiagnostics (unchanged)Artifacts (unchanged)
--debugDefault stdout (paths)Verbose trace + diagnosticsDefault + JSONL redacted trace at <out-dir>/<slug>.jsonl

Why: default-mode stdout-as-paths is the Unix way. Downstream skills pipe directly without log-parsing. --json is opt-in for callers that need metadata.

Required Flags

Every helper script MUST accept at least these flags:

--help              Print usage + exit 0
--version           Print version + exit 0
--json              Structured JSON on stdout
--debug             Write JSONL redacted trace
--dry-run           Report plan, make no changes, exit 0
--smoke             Pre-flight check (validate deps, exit 0 if healthy)
--out-dir <path>    Override default artifact directory

And SHOULD accept when applicable:

--prompt-file <path>  Read long text input from file (avoids shell-quoting hell on Windows)
--confirm             Skip confirmation gate for expensive/destructive ops
--timeout-ms <n>      Operation timeout (with semantic exit codes below)
Semantic Exit Codes

Adopt the standard Rune exit-code vocabulary:

CodeMeaningOrchestrator Response
0SuccessAccept + chain to next
1Execution failed (retryable)Log + retry with alternate config
2Usage error (bug)Abort — don't retry
3Data-integrity errorHalt — don't retry
4Timeout with partial resultsAccept partial + continue
124Timeout with zero resultsRetry with longer timeout or alternate provider

Codes 5-63 are skill-specific. Document every code used in references/<skill>/exit-codes.md.

Why 4 vs 124 matters: Standard Unix collapses "timeout-with-2-of-3-images" and "timeout-with-0-images" into 124. They are fundamentally different outcomes. Split them.

Default Artifact Directory Resolution

Resolve --out-dir in this fallback order:

  1. --out-dir <path> explicit flag
  2. <SKILL>_OUT_DIR env var (skill-specific)
  3. OPENCLAW_OUTPUT_DIR (OpenClaw platform convention)
  4. OPENCLAW_AGENT_DIR/artifacts/<skill> (OpenClaw default)
  5. OPENCLAW_STATE_DIR/artifacts/<skill> (OpenClaw state fallback)
  6. ./.rune/<skill>/ (project-local default)

Why: OpenClaw is one of Rune's adapter targets. Scripts that honor this convention work across adapters without modification.

Sensitive-Data Redaction

--debug trace MUST redact sensitive fields before write:

  • Regex: /authorization|bearer|token|api[_-]?key|secret|cookie|session[_-]?id|chatgpt[_-]?account/i (key names)
  • Any value exceeding 500 chars truncates to <first-500>...
  • Never log env var VALUES — only presence check
Contract Test

Before shipping a helper script, verify:

# Contract smoke test:
node scripts/<script>.mjs --help          # exit 0
node scripts/<script>.mjs --version       # exit 0, prints version only
node scripts/<script>.mjs --smoke         # exit 0 or 1, human-readable stderr
node scripts/<script>.mjs --dry-run ...   # exit 0, no side effects
node scripts/<script>.mjs ... --json      # stdout is parseable JSON
node scripts/<script>.mjs ... | head -1   # stdout default mode = path

Reference implementations:

  • @rune-pro/media/scripts/codex_imagen_bridge.mjs — full 9-tier binary detection + contract
  • @rune-pro/media/scripts/provider_probe.mjs--smoke convention exemplar
  • @rune-pro/media/scripts/image_optimizer.py — Python contract implementation

Reference docs:

  • references/image-generator/script-contract.md (pack-level contract)
  • references/image-generator/exit-codes.md (exit-code vocabulary)
  • references/image-generator/binary-detection.md (9-tier lookup)

Phase 5.5 — SECURITY MODEL

Every skill that touches external systems, user data, or destructive operations MUST define an explicit Security Model section. This is a contract — not aspirational, but testable.

Add to SKILL.md after Sharp Edges:

## Security Model

### Trust Boundaries
- [What this skill reads] — e.g., "Reads .env files, user source code, git history"
- [What this skill writes] — e.g., "Writes to .rune/ only, never modifies source code"
- [What this skill executes] — e.g., "Runs npm test, never runs arbitrary shell commands"

### This Skill Will NEVER
- [Explicit denial 1] — e.g., "Execute user-provided strings as shell commands"
- [Explicit denial 2] — e.g., "Read or log credential files (.env, secrets.json)"
- [Explicit denial 3] — e.g., "Send data to external endpoints"

### Threat Surface
| Threat | Mitigated By |
|--------|-------------|
| Prompt injection via user input | Input validated before processing |
| Credential exposure in output | Secrets pattern detection before emit |
| Destructive operation on wrong target | Confirmation gate before delete/overwrite |

When to require Security Model:

  • Skill uses Bash tool → REQUIRED (can execute arbitrary commands)
  • Skill reads .env or credentials → REQUIRED
  • Skill writes/deletes files outside .rune/ → REQUIRED
  • Skill calls external APIs or MCP tools → REQUIRED
  • Skill is read-only analysis (review, audit, scout) → OPTIONAL but recommended

Eval integration: Phase 7 evals for skills with Security Model MUST include:

  • E05: Attempt to make skill execute unintended command
  • E06: Attempt to make skill expose credentials in output
  • E07: Attempt to make skill write outside its declared boundary

If Security Model is required but missing → Phase 7 EVAL HARD-GATE blocks ship.

Phase 6 — INTEGRATE

Wire the skill into the mesh:

  1. Update docs/ARCHITECTURE.md — add to correct layer/group table
  2. Update CLAUDE.md — increment skill count, add to layer list
  3. Add mesh connections — update SKILL.md of skills that should call/be called by this one
  4. Map data flow — identify which skills consume this skill's output (Feeds Into) and which skills' outputs this skill needs (Fed By). Look for feedback loops where two skills refine each other's work
  5. Write Self-Validation — 3-5 domain-specific checks unique to this skill's output. Ask: "What quality issues can ONLY this skill catch?"
  6. Verify no conflicts — new skill's output format compatible with consumers?

Phase 6.25 — EXAMPLES (output-format skills only)

Output-format skills (skills that produce visual or text artifacts a human will see) SHOULD ship a literal example of the output alongside SKILL.md. The example is a target the agent can copy from — not a description it must interpret.

Applies to:

  • design, asset-creator, slides, marketing, video-creator, doc-processor
  • Any pack skill whose primary output is a rendered artifact (HTML page, slide deck, social card, video script, report PDF)

Does not apply to:

  • Process / orchestration skills (cook, plan, review) — their output is structural, not rendered
  • Diagnostic skills (debug, audit, perf) — their output is findings, not artifacts

Convention:

skills/<name>/
├── SKILL.md
├── references/
│   └── ...
└── examples/
    ├── README.md           # short index: which example fits which scenario
    ├── <scenario-1>.html   # or .md / .json / .svg per skill domain
    ├── <scenario-2>.html
    └── ...

Why a literal example beats a description:

  • An agent can copy structure, density, and rhythm from a real file. It cannot copy them from "make it modern."
  • A reviewer can diff agent output against the example to spot drift.
  • Examples are the test corpus for the skill — if a new style emerges, the example shows whether SKILL.md kept up.

Quality bar:

  • Each example MUST render without error in the target environment (browser, Marp, Notion, etc.)
  • Each example MUST use real-looking data, not lorem ipsum (mirrors design Step 2.9 Rule 5)
  • Cover at least 2 scenarios per skill — minimum spread reveals which decisions are baked in vs which are scenario-driven

Soft, not HARD-GATE: Per Rune's no-discipline-heavy-grafts policy, don't enforce as a ship blocker. A new skill without examples ships fine; reviewers may suggest adding them. Existing output-format skills are encouraged (not required) to backfill examples on the next material edit.

Inspiration: Pattern adapted from nexu-io/html-anything (Apache-2.0), where every "surface skill" ships a hand-authored example.html so the agent has a copy target. They make it a ship blocker; we make it a strong recommendation.

Phase 6.5 — EXTENSION AUTHORING (if building an extension, not a skill)

Extensions augment existing skills with optional capabilities. Unlike skills (standalone workflow units) or packs (domain bundles), extensions ADD features to skills that already exist — without modifying the core skill file.

Extension vs Skill vs Pack
ConceptPurposeModifies Core?Self-contained?
SkillStandalone workflow unit (SKILL.md)N/A — IS coreYes
PackDomain bundle of skills (PACK.md)No — bundles existingYes
ExtensionAugments existing skill with new capabilityNo — additive onlyYes — own dir with install/uninstall
Extension Directory Structure
extensions/<extension-name>/
├── EXTENSION.md           # Manifest: what it extends, how, dependencies
├── install.sh             # Unix installer (non-destructive MCP merge)
├── install.ps1            # Windows installer
├── uninstall.sh           # Clean removal
├── uninstall.ps1          # Clean removal (Windows)
├── skills/
│   └── <skill-name>/
│       └── SKILL.md       # New skill added by extension
├── agents/                # Optional subagent definitions
│   └── <agent-name>.md
├── references/            # Domain knowledge loaded by extension skills
│   └── <topic>.md
├── scripts/               # Executable utilities
│   └── <script>.py|.sh
└── docs/
    └── SETUP.md           # Extension-specific configuration guide
EXTENSION.md Manifest
---
name: "<extension-name>"
extends: "<target-skill-or-pack>"
description: "What capability this extension adds"
requires:
  - mcp: "<mcp-server-name>"        # Optional: MCP server dependency
  - skill: "<required-skill-name>"   # Required core skill
install_method: "non-destructive"    # MUST be non-destructive
---
Extension Rules
  1. Non-destructive install — extension MUST NOT modify existing skill files. It adds new files alongside.
  2. Self-contained — removing the extension directory restores the system to its pre-install state.
  3. MCP merge — if the extension adds MCP tools, install script MUST merge into settings.json without overwriting existing entries.
  4. Fallback graceful — if the MCP server or external dependency is unavailable, the extension skill MUST degrade gracefully (report unavailability, don't crash).
  5. Cost awareness — if the extension calls paid APIs, the extension skill MUST warn before expensive operations and track usage.
  6. Pre-flight check — extension skill Step 1 MUST verify dependencies are available before executing.
When to Build an Extension (vs a Skill or Pack)
  • Build an extension when: the capability requires an external API/MCP, is optional, and augments an existing skill
  • Build a skill when: the capability is self-contained and fits a layer in the mesh
  • Build a pack when: you're bundling multiple related skills for a domain

Phase 7 — EVAL (Behavior Tests)

Before shipping, write Eval Scenarios — behavior tests for the SKILL.md itself. These are "unit tests for skill files, not code."

Save evals to skills/<name>/evals.md. Minimum 4 evals per skill:

Eval IDCategoryRequired?
E01Happy path — core workflowYES
E02Edge case — unusual/empty inputYES
E03Adversarial — pressure scenarioYES
E04Jailbreak/injection attemptYES for security-critical skills

Each eval follows the format defined in rune:test → "Skill Behavior Tests" section:

  • Prompt: exact situation the agent faces
  • Expected Reasoning: step-by-step reasoning agent SHOULD follow
  • Must Include: what the output MUST contain or do
  • Must NOT: anti-patterns the output MUST NOT produce

Run each eval with a subagent. An eval FAILS if the agent produces a Must NOT output.

Shortened here. Read the whole file on GitHub.

Signals

GitHub stars
86
Forks
26
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
skill-forge-rune-kit
Source
github.com/rune-kit/rune