Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
francyjglisboa avatar

Agent Skill Creator

  • 567 installs
  • 2.1k repo stars
  • Updated July 22, 2026
  • francyjglisboa/agent-skill-creator

agent-skill-creator is a generator skill that produces new reusable agent skills following the Skillselion SKILL.md standard for developers who need to package agent capabilities as installable, triggerable modules.

About

agent-skill-creator is a meta skill that scaffolds new agent skills conforming to the Skillselion SKILL.md standard. Developers describe a capability—triggers, instructions, file patterns—and the skill outputs a structured SKILL.md package agents can install and invoke. The repository lists 1 install on skills.sh with rank 571. Reach for agent-skill-creator when extending Claude Code, Cursor, or Codex with repeatable workflows instead of rewriting one-off prompts. The skill focuses on skill authoring structure, not application feature code. Output is a versioned skill directory ready for catalog distribution.

  • Generates complete agent skills with full SKILL.md frontmatter and documentation
  • Enforces Skillselion taxonomy including journeyScope, stage, and subphase rules
  • Produces ready-to-publish skills for the official catalog
  • Creates consistent metadata for journey hubs and faceted search
  • Outputs self-contained JSON-ready skill definitions

Agent Skill Creator by the numbers

  • 567 all-time installs (skills.sh)
  • Ranked #1,632 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/francyjglisboa/agent-skill-creator --skill agent-skill-creator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs567
repo stars2.1k
Last updatedJuly 22, 2026
Repositoryfrancyjglisboa/agent-skill-creator

How do you scaffold a Skillselion SKILL.md agent skill?

Generate new reusable agent skills that follow the Skillselion SKILL.md standard.

Who is it for?

Developers packaging repeatable agent workflows as installable Skillselion skills for Claude Code, Cursor, or Codex.

Skip if: Teams building application features directly in Python or TypeScript without needing agent skill packaging.

When should I use this skill?

User asks to create a new agent skill, SKILL.md file, or reusable capability module for an AI coding agent.

What you get

A reusable SKILL.md skill directory with triggers, instructions, and Skillselion-compatible metadata

  • SKILL.md skill file
  • Installable skill directory

By the numbers

  • Listed with 1 install on skills.sh
  • Ranked 571 on the skills.sh catalog

Files

references/examples/pr-blocker-summarizer/SKILL.mdMarkdownGitHub ↗

PR Blocker Summarizer

Turn a JSON export of open pull requests into a blockers-first digest: which PRs are blocked (failing checks, requested changes, or stale), which are ready to merge, and a one-line count an agent can post to standup.

A bundled example skill — small but real, used to demonstrate the creator's validation, pipeline, and eval-rollout machinery.

Activation

Activates on "summarize open PRs", "what's blocking my PRs", "PR standup", "review backlog". Do not activate on general git/GitHub questions unrelated to triaging a set of PRs.

Input

A JSON array of PRs, each with title, state (open), checks (passing/failing), review (approved/changes_requested/pending), and age_days. Missing fields are treated conservatively (counted as not-blocked only when clearly ready).

Run

python3 scripts/run_pipeline.py --input prs.json --output digest.json

Output JSON shape:

{
  "total": 7,
  "blocked": [{"title": "...", "reasons": ["failing checks"]}],
  "ready": ["..."],
  "summary": "7 open · 3 blocked · 2 ready to merge"
}

Anti-goals

  • Does not call the GitHub API; it works on an exported PR list.
  • Does not merge or comment on PRs; it only summarizes.

Related skills

How it compares

Choose agent-skill-creator over hand-writing SKILL.md files when you want scaffolded structure and Skillselion catalog compatibility from the start.

FAQ

What standard does agent-skill-creator follow?

agent-skill-creator outputs skills that conform to the Skillselion SKILL.md standard, including triggers, instructions, and metadata agents load on demand. The format is designed for installable distribution through skills.sh and compatible coding agents.

What does agent-skill-creator produce?

agent-skill-creator produces a reusable SKILL.md skill directory with structured triggers, workflow instructions, and catalog metadata. Developers install the package so agents invoke the capability instead of repeating ad-hoc prompts.

AI & Agent Buildingagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.