Codex/issue 613 vscode extension marketplace#807
Open
ignusloki wants to merge 14 commits into
Open
Conversation
added 10 commits
June 4, 2026 06:02
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Adds a new, locally packageable and Marketplace-ready VS Code extension workspace (vscode-extension/) to guide Unity MCP setup directly in VS Code and reduce manual configuration steps (addresses #613).
Changes:
- Introduces a VS Code extension with an Activity Bar dashboard, status bar readiness indicator, and commands for status/configure/install/open/output flows.
- Adds workspace/project inspection logic (Unity markers, plugin detection, Unity config +
.vscode/mcp.jsondetection) and reuses sharedunity-mcp-clisetup/install/open logic via an adapter. - Adds Vitest coverage for status/config parsing, dashboard state mapping, and CLI adapter behavior, plus packaging/docs scaffolding.
Reviewed changes
Copilot reviewed 23 out of 27 changed files in this pull request and generated 8 comments.
Show a summary per file
| File | Description |
|---|---|
| vscode-extension/tsconfig.json | TypeScript build configuration for the extension. |
| vscode-extension/src/workspace.ts | Multi-root workspace folder selection helpers. |
| vscode-extension/src/unityConfig.ts | Reads/parses Unity MCP project config from UserSettings. |
| vscode-extension/src/unityConfig.test.ts | Tests for Unity MCP project config parsing behavior. |
| vscode-extension/src/projectStatus.ts | Workspace inspection + recommended next actions + status report formatting. |
| vscode-extension/src/projectStatus.test.ts | Tests for project status detection and warnings/actions. |
| vscode-extension/src/logging.ts | Output-channel logger with configurable log levels. |
| vscode-extension/src/extension.ts | Extension activation, commands, trust gating, status bar + dashboard refresh orchestration. |
| vscode-extension/src/dashboard.ts | Activity Bar webview dashboard rendering + action selection + status bar presentation mapping. |
| vscode-extension/src/dashboard.test.ts | Tests for dashboard actions and status bar mapping. |
| vscode-extension/src/cliAdapter.ts | Adapter around unity-mcp-cli for setup/install/open flows (with ESM loading workaround). |
| vscode-extension/src/cliAdapter.test.ts | Tests verifying adapter calls and failure behavior. |
| vscode-extension/package.json | Extension manifest: contributions, activation events, scripts, deps, Marketplace metadata. |
| vscode-extension/media/unity-mcp-activity.svg | Activity Bar icon for the extension container. |
| vscode-extension/SUPPORT.md | End-user support/debug guide for logs and common issues. |
| vscode-extension/README.md | Extension usage, safety model, local VSIX packaging and guidance. |
| vscode-extension/PUBLISHING.md | Maintainer checklist and handoff steps for Marketplace publishing. |
| vscode-extension/LICENSE.txt | Apache-2.0 license text for the extension package. |
| vscode-extension/DEVELOPMENT.md | Maintainer development workflow, architecture map, and testing guidance. |
| vscode-extension/CHANGELOG.md | Initial changelog for 0.0.1. |
| vscode-extension/.vscodeignore | Packaging exclusions for VSCE/VSIX outputs. |
| vscode-extension/.vscode/tasks.json | Build task wiring for extension development. |
| vscode-extension/.vscode/launch.json | Extension host launch config for debugging. |
| vscode-extension/.gitignore | Extension-local ignores for build artifacts and VSIX. |
| .gitignore | Adds .DS_Store ignore at repo root. |
added 2 commits
June 5, 2026 04:22
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
Addresses #613 by adding an initial VS Code extension for Unity MCP in
vscode-extension/.This PR creates a locally packageable, Marketplace-ready extension workspace that reduces the current manual VS Code MCP setup flow and gives users a guided UX directly inside VS Code.
What’s included
vscode-extension/packagePackages/manifest.jsonUserSettings/AI-Game-Developer-Config.json.vscode/mcp.jsondetection and generation via sharedunity-mcp-clilogicUnity MCP: Check StatusUnity MCP: Configure ProjectUnity MCP: Install PluginUnity MCP: Open UnityUnity MCP: Show OutputDesign goals
Validation
Automated:
npm run buildnpm testnpm run package:vsixManual:
Docs included
vscode-extension/README.mdvscode-extension/SUPPORT.mdvscode-extension/DEVELOPMENT.mdvscode-extension/PUBLISHING.mdNotes
publishervalue is a placeholder for local packaging/handoff only and should be replaced by the official maintainer account before Marketplace releaseConfigure Projectafter plugin installation/import, but it was not reproducible and did not block subsequent use; worth separate follow-up if it happens again