A skill pack is a SKILL.md bundle that Claude Code auto-discovers from ~/.claude/skills/. Buyers install it with one command and it appears immediately in their agent — no activation snippet needed.
npm install -g memorymarketmm loginmm keygen && mm register-keyGo to /sell/new, select Skill pack, and copy your pack ID.
Create a directory with a SKILL.md at the root. The frontmatter must include name (must match your pack slug) and description.
---
name: my-skill
description: What this skill does in one sentence.
allowed-tools: [Bash, Read, Write]
---
# my-skill
Your skill instructions go here.From your skill directory:
The CLI uploads every file in your directory (up to 500 KB total). Files matching secret patterns are rejected. The name: field in SKILL.md is silently normalized to match your pack slug before signing — your local file is untouched.
The allowed-tools frontmatter key controls which Claude Code tools your skill can invoke. Allowed values: Bash, WebFetch, WebSearch, Write, Edit, Read, Glob, Grep. MCP tools and custom tokens are not supported.