-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@anthropic-skills/codex",
"version": "1.0.0",
"description": "Delegate coding tasks to OpenAI Codex CLI with YOLO mode for autonomous execution in Claude Code",
"keywords": [
"claude-code",
"claude-code-plugin",
"claude-skill",
"codex",
"openai",
"ai-coding",
"automation",
"yolo-mode"
],
"homepage": "https://github.com/veithly/codex-skill#readme",
"bugs": {
"url": "https://github.com/veithly/codex-skill/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/veithly/codex-skill.git"
},
"license": "MIT",
"author": "Ricky Wang",
"type": "module",
"files": [
".claude-plugin/",
"skills/,
"agents/",
"scripts/",
"examples/",
"REQUIREMENTS.md",
"LICENSE",
"README.md"
],
"scripts": {
"install:skill": "node scripts/npm-install.js",
"postinstall": "node scripts/npm-install.js",
"uninstall": "node scripts/npm-uninstall.js",
"test": "echo \"No tests yet\" && exit 0"
},
"peerDependencies": {
"@openai/codex": ">=0.65.0"
},
"engines": {
"node": ">=18.0.0"
},
"claude-skill": {
"name": "codex",
"displayName": "Codex CLI Integration",
"description": "Delegate coding tasks to OpenAI Codex CLI with YOLO mode",
"version": "1.0.0",
"author": "Ricky Wang",
"category": "development",
"tags": ["codex", "openai", "automation", "coding"],
"commands": ["/codex"],
"agents": ["codex"],
"requires": {
"cli": ["codex"],
"env": ["OPENAI_API_KEY"]
}
}
}