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