Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .claude/rules/plugin-entity-taxonomy.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ put_file() {
# authenticated viewers, so the issue body is correct.
verify_on() {
local branch="$1" api_path="$2"
local attempt
for attempt in 1 2 3 4 5; do
for _ in 1 2 3 4 5; do
if gh api "$api_path?ref=$branch" --jq .sha >/dev/null 2>&1; then
return 0
fi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ RULE=".claude/rules/plugin-building-guidance.md"
rewrite_skill() {
file="$1"
tmp="$(mktemp)"
# shellcheck disable=SC2016 # ${CLAUDE_PLUGIN_ROOT} is matched literally, not expanded.
sed \
-e 's|${CLAUDE_PLUGIN_ROOT}/skills/guidance/references/|.claude/skills/plugin-guidance/references/|g' \
-e 's|^name: guidance$|name: plugin-guidance|' \
Expand Down
Loading