/update-installed-skills
Use when syncing or updating previously installed skills to their latest version. Always dry-run updates before applying, and check for breaking changes.
$ npx -y skills add MoizIbnYousaf/Ai-Agent-Skills --skill update-installed-skills --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/update-installed-skills
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when syncing or updating previously installed skills to their latest version. Always dry-run updates before applying, and check for breaking changes.
SKILL.md
update-installed-skills.SKILL.mdname: update-installed-skills
description: Use when syncing or updating previously installed skills to their latest version. Always dry-run updates before applying, and check for breaking changes.
category: workflow
version: 4.1.0
Update Installed Skills
Goal
Keep installed skills current without breaking the agent's workflow or silently overwriting local customizations.
Guardrails
- Always use `--dry-run` before running a real update.
- Check what is currently installed before updating: `npx ai-agent-skills list --installed`.
- Never update all skills at once in production without reviewing the dry-run output.
- Use `--format json` to capture structured update results for logging.
Workflow
1. List currently installed skills.
npx ai-agent-skills list --installed --format json --fields name
2. Check for available updates.
npx ai-agent-skills check
3. Dry-run the update.
npx ai-agent-skills sync <skill-name> --dry-run
4. Apply the update after reviewing.
npx ai-agent-skills sync <skill-name>
5. For bulk updates, review each skill's dry-run output.
npx ai-agent-skills sync --all --dry-run
Gotchas
- Skills installed from GitHub will attempt a fresh clone during sync. If the upstream repo is gone, the update will fail gracefully.
- Manually edited SKILL.md files will be overwritten by sync. Back up customizations before syncing.
- The `check` command makes network requests to verify upstream sources. It may be slow or fail if sources are unreachable.
Read more
name: update-installed-skills description: Use when syncing or updating previously installed skills to their latest version. Always dry-run updates before applying, and check for breaking changes. category: workflow version: 4.1.0
Update Installed Skills
Goal
Keep installed skills current without breaking the agent's workflow or silently overwriting local customizations.
Guardrails
- Always use `--dry-run` before running a real update.
- Check what is currently installed before updating: `npx ai-agent-skills list --installed`.
- Never update all skills at once in production without reviewing the dry-run output.
- Use `--format json` to capture structured update results for logging.
Workflow
1. List currently installed skills.
npx ai-agent-skills list --installed --format json --fields name
2. Check for available updates.
npx ai-agent-skills check
3. Dry-run the update.
npx ai-agent-skills sync <skill-name> --dry-run
4. Apply the update after reviewing.
npx ai-agent-skills sync <skill-name>
5. For bulk updates, review each skill's dry-run output.
npx ai-agent-skills sync --all --dry-run
Gotchas
- Skills installed from GitHub will attempt a fresh clone during sync. If the upstream repo is gone, the update will fail gracefully.
- Manually edited SKILL.md files will be overwritten by sync. Back up customizations before syncing.
- The `check` command makes network requests to verify upstream sources. It may be slow or fail if sources are unreachable.
Universal skill installer and package manager for AI coding agents. One command, 12+ runtimes. npx ai-agent-skills
Repo: MoizIbnYousaf/Ai-Agent-Skills
Other skills on moizibnyousaf-ai-agent-skills.
- /ask-questions-if-underspecified
Clarify requirements before implementing. Do not use automatically, only when invoked explicitly.
Open skill - /audit-library-health
Use when checking the overall health of a skills library. Run doctor, validate, check for stale skills, and verify generated docs are in sync.
Open skill - /backend-development
Backend API design, database architecture, microservices patterns, and test-driven development. Use for designing APIs, database schemas, or backend system architecture.
Open skill - /best-practices
Transforms vague prompts into optimized Claude Code prompts. Adds verification, specific context, constraints, and proper phasing. Invoke with /best-practices.
Open skill - /browse-and-evaluate
Use when exploring the ai-agent-skills catalog to find, compare, and evaluate skills before installing. Always use --fields to limit output size and --dry-run before committing to an install.
Open skill - /build-workspace-docs
Use when regenerating README.md and WORK_AREAS.md in a managed library workspace. Always dry-run first to preview changes.
Open skill

