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/memtensor/memmy-agent/skill-creatornpx skills add MemTensor/memmy-agent --skill skill-creatorgit clone --depth 1 https://github.com/MemTensor/memmy-agentWrote 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/memtensor/memmy-agent/skill-creator)<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>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 | $0.00028 | $0.00810 |
| Opus 5 | $0.00014 | $0.00405 |
| Sonnet 5 | $0.00006 | $0.00162 |
| Haiku 4.5 | $0.00003 | $0.00081 |
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.
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 — 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
- Clarify the real use cases and triggering phrases.
- Pick a short hyphen-case name.
- Create
<workspace>/skills/<skill-name>/SKILL.md. - Add only the resource directories that are actually needed.
- Run the validator.
- Test any scripts by executing them on realistic inputs.
Create files directly. There is no required init scaffold command for memmy-agent skills.
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.
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.
- 4d ago First seen · 109 lines · 28 tokens per session scan A 4f59aa343e1b
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.
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".
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…
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.
mochi-remind
Handle due reminders — notify the user with natural language and mark them done.
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.
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…