Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Morrison-Lab/ai-config --skill spot-skill-opportunities명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | spot-skill-opportunities |
| description | Find opportunities for new skills. |
| user-invocable | true |
| allowed-tools | ["Bash","Read"] |
The recognition half of "always look for opportunities to create new reusable
skills" (memories/preferences.md). skill-builder is the construction
half — it scaffolds a skill once one is needed. This skill is what decides
that one is needed, and it fires continuously, in the middle of ordinary
work, not only at a session or PR-end checkpoint.
The same recognition applies one level down: if the emerging pattern is really
a dedicated, read-only fan-out worker a heavy skill's per-item step needs
(not a new user-invocable workflow), hand off to agent-builder instead of
skill-builder.
record-learnings (continuous),
ums (explicit checkpoint), wrap-up (session end), and post-merge
(PR end) — those skills defer the recognition judgment call to this one.grep -ril "<keywords>" skills/*/SKILL.md
(see
check-open-prs-before-duplicating
for the PR check). If something already owns this concern, suggest
extending it — or, if a PR is already building it, redirect to that PR —
instead of proposing a new skill.ums,
mid-skill-builder, mid-agent-builder), hand off directly without
waiting for user confirmation.skill-builder; a dedicated read-only fan-out worker persona for an
existing heavy skill goes to agent-builder. Once the user agrees (or the
context already sanctioned it), let that skill do its own extend-first
check and scaffolding — don't duplicate its step 0 here.skill-builder — the construction step this hands off to. This skill
never scaffolds a SKILL.md itself; it only recognizes the need and routes
there.agent-builder — the construction step for the fan-out-worker case:
when the recurring pattern is a dedicated read-only subagent for a heavy
skill's per-item step, rather than a new user-invocable workflow.record-learnings — passive and continuous like this skill, but covers
the broader category of learnings (facts, tool quirks, preferences). Its
"if it's a skill, create it" step is this skill's specific case.ums — the explicit checkpoint version. Its checklist item "did a
workflow emerge that could be a new skill?" is this skill's standing
version, run continuously instead of only at the checkpoint.wrap-up / post-merge — session- and PR-level bookends that already
embed a UMS pass looking for exactly this signal; this skill is what fires
during the work, so the pattern is caught before the bookend rather than
only at it.consolidate-skills / find-overlap — the cleanup counterparts for
skills that already shipped and turned out to overlap; this skill tries to
prevent that overlap from being created in the first place by checking for
an existing owner before proposing a new skill.config-ai — the explicit, user-invoked counterpart: this skill
proactively notices a skill/agent opportunity mid-task; config-ai is what
fires when the user directly states a capability and doesn't yet know (or
care) whether it's a skill, agent, memory, hook, or gha capability.wrap-up) instead of live, in
the moment when the repetition first appears.