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 agentmods add skills/korbinjoe/teemai/skill-creatornpx skills add korbinjoe/TeemAI --skill skill-creatorgit clone --depth 1 https://github.com/korbinjoe/TeemAIWrote 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/korbinjoe/teemai/skill-creator)<a href="https://agentmods.dev/skills/korbinjoe/teemai/skill-creator"><img src="https://agentmods.dev/badge/skills/korbinjoe/teemai/skill-creator.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.00045 | $0.00462 |
| Opus 5 | $0.00023 | $0.00231 |
| Sonnet 5 | $0.00009 | $0.00092 |
| Haiku 4.5 | $0.00005 | $0.00046 |
Grade A, and why
skill-creator 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.
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.
What it actually says
skill-creator
Use this skill to create a reusable skill directory with a SKILL.md and any
supporting references/, scripts/, or assets that the skill needs.
Core principles
- A skill should encode a repeatable workflow, not a one-off answer.
- Trigger rules must be specific enough that the agent knows when to use the skill and when to skip it.
- Keep the main
SKILL.mdshort enough to load quickly; move long domain details intoreferences/. - Prefer scripts or templates for large reusable artifacts instead of asking the model to recreate them from memory.
- Avoid hidden dependencies. List required CLIs, services, credentials, and environment variables in the skill.
Required SKILL.md shape
Every skill must start with YAML frontmatter:
---
name: skill-name
description: >
What this skill does and the situations that should trigger it.
allowed-tools: Read, Write, Edit, Glob, Grep, Bash
---
The body should include:
- When to use the skill.
- When not to use it.
- The workflow the agent should follow.
- Any files or references the agent must read before acting.
- Verification steps or expected outputs.
Directory layout
skills/<skill-name>/
SKILL.md
references/ # optional long-form instructions
scripts/ # optional executable helpers
templates/ # optional starter artifacts
Quality checklist
- The skill name is lowercase kebab-case and matches its directory.
- The description contains concrete trigger language.
- Instructions are imperative and operational.
- The skill does not duplicate unrelated agent personality or global policy.
- References are only loaded when relevant.
- Scripts are executable when they are intended to run directly.
- The skill includes verification guidance for its common outputs.
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.
- 6d ago First seen · 68 lines · 45 tokens per session scan A 14a8cd60f2b1
skill-creator is a skill published in the GitHub repository korbinjoe/TeemAI (2 stars, last pushed 2mo ago), licensed MIT. It adds 45 tokens to every session and 462 once invoked, about $0.0002 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.
Other skills, from other repositories
starting-a-new-project
Use when the workspace is empty — no code yet — and the user brings a raw idea: the brand-new branch of setting-up-a-project, normally reached via that dispatcher, directly only when the situation is unmistakable. Not for features in an existing project — use brainstorming instead.
agent-spec-estimate
CRITICAL: Use for estimating work effort from agent-spec Task Contracts. Triggers on: estimate, estimation, how long, work effort, round count, time estimate, scope, sizing, cost, budget, planning, sprint, capacity, "how many rounds", "how long will this take", "estimate this spec", 估算, 工作量, 多久, 时间估算, 预估, 工时, 规模…
agent-spec-intent-compiler
Use when converting PRD or issue prose into KLL requirements, running the intent compiler plan, or reverse-interviewing a human to resolve requirement ambiguity before task spec generation.
agent-spec-wiki
Use when initializing, checking, enriching, or reviewing agent-spec code live wiki pages, sourcefiles trace, or Rust architecture inventory.
todos
This chat has a shared, live TODO plan — your tasks for the conversation, which the user also edits. Read this skill and reach for the todo tools whenever a request takes more than a couple of steps. It covers the plan model (group = task, items = its steps; loose items are the user's lane), how to work it: propose…
writing-workflow-skills
Use when adding a new workflow skill to pi-thinkrail-workflow, changing an existing workflow skill's role, trigger, handoff, or structure, or checking a workflow skill against the workflow system's rules. Not for authoring general-purpose skills outside this package.