Synchronization across model directories. Trigger: After creating or modifying skills, agents, or prompts to sync across directories.
Maintain synchronization across all model directories after modifications to skills, agents, or prompts. With symlink-based installation (CLI local command), most syncing is automatic. This skill covers when manual sync is needed.
Don't use for:
npx ai-agents-skills local)npx ai-agents-skills add)With symlink-based local installation:
skills/react/ → Source of truth
.agents/skills/react/ → Symlink to ../../skills/react
.claude/skills/react/ → Symlink to ../../.agents/skills/react
Symlinked skills auto-sync - modifying source propagates instantly. Manual sync is only needed for:
| Action | Sync Required? | How |
|--------|---------------|-----|
| Modify existing symlinked skill | No (auto) | Symlinks propagate changes |
| Create new skill | Yes | npx ai-agents-skills local |
| Delete skill | Yes | Remove from model directories |
| Modify AGENTS.md | Yes | Update CLAUDE.md, GEMINI.md if they exist |
| Modify prompts | No | Prompts are not copied to model dirs |
| Add skill dependency | Yes | Re-run npx ai-agents-skills local |
Model skill directories (updated via CLI):
.github/skills/ (GitHub Copilot).claude/skills/ (Claude).codex/skills/ (Codex).gemini/skills/ (Gemini).cursor/skills/ (Cursor)Model instruction files (manual update):
AGENTS.md (root, source of truth).claude/instructions.md (Claude-specific).gemini/instructions.md (Gemini-specific).github/copilot-instructions.md (Copilot-specific)# Re-install all skills (creates symlinks for new skills)
npx ai-agents-skills local
# Validate all skills are properly installed
npx ai-agents-skills validate --all
# List installed skills per model
npx ai-agents-skills list
Always edit the source in skills/ directory. Model directories should contain only symlinks (local) or copies that get overwritten on sync.
What changed?
→ Existing skill content → No sync needed (symlinks auto-propagate)
→ New skill created → Run: npx ai-agents-skills local
→ Skill deleted → Remove symlinks from model dirs
→ AGENTS.md modified → Update model instruction files if they exist
→ Skill dependencies changed → Re-run: npx ai-agents-skills local
→ Multiple changes → Run: npx ai-agents-skills local
No action needed - symlinks propagate changes automatically.
npx ai-agents-skills local to install to all model directoriesnpx ai-agents-skills validate --skill {name} to verify.claude/instructions.md exists → regenerate via CLI.gemini/instructions.md exists → regenerate via CLIAfter git pull or multiple changes:
npx ai-agents-skills local # Re-install all skills
npx ai-agents-skills validate --all # Verify everything
Syncing a newly created skill (my-skill) across all installed model directories.
# 1. Skill was just created at skills/my-skill/SKILL.md
# It does not yet exist in any model directory — symlinks are missing.
# 2. Verify it follows skill-creation standards
npx ai-agents-skills validate --skill my-skill
# → Output: ✓ my-skill passes all checks
# 3. Run local install to create symlinks in all model directories
npx ai-agents-skills local
# → Creates:
# .agents/skills/my-skill → symlink → ../../skills/my-skill
# .claude/skills/my-skill → symlink → ../../.agents/skills/my-skill
# .cursor/skills/my-skill → symlink → ../../.agents/skills/my-skill
# (all installed model dirs receive the symlink)
# 4. Verify sync is complete
npx ai-agents-skills validate --all
# → Output: ✓ All 63 skills validated across 4 model directories
# 5. Any future edits to skills/my-skill/SKILL.md are auto-propagated
# via symlinks — no additional sync command needed.
Key takeaway: only new skills need the sync command. Edits to existing symlinked skills propagate automatically.
No model directories installed: Skip sync. Skills will be installed when user runs npx ai-agents-skills local for the first time.
Partial installation: Only sync to existing model directories. Suggest npx ai-agents-skills local to install missing models.
Copied (non-symlinked) installations: Must manually re-copy or re-run CLI to sync. This happens with external install type.
Conflicting content in model dirs: Always prioritize skills/ as source of truth. Re-run CLI to overwrite.
skills/ directorySearch for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer