This is an automated email from the ASF dual-hosted git repository.
hanahmily pushed a commit to branch vendor-update
in repository https://gitbox.apache.org/repos/asf/skywalking-banyandb.git
The following commit(s) were added to refs/heads/vendor-update by this push:
new 45d34843d docs(skills): add skills README with installation and usage
guide
45d34843d is described below
commit 45d34843d1629ed4723ae409b37000b99784fa5d
Author: Hongtao Gao <[email protected]>
AuthorDate: Mon Mar 23 01:56:50 2026 +0000
docs(skills): add skills README with installation and usage guide
Document how contributors can install the vendor-update skill using
`claude --install-extension vendor-update.skill`.
---
skills/README.md | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/skills/README.md b/skills/README.md
new file mode 100644
index 000000000..1784c1841
--- /dev/null
+++ b/skills/README.md
@@ -0,0 +1,38 @@
+# Claude Code Skills
+
+This directory contains [Claude
Code](https://github.com/anthropics/claude-code) skills for working with
BanyanDB.
+
+## Installing Skills
+
+Download the `.skill` bundle and install it:
+
+```bash
+claude --install-extension vendor-update.skill
+```
+
+This installs the skill to `~/.claude/skills/` where Claude Code
auto-discovers it.
+
+## Available Skills
+
+### vendor-update
+
+Upgrades Go/Node.js vendor dependencies and syncs tool versions.
+
+**Triggers:** "upgrade dependencies", "vendor update", "vendor-upgrade", "bump
dependencies", "update packages"
+
+**What it does:**
+1. Runs `make vendor-update` across all projects
+2. Checks `scripts/build/version.mk` against upgraded `go.mod` to detect tool
version drift
+3. Updates `version.mk` if a library bump warrants a tool version bump
+4. Removes stale binaries from `bin/` when versions change
+
+**Usage:**
+```
+$ claude
+<user> upgrade dependencies
+```
+
+Or trigger explicitly:
+```
+<user> run vendor-update
+```