skill-author

skill-author is a skill for Claude Code, Codex from 1aifanatic/super-computer. It costs 45 tokens per session (571 once invoked), scanned A, original, MIT.

A reusable instruction folder for teaching the coding agent a repeatable procedure. It contains a SKILL.md file with rules and steps the agent follows when the skill is selected.

In plain words
What is it for?
Use it to create a new skill or improve an existing one, including its trigger description, commands, order of operations, and common pitfalls.
Why use it?
It turns scattered instructions into a consistent workflow the agent can reuse. It also helps the agent decide when the procedure applies.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/1aifanatic/super-computer/skill-author
Any agent
npx skills add 1aifanatic/super-computer --skill skill-author
Clone the repo
git clone --depth 1 https://github.com/1aifanatic/super-computer

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for skill-author

README.md
[![agentmods](https://agentmods.dev/badge/skills/1aifanatic/super-computer/skill-author.svg)](https://agentmods.dev/skills/1aifanatic/super-computer/skill-author)
Your own site
<a href="https://agentmods.dev/skills/1aifanatic/super-computer/skill-author"><img src="https://agentmods.dev/badge/skills/1aifanatic/super-computer/skill-author.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 571 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00045 $0.00571
Opus 5 $0.00023 $0.00285
Sonnet 5 $0.00009 $0.00114
Haiku 4.5 $0.00005 $0.00057

Measured 3d ago against content hash 2e814e263826, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skill-author 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 3d 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.

skills/skill-author/SKILL.md · 52 lines

How it starts

The opening of the file, as written. The whole thing — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Writing a Skill

A Skill is a folder containing SKILL.md: YAML frontmatter with name and description, then a markdown body. This file is itself an example — read it as the reference.

The frontmatter carries the weight

---
name: kebab-case-name
description: What this does, and specifically when to use it.
---

Only name and description sit in the model's context at all times. The body loads only when the Skill is chosen. So the description is the entire selection mechanism — it is not a summary, it is a trigger.

Write descriptions that say when, not just what:

  • Weak: "Helps with databases."
  • Strong: "Query, reshape and validate JSON with jq. Use for API responses, config files, package manifests and log lines."

The weak one never gets picked, because nothing in a real request looks like it.

The body is instructions, not documentation

Write to the model that will execute it, in the imperative. Give it an order of operations, concrete commands, and the traps. Skip motivation and background — it has already been chosen by the time the body loads.

Good bodies contain:

  • A short procedure, numbered, in the order it should happen.
  • Real commands that work in this Workspace.
  • The failure modes and what to do instead.
  • An explicit statement of what the Skill cannot do.

Know the Workspace's limits

Available: ls, cat, grep, sed, awk, find, sort, wc, head, tail, cut, tr, diff, jq, pipes, redirects, loops and conditionals — plus real git (clone, status, diff, add, commit, log, branch, checkout; HTTPS only, no SSH).

Not available: node, npm, python, sqlite3, or any other native binary. A Skill whose procedure depends on running a build or a test suite cannot work here — do not write one, and say so if asked.

Keep it short

A Skill body is loaded into a live context window and paid for in tokens. Two hundred well-chosen lines beat a thousand thorough ones. If it is growing past that, it is probably two Skills.

Read the full file on GitHub · 52 lines

Changes

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.

  1. 3d ago First seen · 52 lines · 45 tokens per session scan A 2e814e263826

Subscribe to this mod's changes

skill-author is a skill published in the GitHub repository 1aifanatic/super-computer (2 stars, last pushed 22d ago), licensed MIT. It adds 45 tokens to every session and 571 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.

Related

Other skills, from other repositories

changelog-writer

This skill should be used when the user asks to "add a changelog entry", "write changelog", "audit changelog", "review changelog", "check changelog entries", or is editing docs-mintlify/changelog.mdx. Enforces a consistent, reader-facing voice and cuts implementation trivia.

pdugan20/rewind · 68 tokens

add-media

This skill should be used when the user asks to "add a movie", "add a vinyl", "add to my collection", "add physical media", "add a Blu-ray", "add a CD", or "bought these records". It handles both movies (via TMDb/Trakt) and music (via Discogs).

pdugan20/rewind · 71 tokens

media-search

This skill should be used when the user asks to "search for a movie", "find a record on Discogs", "look up a film", "search TMDb", "search Discogs", "what's the TMDb ID for", "what's the Discogs ID for", or wants to look up media metadata before adding it to the collection.

pdugan20/rewind · 75 tokens

frontend-design-landing-page

Marketing landing page and conversion-focused product page reference. Use this skill when building hero sections, feature grids, pricing pages, testimonials, CTAs, footers, navigation bars, or any public-facing marketing surface. Covers a warm, professional, developer-friendly design language (cream backgrounds…

cloudflare/vibesdk · 106 tokens

frontend-design-saas

S-tier SaaS dashboard and product UI reference. Use this skill when building application shells, data tables, settings panels, billing pages, dashboards, auth flows, admin tools, or any internal/customer-facing SaaS product UI. Inspired by Stripe, Linear, Vercel, Airbnb, Notion. Covers neutral-led design tokens…

cloudflare/vibesdk · 105 tokens

cloudflare-bundler-apps

Author Cloudflare Worker Bundler-compatible apps that build and preview correctly inside a space. Use this skill whenever you scaffold, modify, or deploy a project that will be built with @cloudflare/worker-bundler (i.e. anything served from /space/:name/preview/:branch/). Covers wrangler config, project layout…

cloudflare/vibesdk · 105 tokens