From affa31641ee68a31d8cc2e39df7b020d5064d57b Mon Sep 17 00:00:00 2001 From: Carson Farmer Date: Thu, 23 Apr 2026 10:15:13 -0700 Subject: [PATCH] docs: update skill publishing for committed-skills workflow Add instructions to commit skills after install/update: - Install via gh skill, then commit to repo - Update via gh skill update --all, then commit changes This aligns with the simplified approach in skunkworks-template. --- AGENTS.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index f0d9d6c..95eb240 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -187,7 +187,22 @@ This repo uses `gh skill publish` (GitHub CLI v2.90.0+) to publish skills. **Installing skills from this repo:** ```bash +# Install the skill gh skill install recallnet/codecontext codecontext-setup --agent codex + +# Commit it to your repo +git add .agents/skills/codecontext-setup +git commit -m "chore: add codecontext-setup skill" +``` + +**Updating skills:** +```bash +# Update all installed skills +gh skill update --all + +# Commit the changes +git add .agents/skills/ +git commit -m "chore: update skills" ``` See: https://cli.github.com/manual/gh_skill_publish