Skill Generator

Skill Generator is a skill for Claude Code from Razaib-khan/ForgeWeave. It costs 21 tokens per session (697 once invoked), scanned A, original, MIT.

A tool for creating reusable SKILL.md instruction bundles from repeated workflows or research findings. A skill is a set of instructions and supporting files that guides an agent through a recurring job.

In plain words
What is it for?
Use it to define a skill name and source workflow, then produce its instructions, scripts, references, and evaluation files.
Why use it?
It turns a process that has been repeated manually into a documented, reusable workflow. This reduces the need to recreate the same steps and decisions in later sessions.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions OpenCode.

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/razaib-khan/forgeweave/skill-generator
Any agent
npx skills add Razaib-khan/ForgeWeave --skill skill-generator
Clone the repo
git clone --depth 1 https://github.com/Razaib-khan/ForgeWeave

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Skill Generator

README.md
[![agentmods](https://agentmods.dev/badge/skills/razaib-khan/forgeweave/skill-generator.svg)](https://agentmods.dev/skills/razaib-khan/forgeweave/skill-generator)
Your own site
<a href="https://agentmods.dev/skills/razaib-khan/forgeweave/skill-generator"><img src="https://agentmods.dev/badge/skills/razaib-khan/forgeweave/skill-generator.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 697 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00021 $0.00697
Opus 5 $0.00010 $0.00349
Sonnet 5 $0.00004 $0.00139
Haiku 4.5 $0.00002 $0.00070

Measured 6d ago against content hash 4511d57493d8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

Skill Generator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/scaffold_skill.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/forgeweave/templates/claude/.claude/skills/skill-generator/SKILL.md · 92 lines

How it starts

The opening of the file, as written. The whole thing — 92 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skill Generator

Purpose

Analyze execution patterns, research findings, or user workflows and distill them into reusable ForgeWeave skills. Identifies repeatable jobs, extracts the workflow steps, and produces a complete SKILL.md bundle with scripts, references, and evals.

When to Use

  • A workflow has been repeated 2+ times manually
  • Research findings reveal a repeatable process that should be codified
  • An ad-hoc process in a session should become a reusable skill
  • The user says "we should make this a skill"

When Not to Use

  • The workflow is a one-time task — skip
  • The workflow requires no agent judgment (use a regular script)
  • Creating a skill for an existing skill (use the skill-authoring skill instead)

Inputs

Input Type Required Description
source string Yes Description of the repeatable job or path to research output
name string Yes Desired skill name (kebab-case)
workflow_steps array No Existing workflow notes if available

Expected Outputs

Output Description
SKILL.md Complete skill bundle following the 10-section format
scripts/ Deterministic steps extracted from the workflow
evals/ Validation tests for the skill
references/ Supporting documentation

Exact Workflow Steps

  1. Analyze the source workflow or research to identify the repeatable job
  2. Scope: one job per skill, max 3 use cases
  3. Write SKILL.md with all 10 sections in order
  4. Extract deterministic steps into standalone scripts
  5. Create eval tests for happy path and failure modes
  6. Validate: bundle structure, frontmatter, section order, scripts exist

Required Checks

  • Skill covers exactly one repeatable job
  • SKILL.md has all 10 sections in order
  • All referenced scripts exist
  • At least one eval covers the happy path

Failure Modes

Failure Condition Response
Source workflow is too broad Narrow to one repeatable job
No deterministic steps found Skill is fine with SKILL.md only
Validation fails Fix issues and regenerate

Read the full file on GitHub · 92 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 92 lines · 21 tokens per session scan A 4511d57493d8

Subscribe to this mod's changes

Skill Generator is a skill published in the GitHub repository Razaib-khan/ForgeWeave (1 stars, last pushed 2mo ago), licensed MIT. It adds 21 tokens to every session and 697 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

author-skill

Use when authoring a NEW rsc skill or editing an existing one — scoping it to one job, writing the description that decides whether it ever loads, splitting the body into references/, writing its evals, auditing it against the rubric. NOT building a product feature (that is specify) and NOT designing an agent loop…

ericrisco/rsc-harness · 79 tokens

skill-authoring

Creates and structures SKILL.md files for AI coding agents, including YAML frontmatter, trigger phrases, directive instructions, decision trees, code examples, and verification checklists. Use when the user asks to write a new skill, create a skill file, author agent capabilities, generate skill documentation, or…

rohitg00/skillkit · 72 tokens

pr-writing-review

Extract and analyze writing improvements from GitHub PR review comments. Use when asked to show review feedback, style changes, or editorial improvements from a GitHub pull request URL. Handles both explicit suggestions and plain text feedback. Produces structured output comparing original phrasing with reviewer…

evalstate/fast-agent · 64 tokens

session-investigator

Investigate fast-agent session and history files to diagnose issues. Use when a session ended unexpectedly, when debugging tool loops, when correlating sub-agent traces with main sessions, or when analyzing conversation flow and timing. Covers session.json metadata, history JSON format, message structure, tool…

evalstate/fast-agent · 68 tokens

skill-authoring

Author SKILL.md skills: frontmatter, validator limits, structure.

mateaix/mateclaw · 18 tokens

image-gen-tool

Image and 3D model generation tool using NovelAI, Flux, and Meshy for illustrations and 3D output. Use when: generating character art, bust or chibi images, avatars, or running image pipelines.

xuiltul/animaworks · 49 tokens