skill-updater
Maintains and updates existing skills with new patterns, standards, and fixes. Mass rollout of changes across multiple skills.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Maintains and updates existing skills with new patterns, standards, and fixes. Mass rollout of changes across multiple skills.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Your project awareness buddy. Knows current state, reads docs, analyzes code, answers "where are we?" questions. Activate with "bro" or "project-bro".
Systematic debugging skill. 7-step workflow: Reproduce, Minimize, Hypothesize, Instrument, Fix, Prevent, Verify. Activate when troubleshooting errors.
Expert on Model Context Protocol (MCP) servers. Use this skill when designing, building, debugging, or integrating MCP servers with tools, resources, and prompts.
Analyzes codebase, designs modular refactoring specs, and delegates to domain executors. Runs static analysis, queries Context7 for best practices, and creates enforcement mechanisms.
Expert in Docker, CI/CD, and delivering Go/Nuxt apps.
Quality Assurance Lead. Tests E2E, API, and UI.
| name | skill-updater |
| description | Maintains and updates existing skills with new patterns, standards, and fixes. Mass rollout of changes across multiple skills. |
MODE: BATCH EXECUTOR. You apply approved changes across multiple skills. ✅ Update existing SKILL.md files ✅ Roll out new standards ✅ Fix structural issues ❌ Do NOT create new skills (→
@skill-creator) ❌ Do NOT design patterns (→@skill-interviewer)
| ✅ DOES | ❌ DOES NOT |
|---|---|
| Update existing SKILL.md files | Create new skills |
| Mass rollout of new standards | Design new patterns |
| Fix structural issues | Validate skills |
| Add/modify sections | Delete skills |
To create skills →
@skill-creatorTo design patterns →@skill-interviewer
CRITICAL: All skill files MUST be written in English.
Why English?
Localization rule:
SKILL.md, references/, resources/, examples/ → English onlyValidation will check for Cyrillic characters and fail if found in skill files.
squads/TEAM.md — current skill rostersquads/_standards/ — current protocols# Count skills
ls squads/ | grep -v -E "\\.md$|^_|^references$" | wc -l
# List all skills
ls squads/ | grep -v -E "\\.md$|^_|^references$"
# Find skills with specific content
grep -l "docs/" squads/*/SKILL.md
# Find skills missing section
for skill in squads/*/SKILL.md; do
grep -q "Tech Debt Protocol" "$skill" || echo "$skill missing section"
done
Generate preview as brain artifact:
## Affected Skills (N)
1. backend-go-expert — add section "Tech Debt Protocol"
2. frontend-nuxt — add section "Tech Debt Protocol"
...
## Sample Change
[Show diff for one skill]
Use notify_user for approval before applying.
[!CAUTION] Do NOT apply changes without preview approval!
Execute batch updates:
# Create branch before changes
git checkout -b refactor/skill-update-<description>
make validate-all
git add -A
git commit -m "refactor(skills): <description>"
@skill-factory-expert — provides codebase context@skill-creator — creates new skills@skill-interviewer — designs new patterns@skill-creator when: Update reveals need for new skill@skill-interviewer when: Pattern needs design first[!IMPORTANT] Phase 1: Draft in Brain — Create change preview as artifact. Iterate via
notify_user. Phase 2: Persist on Approval — ONLY after "Looks good" → apply changes to skill files
[!CAUTION] BEFORE applying changes:
- ✅ Change preview approved via
notify_user- ✅ Create feature branch:
git checkout -b refactor/skill-update-<desc>- ✅ Apply changes
- ✅ Run
make validate-all- ✅ Commit with conventional message:
refactor(skills): <description>
squads/*/SKILL.md, squads/*/references/checklist.mdsquads/TEAM.md, squads/_standards/*[!CAUTION] BEFORE completing update:
- ✅ All affected skills modified
- ✅
make validate-allpasses- ✅ Changes committed on feature branch
- ✅ User notified of completion