AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Modular Skill Creator

skill-eristoddle-agent-skills-modular-skill-creator · by eristoddle

Build or convert skills into a modular, lazy-loading multi-workflow architecture. Use for "modular skill", "router skill", or splitting a monolithic skill into sub-workflows. For simple single-file skills, use skill-creator instead.

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-eristoddle-agent-skills-modular-skill-creator

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-eristoddle-agent-skills-modular-skill-creator)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Modular Skill Creator? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Architecture This Skill Produces

Every modular skill has three layers:

  1. Router (SKILL.md) — loaded at invocation, under ~150 lines. Contains frontmatter, essential principles, intake logic, and routing rules only. No workflow prose lives here.
  1. Workflows (workflows/*.md) — loaded on demand when the router decides which branch to execute. Each file is fully self-contained: it states its own inputs, prerequisites, steps, outputs, and done criteria.
  1. References (references/*.md) — single-purpose data files (blacklists, templates, taxonomies, examples). Loaded by workflows when needed. Never contain procedural logic.

Core Rules

  1. Router stays thin. If you catch yourself writing multi-step procedure logic in SKILL.md, it belongs in a workflow file.
  2. Each workflow owns its scope. A workflow file should not need to read another workflow file to complete its job — unless the skill is explicitly a stage-pipeline where step N hands off to step N+1.
  3. References are data, not logic. A reference file contains lookup tables, lists, templates, or examples. It never says "now do X."
  4. Always ask project vs global. Per the user's global preference, never assume a save location — always ask before writing files.

Before anything else, ask where to save the output skill using AskUserQuestion:

> "Where should the new skill be saved?" > - Project-level./.claude/skills// in the current repo (preferred ~75% of the time) > - Skillshare global~/.config/skillshare/skills// (syncs to all your AI tools via skillshare)

Then ask what the user wants to do:

> "What would you like to do?" > - Build a new modular skill — design it from scratch with router + workflows + references > - Convert an existing skill — refactor a single-file SKILL.md into the modular pattern

Route based on the answer.

Workflow Routing

If user wants to build a new modular skill:

  1. Read workflows/design-modular-skill.md — run the interview to produce the skill spec.
  2. Read workflows/scaffold-router.md — generate the SKILL.md router from the spec.
  3. Read workflows/scaffold-workflows.md — generate each workflows/*.md file from the spec.
  4. Write all files to the save location confirmed in intake.

If user wants to convert an existing skill:

Read workflows/refactor-monolithic-skill.md. This workflow handles the full refactor end-to-end.

Reference Materials

  • references/router-patterns.md — read this during scaffold-router to get the correct template for the chosen routing pattern (menu-driven, input-shape detection, or stage-pipeline)
  • references/frontmatter-conventions.md — read this to use only fields the user's existing skills use; prevents spurious fields from appearing in generated skills
  • references/examples.md — read this when you need a concrete canonical example to explain the pattern to the user or sanity-check your output against

Quality Checklist

Before reporting done:

  • [ ] Router SKILL.md is under ~150 lines
  • [ ] Router contains zero step-by-step procedure prose
  • [ ] Every workflow file is self-contained (inputs, steps, outputs, done criteria all present)
  • [ ] No allowed-tools field in frontmatter (not part of this user's convention)
  • [ ] Description field is pushy and trigger-rich (50-100 words, lists trigger phrases)
  • [ ] Save location was confirmed with user before any files were written

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.