-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.79 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.79 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "claude-code-codex-subagents",
"version": "0.3.0",
"description": "Claude Code plugin for OpenAI Codex subagents, Codex Spark, parallel code review, and long-running Codex sessions through a daemonless MCP server.",
"type": "module",
"private": true,
"author": "xuio",
"homepage": "https://github.com/xuio/claude-code-codex-subagents#readme",
"bugs": {
"url": "https://github.com/xuio/claude-code-codex-subagents/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xuio/claude-code-codex-subagents.git"
},
"bin": {
"codex-subagents-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc --noEmit && esbuild src/index.ts --bundle --platform=node --target=node20 --format=esm --outfile=dist/index.js --banner:js='#!/usr/bin/env node' && chmod 755 dist/index.js",
"check:dist": "npm run build && git diff --exit-code -- dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"install:local": "node scripts/install-local.mjs",
"update:local": "node scripts/install-local.mjs --pull",
"dev:link": "node scripts/link-claude-dev-plugin.mjs",
"dev:watch": "node scripts/watch-dist.mjs",
"wiki:publish": "node scripts/publish-wiki.mjs",
"diagnostics": "node scripts/diagnostics.mjs",
"validate:plugin": "claude plugin validate .",
"smoke:mcp": "node test/smoke-mcp.mjs",
"test:reliability": "node test/reliability-matrix.mjs",
"test:stress": "node test/stress-mcp.mjs",
"test:progress": "node test/progress-mcp.mjs",
"test:advanced": "node test/advanced-mcp.mjs",
"test:stdio-shutdown": "node test/stdio-shutdown.mjs",
"test:dev-link": "node test/dev-link.mjs",
"test:plugin-manifest": "node test/plugin-manifest.mjs",
"test:codex-runtime": "node test/codex-runtime-probe.mjs",
"test:app-server-contract": "node test/app-server-protocol-contract.mjs",
"test:real-matrix": "node test/real-compatibility-matrix.mjs",
"test:claude-orchestration": "node test/claude-orchestration.mjs",
"test:claude-autodiscovery": "node test/claude-autodiscovery.mjs",
"test:claude-session-steering": "node test/claude-session-steering.mjs",
"test:real-app-server-steering": "node test/real-app-server-steering.mjs",
"test:claude-large-output": "node test/claude-large-output.mjs",
"test:claude-real-codex": "node test/claude-real-codex.mjs",
"test:claude-real-session": "node test/claude-real-session.mjs",
"test:real-soak": "node test/real-soak.mjs",
"test:ci": "npm run build && npm run test:plugin-manifest && env CODEX_SUBAGENTS_LOG_LEVEL=${CODEX_SUBAGENTS_LOG_LEVEL:-silent} npm test && npm run test:stdio-shutdown && npm run smoke:mcp && npm run test:reliability && npm run test:stress && npm run test:progress && npm run test:advanced && npm run test:dev-link",
"test:comprehensive": "npm run build && npm test && npm run test:stdio-shutdown && npm run smoke:mcp && npm run test:reliability && npm run test:stress && npm run test:progress && npm run test:advanced && npm run test:codex-runtime && npm run test:app-server-contract && npm run test:real-matrix && npm run validate:plugin && npm run test:claude-desktop",
"test:claude-desktop": "node test/claude-desktop-cli.mjs"
},
"keywords": [
"claude",
"claude-code",
"claude-code-plugin",
"codex",
"openai",
"openai-codex",
"codex-cli",
"codex-spark",
"mcp",
"mcp-server",
"model-context-protocol",
"subagents",
"ai-agents",
"code-review",
"adversarial-review",
"developer-tools"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^25.0.0",
"esbuild": "^0.28.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
}
}