Skip to content

Commit 6397492

Browse files
committed
Remove CI workflow from plugin manifest
Re-signed branch history. Previous subjects: - Add Codex CLI plugin manifest - Fix: add skills field to plugin manifest - Fix: address code review feedback - Add Codex plugin quality gate CI - Remove CI workflow from plugin PR - Remove CI workflow from plugin manifest
1 parent b07bc9d commit 6397492

4 files changed

Lines changed: 67 additions & 0 deletions

File tree

.codex-plugin/plugin.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "magic-mcp",
3+
"version": "0.1.0",
4+
"description": "Frontend development assistant from Codex via 21st dev Magic",
5+
"author": {
6+
"name": "21st-dev",
7+
"url": "https://github.com/21st-dev/magic-mcp"
8+
},
9+
"homepage": "https://github.com/21st-dev/magic-mcp",
10+
"repository": "https://github.com/21st-dev/magic-mcp",
11+
"keywords": [
12+
"mcp",
13+
"codex"
14+
],
15+
"mcpServers": "./.mcp.json",
16+
"interface": {
17+
"displayName": "Magic MCP",
18+
"shortDescription": "Frontend development assistant from Codex via 21st dev Magic",
19+
"longDescription": "It is like v0 but in your Cursor/WindSurf/Cline. 21st dev Magic MCP server for working with your frontend.",
20+
"category": "Development",
21+
"websiteURL": "https://github.com/21st-dev/magic-mcp"
22+
},
23+
"skills": "./skills/"
24+
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Plugin Quality Gate
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- ".codex-plugin/**"
7+
- "skills/**"
8+
- ".mcp.json"
9+
10+
jobs:
11+
scan:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Codex plugin quality gate
16+
uses: hashgraph-online/hol-codex-plugin-scanner-action@v1
17+
with:
18+
plugin_dir: "."
19+
min_score: 80
20+
fail_on_severity: high

.mcp.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"mcpServers": {
3+
"magic-mcp": {
4+
"command": "npx",
5+
"args": [
6+
"-y",
7+
"@21st-dev/magic@latest"
8+
]
9+
}
10+
}
11+
}

skills/magic-mcp/SKILL.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
name: magic-mcp
3+
description: Frontend development assistant from Codex via 21st dev Magic
4+
---
5+
6+
# Magic MCP for Codex
7+
8+
Use Magic MCP from Codex via MCP.
9+
10+
## When to use
11+
- When you need magic-mcp capabilities in your Codex workflow
12+
- See https://github.com/21st-dev/magic-mcp for full setup instructions

0 commit comments

Comments
 (0)