From f123e2f245e30193a1d21942fbbe7f3ecb36eb57 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 19 Aug 2026 18:04:15 +0000 Subject: [PATCH] docs: add "Upgrade skills" section to agent skills page Document how to upgrade installed Materialize agent skills with `npx skills update MaterializeInc/agent-skills`, and note that we publish skill upgrades weekly so users know to check back. Replaces the passing mention of `npx skills update` at the end of the installation section with a dedicated section covering both the scoped upgrade and the upgrade-everything form. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01NcpCEjqLyQatAiXboQuEEm --- .../content/integrations/coding-agent-skills.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/doc/user/content/integrations/coding-agent-skills.md b/doc/user/content/integrations/coding-agent-skills.md index f432daca73249..ef665cc1824ec 100644 --- a/doc/user/content/integrations/coding-agent-skills.md +++ b/doc/user/content/integrations/coding-agent-skills.md @@ -34,7 +34,22 @@ Install the Materialize agent skills with a single command: npx skills add MaterializeInc/agent-skills ``` -Once installed, you can update installed skills by running `npx skills update`. +## Upgrade skills + +We publish upgrades to the Materialize agent skills weekly, so check back +regularly to pick up the latest documentation and reference material. To upgrade +the skills you already have installed: + +```bash +npx skills update MaterializeInc/agent-skills +``` + +To upgrade every skill installed on your machine, regardless of source, omit the +repository: + +```bash +npx skills update +``` ## Claude Code plugins