skill-creator

skill-creator is a skill for Claude Code, Codex from SELAT-AI/selat-skills. It costs 133 tokens per session (2,682 once invoked), scanned A, original, Apache-2.0.

A contributor workflow for creating and submitting a new skill to the SELAT skill hub, a catalogue of executable agent skills.

In plain words
What is it for?
It helps scaffold a skill, complete its files, run validation and verification, register it in the hub, and submit it.
Why use it?
It gives contributors a defined path from a new skill directory to validation, live payment checks, registration, and submission.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps scaffold a skill, complete its files, run validation and verification, register it in the hub, and submit it.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/selat-ai/selat-skills/skill-creator
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.

Any agent
npx skills add SELAT-AI/selat-skills --skill skill-creator
Clone the repo
git clone --depth 1 https://github.com/SELAT-AI/selat-skills

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-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/selat-ai/selat-skills/skill-creator/github.svg)](https://agentmods.dev/skills/selat-ai/selat-skills/skill-creator)
Your own site
<a href="https://agentmods.dev/skills/selat-ai/selat-skills/skill-creator"><img src="https://agentmods.dev/badge/skills/selat-ai/selat-skills/skill-creator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skill-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/selat-ai/selat-skills/skill-creator"><img src="https://agentmods.dev/badge/skills/selat-ai/selat-skills/skill-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,682 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00133 $0.02682
Opus 5 $0.00067 $0.01341
Sonnet 5 $0.00027 $0.00536
Haiku 4.5 $0.00013 $0.00268

Measured 11d ago against content hash 00f20f848815, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/new-skill.mjs), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

meta/skill-creator/SKILL.md · 178 lines

How it starts

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

skill-creator

Author a new skill for the selat-skills hub and get it merged, using the official selat skill CLI. A skill is a declarative directory the selat CLI executes — never code that calls selat-pay itself. This is the hub's contribution guide (CONTRIBUTING.md points here); keep it open while you build.

When To Use

Use when someone wants to add a capability to the hub by composing one or more paid federated-catalogue endpoints into a named skill, or asks how the manifest/SKILL.md/evals fit together, how to find a payable endpoint, how to verify it, or how to submit. Not for editing the CLI or router — this is skill content only.

Workflow

The whole loop (matches CONTRIBUTING.md):

selat skill new my-skill --dir skills           # 1. scaffold
#   …edit the files (replace every TODO)…        # 2. author
selat skill validate ./skills/my-skill          # 3. static SOP check
selat skill verify   ./skills/my-skill [--pay]  # 4. live-402 check (THE GATE)
selat skill register ./skills/my-skill          # 5. add index.json entry
npm run validate                                # 6. whole-repo check (what CI runs)
selat skill submit   ./skills/my-skill          # 7. open the PR
  1. Define + scaffold. One skill = one coherent capability; pick the rail (direct Circle nanopayment / routed MPP via the SELAT Router / mixed). Then selat skill new <name> --dir skills writes skills/<name>/ with manifest.json, SKILL.md, references/endpoints.md, evals/evals.json. (No CLI handy? scripts/new-skill.mjs does the same scaffolding offline.)
  2. Discover endpoints in the federated catalogue and record each merchant's serviceUrl (NOT the descriptive provider url), method, path, price. See references/endpoint-discovery.md — this is where most skills break.
  3. Enrich each endpoint's schema — pin the real request shape before writing any body/${param}, from a free source, because a wrong param name or shape still costs money: the SELAT Router settles the payment before the upstream validates the body, and a verify probe checks payability, not param correctness. Pull the gateway's OpenAPI (<serviceUrl-host>/openapi.json), decode the self-describing bazaar schema in the 402 payment-required header, or read the upstream's public API docs — then corroborate against the live API, which is the real source of truth (specs drift: observed tweet_id vs live tweetId, and "only field X required" when the live API rejects a body without more). Record every param (name, required, type, enum, format) in references/endpoints.md and map each manifest ${param} to the real API param name. See references/schema-enrichment.md.
  4. Author — replace every TODO:
    • manifest.jsonname (== folder), maxAmount (cap with headroom, a filter not a price), params (real defaults), steps[] with url = serviceUrl + path, ${param} substitution, body for POST.
    • SKILL.md — frontmatter + sections (When To Use, Workflow, Inputs And Outputs, Gotchas, Validation, References). No TODO may remain.
    • references/endpoints.md and evals/evals.json (skill_name == folder).
  5. Validate (static): selat skill validate ./skills/<name>.
  6. Verify (the gate): selat skill verify ./skills/<name> probes each step's real 402 price/rail (free) and checks it ≤ maxAmount; --pay makes a capped real call to confirm it settles 200. Pass required params as flags. This writes skills/<name>/.selat/verify-receipt.json — the provenance submit attaches to the PR and that gates merge. Fix any step that's unreachable or over cap; prefer first-party providers over proxies.
  7. Register: selat skill register ./skills/<name> auto-adds/updates the index.json entry from the manifest.
  8. Whole-repo check: npm run validate (exactly what CI runs).
  9. Submit: selat skill submit ./skills/<name> (use --dry-run first). It requires a passing verify receipt, then branches, commits skills/<name> + the index.json entry, pushes, and opens a PR with the receipt as provenance. No write access? It prints fork-and-PR commands. A maintainer paid-re-verifies before merge.

Read the full file on GitHub · 178 lines

Files

What ships with it

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

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. 11d ago First seen · 178 lines · 133 tokens per session scan A 00f20f848815

Subscribe to this mod's changes

skill-creator is a skill published in the GitHub repository SELAT-AI/selat-skills (2 stars, last pushed today), licensed Apache-2.0. It adds 133 tokens to every session and 2,682 once invoked, about $0.0007 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

selat-discovery

Use the moment you're about to tell the user you can't do something — or about to suggest they sign up for, get an API key for, or go to an external tool, site, or API to do it themselves. Covers what's beyond a model natively: image/video/audio/voice generation, translation, transcription, web search/scraping…

SELAT-AI/selat-plugins · 203 tokens

selat-capabilities-for-metamask

SELAT's capability layer for agents on a MetaMask Agent Wallet — tool use beyond the agent's native abilities, paid per call. Strongest for trading decision support on perpetuals and tokenized stocks ("what are funding rates saying", "pull Polymarket candles", "quote and technicals for this tokenized equity's…

SELAT-AI/selat-openclaw-skills · 225 tokens

stock-direction-signals

Directional research brief on a US stock for agents on a MetaMask Agent Wallet — use when asked "is NVDA bullish or bearish right now", "directional read on AAPL", "is MAG7 sentiment turning", "what do the chart, news, and social say about AMD", "signal brief on SPY". Nine paid reads — quote, daily chart, RSI, MACD…

SELAT-AI/selat-openclaw-skills · 182 tokens

perplexity-search

Grounded web search & research via Perplexity, keyless and pay-per-call over SELAT. Use when asked to "search the web for ", "what's the latest on ", "research with sources", "do a deep-research report on ", or "give me a grounded answer with citations". Runs Perplexity's cheap web Search by default, and can escalate…

SELAT-AI/selat-openclaw-skills · 166 tokens

twitter-research

Read-only Twitter/X research on SELAT — profiles, recent tweets, mentions, followers, tweet details/replies/retweeters, topic search, and trends. Use when asked "who is @X on Twitter", "show me X's recent tweets", "who's mentioning X", "how did this tweet do / who replied / who retweeted", "search X for ", or "is…

SELAT-AI/selat-openclaw-skills · 145 tokens

vc-ai-infra-scout

Deal-sourcing scout for VCs running an AI-infrastructure thesis — AI infra, crypto-AI/decentralized-AI, robotics/embodied-AI, agentic payments. Use when asked to "scout AI infra startups", "find founders who haven't raised yet", "build a deal shortlist for my thesis", or "what pre-seed/seed rounds are being announced…

SELAT-AI/selat-openclaw-skills · 141 tokens