meta/skill-development/SKILL.md
Create and contribute skills to the communal knowledge base. Use when creating new skills, updating existing skills, or contributing learnings back to the repository.
npx skillsauth add letta-ai/skills skill-developmentInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Guide for creating effective skills and contributing them to the communal knowledge base.
Creating skills:
Contributing skills:
skill-name/
├── SKILL.md (required)
│ ├── YAML frontmatter (name, description)
│ └── Markdown instructions
└── Bundled Resources (optional)
├── scripts/ - Executable code
├── references/ - Documentation loaded as needed
└── assets/ - Files used in output
---
name: skill-name
description: What this skill does. Use when [triggers].
---
# Skill Name
[Instructions in imperative form...]
Metadata rules:
name: lowercase, hyphens, gerund form (e.g., creating-skills)description: Lead with action verbs, end with "Use when [triggers]"Write in imperative/infinitive form (verb-first), not second person:
Keep SKILL.md lean (<5k words). Move detailed content to references/:
Include scripts for tasks that:
This repository is a living knowledge base. Skills must contain general-purpose knowledge that helps many agents - not project-specific configs or personal preferences.
| ✅ Contribute | ❌ Don't Contribute | |--------------|-------------------| | Patterns that appear 3+ times | One-off solutions | | General API/tool patterns | Project-specific configs | | Battle-tested workarounds | Personal preferences | | Gap in existing skills | Already documented elsewhere |
Before contributing, verify:
add/skill-name or fix/skill-nameSee references/pr-workflow.md for detailed PR process.
scripts/init_skill.py - Initialize skill directory structurescripts/package_skill.py - Package skill for distributionscripts/quick_validate.py - Validate SKILL.md formatreferences/recognizing-learnings.md - Patterns for spotting valuable learningsreferences/validation-criteria.md - Detailed validation guidelinesreferences/pr-workflow.md - PR process and templatesreferences/contribution-examples.md - Real contribution examplesreferences/progressive-disclosure-research.md - Research on skill organizationtesting
Navigates archived ChatGPT or Claude-style conversation exports and a MemFS reference archive on demand. Use when recalling what a past assistant knew, searching old conversations, rendering specific chats, seeding reference memory from export sidecars, or mining historical context without doing a full import.
testing
Migrates deprecated Letta Filesystem folders/files to MemFS using markdown document corpora, chunking, local lexical search, and QMD semantic search via the memfs-search skill. Use when replacing folders.files.upload, working with PDFs or document QA, or emulating open_file, grep_file, and search_file behavior.
data-ai
Configures Letta agent compaction settings and custom summarization prompts. Use when a user asks to change an agent's compaction prompt, improve summaries after context eviction, tune sliding-window or all-message compaction, or design companion/coding-agent continuity summaries.
development
Semantic search over agent memory files. Use when you need to find conceptually related memory blocks, discover forgotten reference files, check what you already know before creating new memory, or search beyond exact keyword matching. Currently supports QMD (local, no API keys).