From c20e24d295441e7619e0b4138955902ef14eeb73 Mon Sep 17 00:00:00 2001 From: james Date: Sat, 30 May 2026 21:28:42 -0700 Subject: [PATCH] fix: rename Team Kit pr-review-canvas skill to pr-review-html The Team Kit's pr-review-canvas skill produces a standalone HTML file, but shares the name: pr-review-canvas with the separate pr-review-canvas plugin that produces a Cursor Canvas. This naming collision confuses users who have both installed, since they share the same /pr-review-canvas invocation but produce different output formats. Rename the Team Kit skill to pr-review-html (directory + frontmatter name + README reference) to make the distinction explicit. Update the description to point users to the pr-review-canvas plugin when they want Cursor Canvas output. Fixes #69 --- cursor-team-kit/README.md | 2 +- .../skills/{pr-review-canvas => pr-review-html}/SKILL.md | 6 +++--- .../skills/{pr-review-canvas => pr-review-html}/renderer.js | 0 .../skills/{pr-review-canvas => pr-review-html}/styles.css | 0 .../{pr-review-canvas => pr-review-html}/template.html | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename cursor-team-kit/skills/{pr-review-canvas => pr-review-html}/SKILL.md (95%) rename cursor-team-kit/skills/{pr-review-canvas => pr-review-html}/renderer.js (100%) rename cursor-team-kit/skills/{pr-review-canvas => pr-review-html}/styles.css (100%) rename cursor-team-kit/skills/{pr-review-canvas => pr-review-html}/template.html (100%) diff --git a/cursor-team-kit/README.md b/cursor-team-kit/README.md index f25739d..8183a1a 100644 --- a/cursor-team-kit/README.md +++ b/cursor-team-kit/README.md @@ -16,7 +16,7 @@ Internal-style workflows for CI, code review, shipping, and test reliability. Th |:------|:------------| | `loop-on-ci` | Watch CI runs and iterate on failures until checks pass | | `review-and-ship` | Run a structured review, commit changes, and open a PR | -| `pr-review-canvas` | Generate an interactive HTML PR walkthrough with annotated, categorized diffs | +| `pr-review-html` | Generate an interactive HTML PR walkthrough with annotated, categorized diffs | | `verify-this` | Prove or disprove claims with baseline/treatment artifacts and a clear verdict | | `control-cli` | Build or adapt a local harness to drive and profile interactive CLIs or TUIs | | `control-ui` | Build or adapt a local browser/CDP harness for web or Electron UIs | diff --git a/cursor-team-kit/skills/pr-review-canvas/SKILL.md b/cursor-team-kit/skills/pr-review-html/SKILL.md similarity index 95% rename from cursor-team-kit/skills/pr-review-canvas/SKILL.md rename to cursor-team-kit/skills/pr-review-html/SKILL.md index d88de04..3bdbfa2 100644 --- a/cursor-team-kit/skills/pr-review-canvas/SKILL.md +++ b/cursor-team-kit/skills/pr-review-html/SKILL.md @@ -1,10 +1,10 @@ --- -name: pr-review-canvas +name: pr-review-html disable-model-invocation: true -description: Generate an interactive PR review walkthrough as an HTML page. Fetches PR data via gh API, categorizes files into core vs mechanical changes, adds reviewer annotations, and renders diffs with moved-code detection. Use when the user pastes a GitHub PR URL and asks for a review, walkthrough, or summary, or says "review this PR". +description: Generate an interactive PR review walkthrough as a standalone HTML page. Fetches PR data via gh API, categorizes files into core vs mechanical changes, adds reviewer annotations, and renders diffs with moved-code detection. Use when the user pastes a GitHub PR URL and asks for an HTML review, walkthrough, or summary. For a Cursor Canvas output, use the pr-review-canvas plugin instead. --- -# PR Review Canvas +# PR Review HTML Generate an interactive HTML review of a GitHub PR that reads like a peer walking you through what matters. diff --git a/cursor-team-kit/skills/pr-review-canvas/renderer.js b/cursor-team-kit/skills/pr-review-html/renderer.js similarity index 100% rename from cursor-team-kit/skills/pr-review-canvas/renderer.js rename to cursor-team-kit/skills/pr-review-html/renderer.js diff --git a/cursor-team-kit/skills/pr-review-canvas/styles.css b/cursor-team-kit/skills/pr-review-html/styles.css similarity index 100% rename from cursor-team-kit/skills/pr-review-canvas/styles.css rename to cursor-team-kit/skills/pr-review-html/styles.css diff --git a/cursor-team-kit/skills/pr-review-canvas/template.html b/cursor-team-kit/skills/pr-review-html/template.html similarity index 100% rename from cursor-team-kit/skills/pr-review-canvas/template.html rename to cursor-team-kit/skills/pr-review-html/template.html