Skip to content

Commit 908cc27

Browse files
committed
feat: add Claude Code Marketplace support
- Add .claude-plugin/marketplace.json for marketplace definition - Add .claude-plugin/plugin.json for plugin manifest - Reorganize structure: commands/codex/, agents/ - Update README with marketplace installation instructions - Update package.json with correct repository URLs
1 parent 9b2ceda commit 908cc27

7 files changed

Lines changed: 249 additions & 315 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "codex-skill",
3+
"owner": {
4+
"name": "Ricky Wang",
5+
"email": "veithly@github.com"
6+
},
7+
"metadata": {
8+
"description": "OpenAI Codex CLI integration for Claude Code with YOLO mode support",
9+
"version": "1.0.0"
10+
},
11+
"plugins": [
12+
{
13+
"name": "codex",
14+
"source": ".",
15+
"description": "Delegate coding tasks to OpenAI Codex CLI with YOLO, Auto, and Safe execution modes",
16+
"version": "1.0.0",
17+
"author": {
18+
"name": "Ricky Wang"
19+
},
20+
"homepage": "https://github.com/veithly/codex-skill",
21+
"repository": "https://github.com/veithly/codex-skill",
22+
"license": "MIT",
23+
"keywords": [
24+
"codex",
25+
"openai",
26+
"automation",
27+
"coding",
28+
"yolo",
29+
"ai-assistant"
30+
],
31+
"category": "development",
32+
"tags": [
33+
"codex",
34+
"openai",
35+
"ai-coding",
36+
"automation",
37+
"development-tools"
38+
],
39+
"commands": [
40+
"commands/codex"
41+
],
42+
"agents": [
43+
"agents/codex.md"
44+
]
45+
}
46+
]
47+
}

.claude-plugin/plugin.json

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
{
2+
"name": "codex",
3+
"description": "Delegate coding tasks to OpenAI Codex CLI with configurable execution modes including YOLO mode for fully autonomous operation",
4+
"version": "1.0.0",
5+
"author": {
6+
"name": "Ricky Wang",
7+
"email": "veithly@github.com"
8+
},
9+
"homepage": "https://github.com/veithly/codex-skill",
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/veithly/codex-skill.git"
13+
},
14+
"license": "MIT",
15+
"keywords": [
16+
"codex",
17+
"openai",
18+
"automation",
19+
"coding",
20+
"yolo-mode",
21+
"ai-assistant",
22+
"claude-code"
23+
],
24+
"category": "development",
25+
"engines": {
26+
"claude-code": ">=1.0.0",
27+
"node": ">=18.0.0"
28+
},
29+
"dependencies": {
30+
"cli": {
31+
"codex": {
32+
"install": "npm install -g @openai/codex",
33+
"version": ">=0.65.0"
34+
}
35+
},
36+
"env": {
37+
"OPENAI_API_KEY": {
38+
"required": true,
39+
"description": "OpenAI API key for Codex CLI authentication"
40+
}
41+
}
42+
},
43+
"commands": {
44+
"codex": {
45+
"file": "commands/codex/SKILL.md",
46+
"description": "Delegate coding tasks to OpenAI Codex CLI",
47+
"usage": "/codex <task> [--mode=yolo|auto|safe] [--timeout=300]"
48+
}
49+
},
50+
"agents": {
51+
"codex": {
52+
"file": "agents/codex.md",
53+
"description": "OpenAI Codex CLI integration agent for automated coding tasks"
54+
}
55+
}
56+
}

0 commit comments

Comments
 (0)