Skip to content
Development
Skill

/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.

From plugin
ai-agent-skills
1.1k17 skills3 agents
Install
$ npx -y skills add skillcreatorai/ai-agent-skills --skill update-installed-skills --agent claude-code

How 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.md
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.
Read more
Ships withai-agent-skills

Universal skill installer and package manager for AI coding agents. One command, 12+ runtimes. npx ai-agent-skills

Get the whole plugin