-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 2.88 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 2.88 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
{
"name": "claude-codex-tools",
"version": "0.1.0",
"private": true,
"description": "Unified workflow and skills for Claude and Codex AI assistants",
"type": "module",
"workspaces": [
"codex"
],
"scripts": {
"check:review": "npx tsx tools/check-review-setup.ts",
"test": "npm run test:shell && npm run test:unit && npm run test:smoke && npm run test:config",
"test:shell": "bash tests/check-shell.sh && bash tests/config-version-prompt.test.sh && bash tests/monitor-ready-transition.test.sh && bash tests/launch-ready-phase.test.sh && bash tests/lifecycle-scenarios.test.sh && bash tests/lifecycle-harness.test.sh && bash tests/cleanup-branch.test.sh && bash tests/error-recovery.test.sh && bash tests/planning-validation.test.sh && bash tests/wavemill-status.test.sh && bash tests/control-layout.test.sh && bash tests/challenge-comparison-state.test.sh",
"test:lifecycle": "bash tests/run-lifecycle-tests.sh",
"test:layout": "bash tests/control-layout.test.sh",
"test:unit": "npm run test:node-test && npm run test:custom",
"test:node-test": "node --test shared/lib/session.test.js shared/lib/session-timer.test.js shared/lib/eval.test.js shared/lib/intervention-detector.test.ts shared/lib/session-adapters.test.ts shared/lib/outcome-collectors.test.ts shared/lib/context-analyzer.test.ts shared/lib/review-engine.test.ts shared/lib/review-runner.test.ts shared/lib/review-progress.test.ts shared/lib/review-formatter.test.ts shared/lib/pr-comparison.test.ts shared/lib/llm-cli.test.ts shared/lib/router-log.test.ts shared/lib/challenge-analyzer.test.ts shared/lib/config.test.ts shared/lib/model-registry.test.ts shared/lib/routing-policy.test.ts shared/lib/hokusai-consent.test.ts shared/lib/hokusai-redaction.test.ts shared/lib/text-redaction.test.ts shared/lib/shell-utils.test.ts shared/lib/jsonl-utils.test.ts shared/lib/quota-state.test.ts shared/lib/operating-mode.test.ts shared/lib/plan-prompt-selector.test.ts shared/lib/cli-prompt.test.ts shared/lib/cli-utils.test.ts shared/lib/linear-update-error-log.test.ts shared/lib/github-labels.test.ts shared/lib/progress-heartbeat.test.ts shared/lib/scope-shrinker.test.ts tools/add-pr-label.test.ts tests/drift-detector.test.ts tests/check-drift-tool.test.ts",
"test:custom": "bash tests/run-custom-tests.sh",
"test:smoke": "node --test tests/cli-smoke.test.ts",
"test:config": "bash tests/config-loading.test.sh",
"test:integration": "node --test shared/lib/github.test.js",
"test:all": "npm run test && npm run test:integration",
"test:codex": "npm run test -w codex --if-present",
"codex:workflow": "npm run workflow -w codex",
"codex:state": "npm run state -w codex"
},
"keywords": [
"claude",
"codex",
"workflow",
"linear",
"ai-tools"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"ajv": "^8.18.0"
},
"devDependencies": {
"tsx": "^4.21.0"
}
}