Skip to main content
ClaudeWave
Skill1.2k repo starsupdated 3d ago

skill-creator

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

Install in Claude Code
Copy
git clone --depth 1 https://github.com/MemTensor/memmy-agent /tmp/skill-creator && cp -r /tmp/skill-creator/App/memmy-agent/src/skills/skill-creator ~/.claude/skills/skill-creator
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

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

## Writing SKILL.md

Put all trigger information in the frontmatter `description`. The body is loaded only after the skill triggers, so a "when to use this skill" section in the body is too late to help discovery.

Use the body for:

- A short operating procedure.
- Commands that should be run exactly.
- References to bundled files and when to read them.
- Constraints that prevent common mistakes.

Avoid:

- README, changelog, installation guide, or process notes inside the skill root.
- Placeholder text such as TODO, "fill me in", or example-only resource files.
- Duplicating long reference material in both `SKILL.md` and `references/`.

## Resource Guidance

Use `scripts/` for repeatable operations where deterministic behavior matters. Prefer Python, shell, or other scripts that can run through an explicit interpreter command.

Use `references/` for large instructions, schemas, API notes, policies, or examples that should be read only when relevant.

Use `assets/` for templates, images, fonts, sample documents, or other files that are consumed as output resources rather than read into context.

## Validation

Run the bundled quick validator before considering a skill ready:

```bash
python3 {baseDir}/scripts/quick-validate.py <skill-dir>
```

Replace `{baseDir}` with the path to this `skill-creator` directory. The validator checks the required frontmatter, memmy-agent metadata namespace, name format, placeholder descriptions, and root file organization.

If validation fails, fix the reported issue and run the command again.
agent-memory-onboardingSkill

On-demand provisioning guide for a Memmy GUI task that fully connects an explicitly named local Agent: discover its active history store, install or remove its rendered Memmy Skill, bootstrap a scan boundary, persist a validated automatic-sync recipe, and verify GUI-visible readiness.

memmy-memorySkill

Use the memmy-memory CLI when an agent needs to check the Memory service, open or close agent sessions, start or complete turns, search, add, read, or delete memories, or call uncommon HTTP routes through raw requests.

cronSkill

Schedule reminders and recurring tasks.

githubSkill

Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.

image-generationSkill

Generate images and iteratively edit saved image artifacts.

summarizeSkill

Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).

tmuxSkill

Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.

ui-craftSkill

Design, build, redesign, or modify browser-visible web interfaces with product-quality composition, visual systems, interaction states, responsive behavior, accessibility, and browser visual QA. Use for HTML, CSS, JavaScript, React, Vue, or Svelte pages and components, landing pages, dashboards, admin tools, settings, forms, onboarding, responsive layouts, prototypes, and any frontend change that alters visible browser output.