skill-creator

Solid

Create, edit, improve, tidy, review, audit, or restructure memmy-agent skills and SKILL.md files.

AI & Automation 78 stars 25 forks Updated today MIT

Install

View on GitHub

Quality Score: 82/100

Stars 20%
63
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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: ```text skill-name/ ├── SKILL.md ├── scripts/ ├── references/ └── assets/ ``` `SKILL.md` must contain YAML frontmatter followed by Markdown instructions. Required frontmatter: ```yaml --- 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: ```yaml metadata: memmy: always: true requires: bins: ["gh"] env: ["GITHUB_TOKEN"] ``` ## Creation Workflow 1. Clarify the real use cases and...

Details

Author
MemTensor
Repository
MemTensor/memmy-agent
Created
1 weeks ago
Last Updated
today
Language
TypeScript
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category