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/maxedapps/agent-skills/create-skillnpx skills add maxedapps/agent-skills --skill create-skillgit clone --depth 1 https://github.com/maxedapps/agent-skillsWhat 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 | $0.00078 | $0.01284 |
| Opus 5 | $0.00039 | $0.00642 |
| Sonnet 5 | $0.00016 | $0.00257 |
| Haiku 4.5 | $0.00008 | $0.00128 |
Grade A, and why
create-skill 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 2d 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 — 108 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create Skill
Required resources and checks
- Before using a starter, read and adapt
assets/skill-template.md. Replace every sentinel and remove unused sections. - Before finalizing or reviewing, read
references/skill-quality-checklist.md. Record applicable evidence. - When this catalog's root scripts exist, run:
node scripts/validate-skill-metadata.mjs <skill-path>node scripts/validate-skill-links.mjs <skill-path>
- Otherwise perform equivalent checks manually. Report the unavailable gate.
Follow user and higher-priority constraints. Keep one coherent job. Preserve behavior outside an evidence-backed requested change.
Skill contract
- Put all activation guidance in frontmatter
description. The body loads only after activation. - Use:
[Third-person capability]. Use this skill when [intents/triggers]. Do not use when/for [material near misses]. - Keep the description under 1024 characters. Focus on intent, outcomes, and adjacent boundaries—not mechanics.
- Keep
SKILL.mdconcise and actionable. Put critical constraints, mandatory resources, fragile sequencing, validation, and safety early. - Default to short headings, compact bullets, numbered procedures, and small tables. Use prose paragraphs only when they communicate necessary nuance more clearly.
- Keep each bullet focused on one instruction or tightly coupled behavior. Prefer direct wording; remove throat-clearing, repeated rationale, and paragraph-length bullets.
- Match the surrounding skill catalog's density. A longer main file requires execution-critical justification; move conditional detail into
references/. - Use progressive disclosure deliberately. Do not squeeze useful reusable detail into
SKILL.mdmerely to avoid a resource. - Use
references/for detailed workflows, schemas, examples, tool guidance, and gotchas. - Use
assets/for reusable templates and static output shapes. - Use
scripts/for repeated or fragile deterministic operations. - Add resources when they improve repeated execution, clarity, consistency, or maintenance.
- Keep references one level deep.
- Add a resource pointer only after its file exists. Give its exact path, purpose, and read/use/run condition.
- Repeat mandatory resource loading at the relevant workflow step. Delete stale pointers and empty directories.
- Refer to other skills by name, such as
create-plan. Do not use relative paths to theirSKILL.mdfiles. - Ground changes in real tasks, artifacts, recurring failures, user corrections, or evaluation evidence.
- Reject one-off or speculative preferences. Prefer the smallest durable correction.
- Check tools, schemas, commands, and examples for staleness. Ask when reusability is unclear.
- Prescribe fragile, destructive, security-sensitive, and validation-critical sequences. Allow judgment elsewhere.
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.
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.
- 2d ago First seen · 108 lines · 78 tokens per session scan A a529bbadd671
create-skill is a skill published in the GitHub repository maxedapps/agent-skills (58 stars, last pushed 17d ago), licensed MIT. It adds 78 tokens to every session and 1,284 once invoked, about $0.0004 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
paperclip
Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.
omni-mcp
Connect to the OmniRoute MCP server (110 tools, 3 transports: SSE/stdio/HTTP). Covers routing, cache, compression, memory, skills, providers, and audit tools across 33 permission scopes.
add-resend
Add Resend (email) channel integration via Chat SDK.
codegen
Code generation utilities for json-render. Use when generating code from UI specs, building custom code exporters, traversing specs, or serializing props for @json-render/codegen.
agui-dotnet-sample-step
Add a GettingStarted sample Step (a Server/Client pair) to the AG-UI .NET SDK that demonstrates one protocol feature the way we want users to write it. USE FOR: adding a new samples/GettingStarted/StepNN Server+Client pair, wiring it into AGUI.slnx and the integration-test project, giving it a deterministic…
optimize-agentic-workflow
Analyze and reduce token consumption in agentic workflows — guardrail-specific entry points, measurement, and optimization techniques.