OR Key
drop another .md file to compare - side-by-side diff against find-skills

find-skills

Finds and adds new skills so your assistant can do more over time.
description: "Triggers on prompt mention of 'find-skills'."
personal 2 files

What it does for you

Finds and adds new skills so your assistant can do more over time.

What it produces

A recent result, so you can see the kind of work it returns.

loading…

How to get it

These run inside the Snappy workspace. Want this working in your business? I set skills like this up with you, in one focused week.

Work with me
For developers how this skill is built, graded, and how it runs

at a glance- the short version

eval modeauto-shape
categorySystem
stages5

what's inside - the parts that make up a skill 2/4 present

A skill is just a few plain-text files. Only the main one is required. The rest are optional, added as the work needs them. This is what the skill is made of; how it runs is just below.

The skill
state/skills/find-skills/SKILL.md present
the skill itself, in plain text
The main file. It says what the skill is and lays out the steps in plain English.
Code
state/lib/find-skills.ts not present
code the skill can run
Optional. Many skills are just words and need no code at all.
Scripts
state/bin/find-skills/ not present
helper scripts
Optional. Added when a skill has a few commands to run.
Loader
state/skills/find-skills/AGENTS.md present
what the AI loads on the fly
Loaded automatically the moment this skill is needed. Kept short on purpose.

how it runs - the shared frame every skill uses 3/5 present

Every skill runs the same way. One part does the work, a separate part checks it, and a short loader hands the AI exactly what it needs for the job. Anything this skill doesn't use shows a one-line note saying why, on purpose, not by accident.

makes the work The worker
inferred
see `state/skills/find-skills/SKILL.md` Steps from the run command
No worker is named directly, so the command this skill runs is treated as the worker.
checks the work The reviewer
inferred
shape gate an automatic check
The check is an automatic pass or fail on the shape of the result, run separately from the work itself.
frame
learns Self-correction
present
fixes itself learns from gaps
When a run hits a gap, the skill gets edited on the spot [FIXED] or queued for a bigger rewrite [LOGGED], so it keeps getting better.
tidies up Background fixes
present
queued for rewrite runs in the background
Bigger fixes that can't be made on the spot get queued and rewritten in the background later.
remembers Run history
present
state/log/evals.ndjson unknown runs
Every run is written down here, so the next time this skill is used it already knows how the last runs went.
Critical rules the things this skill must not get wrong
No must-not-break rules called out for this skill. Anything important lives in the writeup below.

what it has learned - fixes written back in over time sample

When a run hits something this skill didn't handle, the fix gets written back into the skill so it doesn't happen again. FIXED means it was corrected on the spot. LOGGED means it's queued for a bigger rewrite. Either way, the skill gets a little better and never makes the same mistake twice.

  1. Loading feedback rows…

how the work flows- step by step

1 control
Scope — no side effects
Identify the domain of the work you're about to do. Pick 2–3 specific
what this step does
Identify the domain of the work you're about to do. Pick 2–3 specific keywords. Skip if the work is purely Snappy-internal (no external library, no platform API).
2 stage
Search
```bash
npx skills find <keyword>
what this step does
Multiple targeted searches beat one broad search. Examples: - npx skills find swiftui animation - npx skills find elevenlabs tts - npx skills find macos codesign - npx skills find systematic debugging Results show install count — use it as a proxy for quality. >1K installs is a strong signal; >10K is gold.
3 stage
Gate
Apply judgment:
what this step does
Apply judgment: - Does any result actually match the work? (Don't install Flutter skills for Swift work.) - Has the skill been recently updated? (Visit the skills.sh URL to verify.) - Is the install count meaningful? (Be skeptical of single-digit installs unless the publisher is authoritative — vendor-official skills like elevenlabs/skills/text-to-speech get a pass even with lower counts.)
4 stage
Act — install globally
```bash
npx skills add <owner/repo@skill> -g -y
what this step does
The -g is critical: it installs at user-level (~/.claude/skills/...) so the skill is available across every Claude session AND every subagent dispatched from this machine. Without -g, the install is project-local and the leverage is lost.
5 data
Log + eval
Append to memory the skill that was useful so future agents know it exists
echo "[$(date -u +%FT%TZ)] find-skills: installed <slug> for <reason> [FIXED]" >> state/log/agents-md-feedback.log
what this step does
Append to memory the skill that was useful so future agents know it exists without re-searching: Update ~/.claude/projects/<project>/memory/feedback_use_findskills_first.md with the new install in the "Already installed" list.

SKILL.md- the skill, written out in plain English

find-skills

Robert's standing rule (2026-04-25): before writing non-trivial code in any domain - Apple frameworks, third-party API integration, build/CI tooling, design systems, debugging methodology - search the open Skills ecosystem first via npx skills find <kw>. If a battle-tested skill exists with a healthy install count, install it globally so the knowledge is loaded for this AND future sessions AND every subagent we dispatch.

The whole point: we are NOT alone in figuring out e.g. SwiftUI animation patterns or AVFoundation playback or macOS code-signing. People have already solved these problems and packaged the patterns. Reinventing is bandwidth that should have gone to Robert's actual feature work.

This skill exists because in one session we burned hours on:

  • SwiftUI animation gotchas (fixable with dpearson2699/swift-ios-skills@swiftui-animation)
  • AVAudioPlayer init paths (fixable with charleswiltgen/axiom@axiom-avfoundation-ref)
  • macOS codesign + entitlement quirks (partial coverage in dimillian/skills@macos-spm-app-packaging)
  • Stale binary debugging (would have been faster with obra/superpowers@systematic-debugging)

Every one of those was findable in <30 seconds with npx skills find.

Steps

1. Scope - no side effects

Identify the domain of the work you're about to do. Pick 2-3 specific keywords. Skip if the work is purely Snappy-internal (no external library, no platform API).

npx skills find <keyword>

Multiple targeted searches beat one broad search. Examples:

  • npx skills find swiftui animation
  • npx skills find elevenlabs tts
  • npx skills find macos codesign
  • npx skills find systematic debugging

Results show install count - use it as a proxy for quality. >1K installs is a strong signal; >10K is gold.

3. Gate

Apply judgment:

  • Does any result actually match the work? (Don't install Flutter skills

for Swift work.)

  • Has the skill been recently updated? (Visit the skills.sh URL to verify.)
  • Is the install count meaningful? (Be skeptical of single-digit installs

unless the publisher is authoritative - vendor-official skills like elevenlabs/skills/text-to-speech get a pass even with lower counts.)

4. Act - install globally

npx skills add <owner/repo@skill> -g -y

The -g is critical: it installs at user-level (~/.claude/skills/...) so the skill is available across every Claude session AND every subagent dispatched from this machine. Without -g, the install is project-local and the leverage is lost.

5. Log + eval

Append to memory the skill that was useful so future agents know it exists without re-searching:

echo "[$(date -u +%FT%TZ)] find-skills: installed <slug> for <reason> [FIXED]" >> state/log/agents-md-feedback.log

Update ~/.claude/projects/<project>/memory/feedback_use_findskills_first.md with the new install in the "Already installed" list.

Eval

OutcomeScore
Searched + found a high-quality match + installed before reinventing1.0
Searched + no relevant skill exists, proceeded with own implementation0.7
Forgot to search, reinvented a pattern that an installed skill covered0.0
Installed an irrelevant skill ("found something" without judging fit)0.3

The default failure mode is silent: we don't notice we should have searched. The eval is therefore manual review - Robert (or a future audit pass) checks recent feedback log entries against installed skills to spot reinvention.

Already installed (snappy-os, 2026-04-25)

These are loaded globally and available to every subagent without re-installation:

SlugDomainInstalls
avdlee/swiftui-agent-skill@swiftui-expert-skillSwiftUI patterns18.3K
twostraws/swiftui-agent-skill@swiftui-proSwiftUI (Hacking with Swift)13.2K
dpearson2699/swift-ios-skills@swiftui-animationSwiftUI animation1.3K
elevenlabs/skills@text-to-speechElevenLabs TTS official3.8K
dimillian/skills@macos-spm-app-packagingmacOS SwiftPM packaging673
obra/superpowers@systematic-debuggingDebugging methodology71.3K
avdlee/swift-concurrency-agent-skill@swift-concurrencySwift actor/await9.8K
charleswiltgen/axiom@axiom-avfoundation-refAVFoundation reference222

Known Pitfalls

  • Don't install everything that matches. Each installed skill costs

context budget when loaded. Pick the one with the highest install count AND tightest match to the actual problem.

  • Don't search for snappy-os-internal concepts. "snappy skill" or "PID

loader" won't find anything because those are our terms. Search for the GENERIC version of the problem ("self-correcting prompt", "feedback loop cli").

  • Don't forget -g. Without the global flag, the skill is local to

the current cwd's Skills config. Subagents dispatched from a different cwd won't see it.

When to create your own skill

If a non-trivial pattern emerges from snappy-os work that COULD help others (e.g. our minimal-harnessing rule, our PID loader pattern, our snappy-os deploy script), consider scaffolding a publishable skill via npx skills init <name> so the knowledge flows back out. The marketplace gets stronger, future Claude sessions in any project benefit.

AGENTS.md- what the AI loads when this skill comes up

find-skills - loader

Per-turn rules for the find-skills skill. Full reference: state/skills/find-skills/SKILL.md. Do not skip these.

Critical Rules

_(no failures recorded yet - this skill has not produced hard-won rules. Read state/skills/find-skills/SKILL.md before invoking.)_

Commands

| ui dashboard | state/skills/find-skills/resources/ui.openui | |invoke: see state/skills/find-skills/SKILL.md Steps section |eval log: state/log/evals.ndjson (skill: "find-skills")

Self-Test

An agent reading this should correctly:

  1. [ ] Know which lib/bin artifact backs this skill (or that it is prose-only)
  2. [ ] Know what to write to state/log/evals.ndjson after invoking
  3. [ ] Know the eval mode (auto / shape / manual) from the .md frontmatter

Self-report

If this loader fell short, append a line:

echo "[$(date -u +%FT%TZ)] find-skills: <what was missing>" >> state/log/loader-feedback.log

<!-- kernel-ok: historical attribution for the PID-loader pattern. -->

Self-correcting loader (PID feedback)

This is the rule that makes loaders learn. Ported from snappy-kernel, where it demonstrably worked: the snappy-dom-cartographer skill mapped Skool admin UI once, every later ship-agent inherited the full map for free.

Before you finish, do two things:

1. Fix gaps (P - proportional). MANDATORY. If this loader didn't cover your case - if you had to read another file, run an undocumented command, work around a wrong selector, or discover a quirk - you MUST attempt an Edit to this AGENTS.md before you log.

  • Default action: edit this file. Surgical. Add the missing line, table

row, or code example where it belongs. No restructuring.

  • Only LOGGED is allowed when: the fix needs >10 lines, spans multiple

files, or requires a structural rewrite. In that case the state/regen/drain.sh queue picks it up asynchronously.

  • "I didn't have time" / "it's minor" / "the next agent will figure it out"

are NOT valid reasons. Minor gaps compound - that's the whole point of this loop.

  • Concrete example of a valid P-fix: discover agent-browser screenshot

takes path positionally not as --output <path>. One line in a table. Edit it in. Do not just log it.

  • The goal: the next agent never has to leave the loader.

2. Log the result.

echo "[$(date -u +%FT%TZ)] find-skills: <what was missing or fixed> [FIXED|LOGGED]" >> state/log/loader-feedback.log
  • FIXED = you patched this loader inline (P-fix).
  • LOGGED = too large for inline; the PostToolUse enqueue + Stop-hook drain

will rewrite the loader from scratch on next session-end.

Do not skip this. Every agent run must leave the system better than it found it. The loader is the setpoint; you are the sensor; the gap is the error signal; closing the gap is the correction.

OpenUI Resource

  • Skill-owned OpenUI Lang resource: state/skills/find-skills/resources/ui.openui. Read it before rendering or editing this skill's generated component surface.
  • Treat this resource as a first-class artifact of the skill, not a generic chat response. Improve it when the skill's user-facing output needs to become richer.
  • System resources compose OpenUI primitives and inherit SnappyChat tokens. Use ui_contract: branded in SKILL.md only for deliberate platform or client visuals.

api.ts- the code it can call

⚠ no api.ts - this skill has no typed action surface

scripts- helper scripts it can run

prose-only skill - 3 inline code blocks live in SKILL.md above (no state/bin/ sidecar yet).

how we check it- the checks, plus the last 10 runs

rubric auto-shape no rubric declared
recent no runs actor/auditor: unverifiable
deps none declared

no recent runs logged - the eval contract is declared but nothing has been graded yet