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.
npx skills add marcusgoll/Spec-Flow --skill create-agent-skillsgit clone --depth 1 https://github.com/marcusgoll/Spec-FlowWrote 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.
[](https://agentmods.dev/skills/marcusgoll/spec-flow/create-agent-skills)<a href="https://agentmods.dev/skills/marcusgoll/spec-flow/create-agent-skills"><img src="https://agentmods.dev/badge/skills/marcusgoll/spec-flow/create-agent-skills.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00055 | $0.03050 |
| Opus 5 | $0.00028 | $0.01525 |
| Sonnet 5 | $0.00011 | $0.00610 |
| Haiku 4.5 | $0.00006 | $0.00305 |
Grade A, and why
create-agent-skills 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 7d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 381 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skills are organized prompts that get loaded on-demand. All prompting best practices apply, with an emphasis on pure XML structure for consistent parsing and efficient token usage.
<quick_start>
- Identify the reusable pattern: What context or procedural knowledge would be useful for similar future tasks?
- Create directory and SKILL.md:
- Directory name: Follow verb-noun convention:
create-*,manage-*,setup-*,generate-*(see references/skill-structure.md for details) - YAML frontmatter:
name: Matches directory name, lowercase-with-hyphens, max 64 charsdescription: What it does AND when to use it (third person, max 1024 chars)
- Directory name: Follow verb-noun convention:
- If skill requires API credentials: See references/api-security.md for credential setup
- Write concise instructions: Assume Claude is smart. Only add context Claude doesn't have. Use pure XML structure.
- Test with real usage: Iterate based on observations.
<example_skill>
---
name: process-pdfs
description: Extract text and tables from PDF files, fill forms, merge documents. Use when working with PDF files or when the user mentions PDFs, forms, or document extraction.
---
<objective>
Extract text and tables from PDF files, fill forms, and merge documents using Python libraries.
</objective>
<quick_start>
Extract text with pdfplumber:
```python
import pdfplumber
with pdfplumber.open("file.pdf") as pdf:
text = pdf.pages[0].extract_text()
</quick_start>
<advanced_features> Form filling: See forms.md API reference: See reference.md </advanced_features>
</example_skill>
</quick_start>
<xml_structure>
<required_tags>
All skills must have these tags:
- **`<objective>`** - What the skill does and why it matters
- **`<quick_start>`** - Immediate, actionable guidance
- **`<success_criteria>`** or **`<when_successful>`** - How to know it worked
</required_tags>
<conditional_tags>
Based on skill complexity, add these tags as needed:
- **`<context>`** - Background/situational information
- **`<workflow>` or `<process>`** - Step-by-step procedures
- **`<advanced_features>`** - Deep-dive topics (progressive disclosure)
- **`<validation>`** - How to verify outputs
- **`<examples>`** - Multi-shot learning
- **`<anti_patterns>`** - Common mistakes to avoid
- **`<security_checklist>`** - Non-negotiable security patterns
- **`<testing>`** - Testing workflows
- **`<common_patterns>`** - Code examples and recipes
- **`<reference_guides>` or `<detailed_references>`** - Links to reference files
</conditional_tags>
<critical_rule>
**Remove ALL markdown headings (#, ##, ###) from skill body content.** Replace with semantic XML tags. Keep markdown formatting WITHIN content (bold, italic, lists, code blocks, links).
</critical_rule>
</xml_structure>
<intelligence_rules>
<simple_skills>
Single domain, straightforward tasks: Use required tags only.
Example: Text extraction, file format conversion, simple API calls
</simple_skills>
<medium_skills>
Multiple patterns, some complexity: Use required tags + workflow/examples as needed.
Example: Document processing with multiple steps, API integration with configuration
</medium_skills>
<complex_skills>
Multiple domains, security concerns, API integrations: Use required tags + conditional tags as appropriate.
Example: Payment processing, authentication systems, multi-step workflows with validation
</complex_skills>
<principle>
Don't over-engineer simple skills. Don't under-specify complex skills. Match tag selection to actual complexity and user needs.
</principle>
</intelligence_rules>
<generation_protocol>
<step_0>
<description>
**Adaptive Requirements Gathering**: Before building, gather requirements through intelligent questioning that infers obvious details and asks about genuine gaps.
</description>
What ships with it
10 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.
- README.md 4.2 KB
- references/api-security.md 6.0 KB
- references/be-clear-and-direct.md 13 KB
- references/common-patterns.md 14 KB
- references/core-principles.md 12 KB
- references/executable-code.md 4.3 KB
- references/iteration-and-testing.md 13 KB
- references/skill-structure.md 11 KB
- references/use-xml-tags.md 11 KB
- references/workflows-and-validation.md 12 KB
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.
- 7d ago First seen · 381 lines · 55 tokens per session scan A 37ba8d72f11f
create-agent-skills is a skill published in the GitHub repository marcusgoll/Spec-Flow (92 stars, last pushed 4mo ago), licensed MIT. It adds 55 tokens to every session and 3,050 once invoked, about $0.0003 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-30.
Other skills, from other repositories
android-ui-journey-testing
XML-specified Android UI journey testing, interactive step execution, assertion verification, and JSON outcome reporting.
agent-self-scheduling
Schedule AI agent runs with cron, loops, or external clocks while avoiding unsafe tight autonomous timers.
plan
Strategic planning with optional interview workflow.
improve-codebase-architecture
Avaliar a arquitetura de um codigo existente, encontrar friccoes comprovaveis, gerar obrigatoriamente um relatorio HTML e propor refatoracoes incrementais com impacto tecnico e de produto. Usar quando o usuario pedir melhoria arquitetural, crescimento sustentavel, reducao de acoplamento, modulos mais testaveis ou um…
ralph
Self-referential loop until task completion with architect verification.
skill-aionui-cowork-orchestration
Use when integrating AionUi into the {{USERNAME}} orchestrator workflow, coordinating Codex, Claude, Gemini, OpenCode, or other CLI agents through AionUi without breaking local skills, hooks, MCPs, permissions, or existing Codex workflows.