chore: track .claude/skills/ for team-shared Claude Code skills#1613
Open
ygit wants to merge 1 commit into
Open
chore: track .claude/skills/ for team-shared Claude Code skills#1613ygit wants to merge 1 commit into
ygit wants to merge 1 commit into
Conversation
Adds the project-level Claude skill at .claude/skills/update-sdk-versions.md so any team member running Claude Code on this repo gets the SDK-bump workflow as a discoverable skill (triggers on phrases like "update SDK versions", "bump HMSSDK", etc., and walks Claude through invoking scripts/update-sdk-versions.js). Updates .gitignore to: - Re-include .claude/ (overrides any global '.claude' ignore rule that individual contributors may have in ~/.gitignore_global) - Still exclude .claude/settings.local.json (per-machine permission rules and hooks; the .local. suffix is Claude Code's convention for personal config that should not be committed) - Still exclude .claude/.cache/ (Claude Code's local cache directory) Mirrors the same pattern just shipped in 100ms-flutter PR #1853 (commit d82680a2). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Merging to
After your PR is submitted to the merge queue, this comment will be automatically updated with its status. If the PR fails, failure details will also be posted here |
5 tasks
|
This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Mirrors the same pattern just shipped in 100ms-flutter PR #1853:
.claude/skills/update-sdk-versions.md— a project-level Claude Code skill that walks Claude through invokingscripts/update-sdk-versions.js(the SDK-bump tool added in commit c93fbfe). Triggers on phrases like "update SDK versions", "bump HMSSDK", "new HMSSDK release", "sync sdk-versions.json"..gitignorewith two layers:!.claude/— re-includes the directory, overriding any global.claudeignore rule that individual contributors may have in~/.gitignore_global(this was the case for the original author)..claude/settings.local.jsonand.claude/.cache/— keeps per-machine personal config out of the repo. The.local.suffix is Claude Code's convention.This is the standard pattern for "team shares some
.claude/content but each developer keeps personal config local". Other repos using Claude Code follow the same recipe.Why now
The skill file has been living locally on the original author's machine since the SDK updater script was added — it never made it into a committed PR because the global gitignore was hiding
.claude/. With this small follow-up, anyone running Claude Code on this repo gets the skill auto-discovered.Test plan
git check-ignore -v .claude/skills/update-sdk-versions.mdreports the file is no longer ignoredgit statusaftercdinto a fresh worktree shows the skill as tracked🤖 Generated with Claude Code