Add Work Hub canvas extension#2238
Merged
aaronpowell merged 2 commits intoJul 8, 2026
Merged
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Contributor
|
🔴 Contributor Reputation Check: HIGH risk
Maintainers: please review this contributor before merging. |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Work Hub canvas extension under extensions/work-hub, including the extension runtime, UI renderer, data collection logic, and required plugin metadata so it can be distributed via the generated marketplace manifest.
Changes:
- Introduces the Work Hub canvas extension server (
extension.mjs) plus data layer (data.mjs) and HTML/JS renderer (renderer.mjs). - Adds extension packaging + metadata (
package.json,.github/plugin/plugin.json) and documentation (README.md), including the required preview asset. - Updates
.github/plugin/marketplace.jsonto make the extension installable/discoverable via Awesome Copilot.
Show a summary per file
| File | Description |
|---|---|
| extensions/work-hub/renderer.mjs | New client UI + interactions for the Work Hub dashboard, work explorer, repo detail drawers, and cleanup flows. |
| extensions/work-hub/README.md | New extension README describing features and required assets. |
| extensions/work-hub/package.json | New extension package metadata and dependency on @github/copilot-sdk. |
| extensions/work-hub/extension.mjs | New Copilot canvas extension entrypoint with local HTTP + SSE server and action endpoints. |
| extensions/work-hub/data.mjs | New data collection/orchestration layer (GitHub CLI, local git, session store, scoring, recommendations). |
| extensions/work-hub/.github/plugin/plugin.json | New required plugin metadata for the extensions gallery and marketplace build. |
| .github/plugin/marketplace.json | Registers work-hub in the generated marketplace manifest. |
Review details
- Files reviewed: 7/8 changed files
- Comments generated: 6
- Review effort level: Low
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
aaronpowell
approved these changes
Jul 8, 2026
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
extensions/work-hubValidation