feat: add Codex plugin configuration for PCMStack - #6
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Packages the repository as a Codex plugin so PCMStack skills (and the pcm-mcp MCP server) can be installed/discovered as a single unit.
Changes:
- Add Codex plugin manifest (
.codex-plugin/plugin.json) describing skills, MCP servers, and marketplace interface metadata. - Add MCP server configuration (
.mcp.json) to launchpcm-mcpvianpx. - Add branding assets (
assets/logo.svg,assets/app-icon.png) for plugin icons.
Reviewed changes
Copilot reviewed 2 out of 4 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
.codex-plugin/plugin.json |
Declares plugin metadata + links to skills/MCP config and UI branding assets. |
.mcp.json |
Defines the pcm-mcp MCP server launch command. |
assets/logo.svg |
Adds the composer icon SVG. |
assets/app-icon.png |
Adds the plugin logo PNG. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+22
to
+23
| "skills": "./skills/", | ||
| "mcpServers": "./.mcp.json", |
Comment on lines
+38
to
+39
| "composerIcon": "./assets/logo.svg", | ||
| "logo": "./assets/app-icon.png", |
| "mcpServers": { | ||
| "pcm-mcp": { | ||
| "command": "npx", | ||
| "args": ["-y", "pcm-mcp"] |
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
Packages this repository as a Codex plugin so the PCM skills can be installed and discovered as a single unit.
.codex-plugin/plugin.json— plugin manifest: metadata, keywords, skills directory pointer, MCP server pointer, and marketplaceinterfaceblock (display name, descriptions, category, capabilities, brand color, icons)..mcp.json— declares thepcm-mcpMCP server, launched vianpx -y pcm-mcp.assets/logo.svg— composer icon (inline SVG mark).assets/app-icon.png— plugin logo.