skill-creator

skill-creator is a skill for Claude Code, Codex from MemTensor/memmy-agent. It costs 28 tokens per session (810 once invoked), scanned A, original, MIT.

A guide for creating and maintaining skills, which are instruction files that teach an agent how to perform a specific workflow.

In plain words
What is it for?
Use it to create, edit, improve, review, audit, or reorganize skill folders and SKILL.md files.
Why use it?
It helps keep those instructions focused, correctly structured, and easier for another agent to use.

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/memtensor/memmy-agent/skill-creator
Any agent
npx skills add MemTensor/memmy-agent --skill skill-creator
Clone the repo
git clone --depth 1 https://github.com/MemTensor/memmy-agent

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/memtensor/memmy-agent/skill-creator.svg)](https://agentmods.dev/skills/memtensor/memmy-agent/skill-creator)
Your own site
<a href="https://agentmods.dev/skills/memtensor/memmy-agent/skill-creator"><img src="https://agentmods.dev/badge/skills/memtensor/memmy-agent/skill-creator.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 810 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.00028 $0.00810
Opus 5 $0.00014 $0.00405
Sonnet 5 $0.00006 $0.00162
Haiku 4.5 $0.00003 $0.00081

Measured 4d ago against content hash 4f59aa343e1b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, 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 4d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/quick-validate.py), 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.

App/memmy-agent/src/skills/skill-creator/SKILL.md · 109 lines

How it starts

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

Skill Creator

Use this skill when creating or maintaining a memmy-agent skill.

Core Principles

Keep the skill small enough to load quickly. Put only the essential workflow in SKILL.md; move detailed reference material into references/, reusable deterministic code into scripts/, and output assets into assets/.

Write for another agent that is already capable. Include the procedural details, constraints, commands, schemas, and examples that would be annoying or risky to rediscover.

Skill Shape

A skill is a directory with one required file and optional resources:

skill-name/
├── SKILL.md
├── scripts/
├── references/
└── assets/

SKILL.md must contain YAML frontmatter followed by Markdown instructions.

Required frontmatter:

---
name: my-skill
description: Do the specific workflow. Use when the agent needs to handle concrete trigger cases.
---

Supported memmy-agent frontmatter fields:

  • name: lowercase letters, digits, and hyphens only.
  • description: the trigger text that decides when the skill is useful.
  • metadata: optional memmy-agent runtime metadata.
  • always: optional boolean for skills that should always load.
  • license: optional license label.
  • allowed-tools: optional tool guidance for consumers.

Use only metadata.memmy for runtime metadata:

metadata:
  memmy:
    always: true
    manualOnly: false
    requires:
      bins: ["gh"]
      env: ["GITHUB_TOKEN"]

Set metadata.memmy.manualOnly: true for a Skill that must stay out of the normal Skill index and load only when the current task explicitly references $skill-name. Do not combine it with startup initialization.

Creation Workflow

  1. Clarify the real use cases and triggering phrases.
  2. Pick a short hyphen-case name.
  3. Create <workspace>/skills/<skill-name>/SKILL.md.
  4. Add only the resource directories that are actually needed.
  5. Run the validator.
  6. Test any scripts by executing them on realistic inputs.

Create files directly. There is no required init scaffold command for memmy-agent skills.

Read the full file on GitHub · 109 lines

Files

What ships with it

1 file 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. 4d ago First seen · 109 lines · 28 tokens per session scan A 4f59aa343e1b

Subscribe to this mod's changes

skill-creator is a skill published in the GitHub repository MemTensor/memmy-agent (1,190 stars, last pushed 6d ago), licensed MIT. It adds 28 tokens to every session and 810 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

artifact-deploy

One-click deploy a user's pre-built app/artifact into their OWN AWS account and get a global public HTTPS link (Vercel-like), with a default TTL and promote-to-persistent. Use when the user says "deploy this", "ship this demo", "give me a public link", "share this externally", or "deploy to AWS".

kirodotdev/KiroCrew · 74 tokens

explain-for

Explain a topic, a piece of code, an error, or a design decision calibrated to one named audience — a 5-year-old, a 5th grader, a manager, a designer, a graduate student, a parent. Resolves who the explanation is for (from the request, or from what memory already records about that person), establishes the ground…

kirodotdev/KiroCrew · 102 tokens

learn-from-sage

Detection-gap (miss) analysis for Code Review Sage. Learn from shipped fixes, acted-on human comments, and design outcomes to close reviewer blind spots. Inline during review stages a candidate; a human triggers a one-shot AI consolidation into the live ruleset.

kirodotdev/KiroCrew · 56 tokens

mochi-remind

Handle due reminders — notify the user with natural language and mark them done.

kirodotdev/KiroCrew · 20 tokens

browserwing-admin

Manage and operate BrowserWing — an intelligent browser automation platform. Install dependencies, configure LLM, create/manage/execute automation scripts, use AI-driven exploration to generate scripts, browse the script marketplace, and troubleshoot issues.

MemTensor/MemOS · 47 tokens

agent-browser

Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a…

Intelligent-Internet/ii-agent · 108 tokens