Discover what bundled skills exist in this mimir install and what each one does. Use when you're not sure if a capability is already covered by a skill ("can I X?", "is there a skill for Y?", "what skills do I have?"). Reads SKILL.md frontmatter from each skill directory and surfaces names + descriptions.
Scanned 9/1/2026
Install to Claude Code
npx -y skills add jasoncarreira/mimir --skill find-skills --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Find Skills?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jasoncarreira-find-skills)More formats (shields.io, HTML) on the badges page.
---
name: find-skills
description: Discover what bundled skills exist in this mimir install and what each one does. Use when you're not sure if a capability is already covered by a skill ("can I X?", "is there a skill for Y?", "what skills do I have?"). Reads SKILL.md frontmatter from each skill directory and surfaces names + descriptions.
success_criteria:
# The skill's whole purpose is enumerating + filtering the skills
# tree. A Bash call that touches the skills/ or .mimir_builtin_skills/
# paths is the canonical signal of "discovery actually ran".
any_of:
- tool_call:
name: Bash
args:
command_glob: "*skills/*/SKILL.md*"
- tool_call:
name: Bash
args:
command_glob: "*.mimir_builtin_skills*"
---
<!-- desc: Discover what bundled skills exist and what each does — reads SKILL.md frontmatter from each skill directory. -->
# Find Skills
mimir's bundled skills live under `skills/<name>/SKILL.md` (relative
to `MIMIR_HOME`). The system prompt's Skills section already lists them by
name; this skill is for *discovery* — when you want a one-line description of
what each skill is for, or you're searching for a capability and want to see
if it's already covered.
## Contract
**Trigger**: Uncertainty about what skills exist or what a skill covers —
"can I X?", "is there a skill for Y?", "what skills do I have?", "what does
`<name>` actually do?". Also fires when about to write a new skill, to
check whether the capability is already covered.
**Requires**: `<home>/skills/` and / or `<home>/.mimir_builtin_skills/`
present (both seeded by `mimir setup` / refreshed at startup); ability to
run Bash for the awk-based frontmatter extractor.
**Guarantees**:
- One-line descriptions sourced from each SKILL.md's YAML frontmatter — no
guessing, no hallucinated capabilities.
- Both operator-installed (`<home>/skills/`) and bundled
(`<home>/.mimir_builtin_skills/`) skills appear in the same listing.
- Output is reproducible — same skill tree → same listing.
**Does not**: Load skill bodies (only the frontmatter); execute the skills
it surfaces; install new skills (that's `mimir skills install`); resolve
which copy wins when operator + bundled both exist (operator shadows
bundled — `installed_skill_names` is the canonical resolver elsewhere in
the code).
## List all skills with descriptions
```bash
for d in "$HOME"/skills/*/; do
name=$(basename "$d")
# Extract the description: line from the YAML frontmatter (between the two ---).
desc=$(awk '/^---$/{n++; next} n==1 && /^description:/{sub(/^description:[[:space:]]*/, ""); print; exit}' "$d/SKILL.md")
printf '%-22s — %s\n' "$name" "$desc"
done
```
(Replace `$HOME` with `$MIMIR_HOME` if `HOME` isn't set to it.)
## Find a skill by keyword
```bash
grep -l -i "<keyword>" "$HOME"/skills/*/SKILL.md
```
Or to search the descriptions specifically:
```bash
for d in "$HOME"/skills/*/; do
name=$(basename "$d")
desc=$(awk '/^---$/{n++; next} n==1 && /^description:/{sub(/^description:[[:space:]]*/, ""); print; exit}' "$d/SKILL.md")
if echo "$desc" | grep -qi "<keyword>"; then
echo "$name: $desc"
fi
done
```
## Read a specific skill in full
```bash
cat "$HOME/skills/<name>/SKILL.md"
```
Skills with `references/` or `scripts/` subdirectories carry additional
material — `ls "$HOME/skills/<name>/"` to see what else is there.
## When you've decided a capability isn't covered
If no existing skill fits, consider:
1. Solving the task with built-in tools (Read/Write/Edit/Bash, the saga and
channel tools) and proceeding.
2. Filing a "would benefit from a skill" note in your journal or in
`state/agent-feedback.md` for the operator to triage.
3. The skill-creator skill walks through how to draft a new SKILL.md if
you decide it's worth codifying the pattern.
This skill is descriptive, not prescriptive — it surfaces what exists, the
operator decides what to add.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!