skill-codex 0.7.1 → 0.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,17 @@
1
+ {
2
+ "description": "Suggests /codex-review after significant code changes.",
3
+ "hooks": {
4
+ "PostToolUse": [
5
+ {
6
+ "matcher": "Write|Edit|MultiEdit|NotebookEdit",
7
+ "hooks": [
8
+ {
9
+ "type": "command",
10
+ "command": "node \"${CLAUDE_PLUGIN_ROOT}/hooks/post-tool-use-review.mjs\"",
11
+ "timeout": 30
12
+ }
13
+ ]
14
+ }
15
+ ]
16
+ }
17
+ }
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "skill-codex",
3
+ "owner": {
4
+ "name": "Arystos",
5
+ "url": "https://github.com/Arystos"
6
+ },
7
+ "plugins": [
8
+ {
9
+ "name": "skill-codex",
10
+ "source": "./",
11
+ "description": "Use OpenAI Codex from Claude Code for code review, task delegation, and second opinions via MCP — with your Codex subscription, no API key. Windows-native, live progress.",
12
+ "version": "0.8.0",
13
+ "author": {
14
+ "name": "Arystos",
15
+ "url": "https://github.com/Arystos"
16
+ },
17
+ "homepage": "https://github.com/Arystos/skill-codex",
18
+ "license": "MIT",
19
+ "keywords": ["codex", "code-review", "mcp", "developer-tools"],
20
+ "category": "development"
21
+ }
22
+ ]
23
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "skill-codex",
3
+ "description": "Use OpenAI Codex from Claude Code for code review, task delegation, and second opinions via MCP — with your Codex subscription, no API key.",
4
+ "version": "0.8.0",
5
+ "author": {
6
+ "name": "Arystos",
7
+ "url": "https://github.com/Arystos"
8
+ },
9
+ "homepage": "https://github.com/Arystos/skill-codex",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/Arystos/skill-codex.git"
13
+ },
14
+ "license": "MIT",
15
+ "keywords": ["codex", "code-review", "task-delegation", "mcp", "developer-tools", "llm-tools"]
16
+ }
package/.mcp.json ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "mcpServers": {
3
+ "skill-codex": {
4
+ "command": "npx",
5
+ "args": ["-y", "skill-codex", "mcp"],
6
+ "env": {}
7
+ }
8
+ }
9
+ }
package/README.md CHANGED
@@ -83,6 +83,17 @@ The setup command:
83
83
 
84
84
  > **Tip:** Add `.skill-codex.lock` to your `.gitignore`
85
85
 
86
+ ### Install as a Claude Code plugin (alternative)
87
+
88
+ Instead of `npx skill-codex setup`, you can install it as a plugin:
89
+
90
+ ```shell
91
+ /plugin marketplace add Arystos/skill-codex
92
+ /plugin install skill-codex@skill-codex
93
+ ```
94
+
95
+ The plugin bundles the MCP server (launched via `npx -y skill-codex mcp`), the slash commands, the agent skill, and the auto-review hook. Restart Claude Code after installing.
96
+
86
97
  ## How It Works
87
98
 
88
99
  ```