Extension backrooms#2348
Open
jhauga wants to merge 8 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds the BackViews interactive backrooms canvas, integrating a WebGL game with Copilot agent activity.
Changes:
- Adds the canvas server, SSE bridge, and agent actions.
- Adds the game bundle, textures, UI, and documentation.
- Registers the extension in the plugin marketplace.
Reviewed changes
Copilot reviewed 7 out of 13 changed files in this pull request and generated 9 comments.
Show a summary per file
| File | Description |
|---|---|
.github/plugin/marketplace.json |
Registers the extension. |
extensions/backrooms-canvas/.github/plugin/plugin.json |
Defines marketplace metadata. |
extensions/backrooms-canvas/README.md |
Documents installation and usage. |
extensions/backrooms-canvas/package.json |
Declares package metadata and SDK dependency. |
extensions/backrooms-canvas/copilot-extension.json |
Defines extension identity. |
extensions/backrooms-canvas/extension.mjs |
Implements the canvas server and actions. |
extensions/backrooms-canvas/game/index.html |
Provides the webview host shim. |
extensions/backrooms-canvas/game/webview.js |
Contains the WebGL game bundle. |
extensions/backrooms-canvas/assets/icon.png |
Provides the application icon. |
extensions/backrooms-canvas/assets/preview.png |
Provides the marketplace preview. |
extensions/backrooms-canvas/materials/carpet.jpg |
Provides the carpet texture. |
extensions/backrooms-canvas/materials/ceiling.jpg |
Provides the ceiling texture. |
extensions/backrooms-canvas/materials/wallpaper.jpg |
Provides the wallpaper texture. |
jhauga
marked this pull request as draft
July 18, 2026 00:24
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
update according to code review
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Comment on lines
+429
to
+431
| entry.job = { ...IDLE_JOB }; | ||
| entry.session = null; | ||
| broadcast(entry, "relocate", { seed }); |
| card() { | ||
| const card = document.createElement("div"); | ||
| card.className = "bv-card"; | ||
| card.innerHTML = '<h1>BACKVIEWS</h1><p class="bv-sub">no-clipped into a VSCode webview</p>'; |
Comment on lines
+3722
to
+3723
| this.toast = document.createElement("div"); | ||
| this.toast.style.cssText = 'position:absolute;left:50%;bottom:9%;transform:translateX(-50%);z-index:20;background:rgba(22,24,27,0.85);color:#f0f2f3;border:1px solid #454c55;border-radius:6px;padding:8px 16px;font:13px "Segoe UI",system-ui,sans-serif;opacity:0;transition:opacity .4s;pointer-events:none;'; |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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.
Pull Request Checklist
npm startand verified thatREADME.mdis up to date.mainbranch for this pull request.Description
Support branch for new extension backrooms-canvas.
Prompt
I
II
I need to get a screen shot so can you just write some stuff on the wall that would be fitting for a PR to awesome-copilot GitHub repo about the canvas extensionResults
See screenshot below:
Type of Contribution
By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.