smithery.ai

skillforge

Scaffold a new reusable Skill (SKILL.md + optional scripts/references/assets). Use when asked to create a new skill, when a task would benefit from a reusable procedural guide, or when you notice repeated workflow friction.

First seen Mar 22, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code codex

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,946 B
  • docs SUMMARY.md 241 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 3 installs

SKILL.md

SkillForge

Create well-formed Skills quickly and consistently.

Workflow

  1. Restate the spec

- What problem does the skill solve? - Who/what will use it (Codex, Claude Code, humans)? - What inputs does it take and what outputs does it produce? - What is explicitly out of scope?

  1. Pick the skill type

- operational: narrowly-scoped, repeatable procedure (preferred default). - meta: orchestration / governance / decision-making. - composed: "manager" skills that chain other skills together.

  1. Name the skill

- kebab-case, short, verb-led if possible. - One responsibility per skill.

  1. Create the skill folder

- Recommended (project skills): skills/<type>/<name>/ - Optional (kit skills): forgeloop/skills/<type>/<name>/ only when you are changing the kit itself - Required: SKILL.md - Optional: scripts/, references/, assets/

  1. Write SKILL.md

- Frontmatter: name + description only. - The description is the trigger surface: include what it does + when to use it. - Body: concise steps + crisp examples; link large details into references/.

  1. Sync skills into your agents

- After adding/updating skills, run: - ./forgeloop/bin/sync-skills.sh (Claude Code mirror + optional Codex install)

Minimal SKILL.md skeleton

---
name: your-skill-name
description: "What it does. Use when … (include triggers)."
---

# Your Skill Name

## Inputs
- …

## Outputs
- …

## Steps
1. …

## Examples
- …

Guardrails

  • Prefer small, reversible changes.
  • Do not "over-forge": only create a new skill when it will be reused or it meaningfully reduces future context.