From 9bdc3dcc2b829a423d502ae937c41f2495ab0aba Mon Sep 17 00:00:00 2001 From: robennals Date: Wed, 26 Aug 2026 22:07:07 -0700 Subject: [PATCH 1/2] Add plugin entries: code-review, pr-manager --- entries/code-review.json | 29 +++++++++++++++++++++++++++++ entries/pr-manager.json | 29 +++++++++++++++++++++++++++++ icons/code-review-10dcfdf9.svg | 5 +++++ icons/pr-manager-64645e85.svg | 7 +++++++ 4 files changed, 70 insertions(+) create mode 100644 entries/code-review.json create mode 100644 entries/pr-manager.json create mode 100644 icons/code-review-10dcfdf9.svg create mode 100644 icons/pr-manager-64645e85.svg diff --git a/entries/code-review.json b/entries/code-review.json new file mode 100644 index 0000000..6c331e1 --- /dev/null +++ b/entries/code-review.json @@ -0,0 +1,29 @@ +{ + "id": "code-review", + "displayName": "Code Review", + "description": "Lists the pull requests awaiting your review, runs your own review skills over one in a BB thread, and turns what it finds into individual GitHub comments you edit and post yourself, each shown beside the code it refers to.", + "icon": { + "url": "./icons/code-review-10dcfdf9.svg" + }, + "tags": [ + "code-review", + "pull-requests", + "github", + "agents", + "review", + "comments" + ], + "author": { + "name": "Rob Ennals", + "github": "robennals", + "url": "https://github.com/robennals" + }, + "source": { + "git": { + "url": "https://github.com/robennals/bb-plugins.git", + "subdir": "plugins/code-review", + "range": "^0.1.0", + "tagPrefix": "code-review/" + } + } +} diff --git a/entries/pr-manager.json b/entries/pr-manager.json new file mode 100644 index 0000000..ebcec7d --- /dev/null +++ b/entries/pr-manager.json @@ -0,0 +1,29 @@ +{ + "id": "pr-manager", + "displayName": "PR Manager", + "description": "Shows your open pull requests and recent merges with their CI and review state summarised as waiting, failing, feedback, approved or merged, and opens or links the BB worktree thread for the one you pick.", + "icon": { + "url": "./icons/pr-manager-64645e85.svg" + }, + "tags": [ + "pull-requests", + "github", + "worktrees", + "threads", + "ci", + "status" + ], + "author": { + "name": "Rob Ennals", + "github": "robennals", + "url": "https://github.com/robennals" + }, + "source": { + "git": { + "url": "https://github.com/robennals/bb-plugins.git", + "subdir": "plugins/pr-manager", + "range": "^0.1.0", + "tagPrefix": "pr-manager/" + } + } +} diff --git a/icons/code-review-10dcfdf9.svg b/icons/code-review-10dcfdf9.svg new file mode 100644 index 0000000..d30894b --- /dev/null +++ b/icons/code-review-10dcfdf9.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/pr-manager-64645e85.svg b/icons/pr-manager-64645e85.svg new file mode 100644 index 0000000..4b45dfc --- /dev/null +++ b/icons/pr-manager-64645e85.svg @@ -0,0 +1,7 @@ + + + + + + + From 2376dcd88f7c90ce7e53a4b42bd6336d99246132 Mon Sep 17 00:00:00 2001 From: robennals Date: Wed, 26 Aug 2026 22:22:53 -0700 Subject: [PATCH 2/2] Say GitHub in both descriptions Neither plugin works with anything but GitHub, and pr-manager's description did not say so at all. The store shows the description, so the requirement belongs there rather than only in the submission. --- entries/code-review.json | 2 +- entries/pr-manager.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/entries/code-review.json b/entries/code-review.json index 6c331e1..0193d9d 100644 --- a/entries/code-review.json +++ b/entries/code-review.json @@ -1,7 +1,7 @@ { "id": "code-review", "displayName": "Code Review", - "description": "Lists the pull requests awaiting your review, runs your own review skills over one in a BB thread, and turns what it finds into individual GitHub comments you edit and post yourself, each shown beside the code it refers to.", + "description": "Lists the GitHub pull requests awaiting your review, runs your own review skills over one in a BB thread, and turns what it finds into individual review comments you edit and post yourself, each shown beside the code it refers to.", "icon": { "url": "./icons/code-review-10dcfdf9.svg" }, diff --git a/entries/pr-manager.json b/entries/pr-manager.json index ebcec7d..923594e 100644 --- a/entries/pr-manager.json +++ b/entries/pr-manager.json @@ -1,7 +1,7 @@ { "id": "pr-manager", "displayName": "PR Manager", - "description": "Shows your open pull requests and recent merges with their CI and review state summarised as waiting, failing, feedback, approved or merged, and opens or links the BB worktree thread for the one you pick.", + "description": "Shows your open GitHub pull requests and recent merges with their CI and review state summarised as waiting, failing, feedback, approved or merged, and opens or links the BB worktree thread for the one you pick.", "icon": { "url": "./icons/pr-manager-64645e85.svg" },