claudexor 1.0.1

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.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 joi-lab
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # claudexor
2
+
3
+ Harness-agnostic AI coding control plane: one CLI that drives Codex CLI,
4
+ Claude Code, Cursor CLI, and OpenCode with cross-family review, best-of-N
5
+ candidate runs, typed apply gates, and honest run artifacts.
6
+
7
+ ```bash
8
+ npm install -g claudexor
9
+ claudexor doctor
10
+ claudexor ask "what does this repo do?"
11
+ claudexor agent "fix the failing test" --harness codex
12
+ claudexor best-of "fix add()" --harness codex,claude --n 2
13
+ ```
14
+
15
+ This package is the bin wrapper over
16
+ [`@claudexor/cli`](https://www.npmjs.com/package/@claudexor/cli). Full
17
+ documentation lives in the
18
+ [Claudexor repository](https://github.com/razzant/claudexor#readme).
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // The bare `claudexor` package is a thin bin wrapper over @claudexor/cli —
3
+ // importing the CLI entry runs it (the module executes main() on load).
4
+ import "@claudexor/cli/cli";
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ // Daemon entry wrapper (same contract as the claudexor bin).
3
+ import "@claudexor/cli/claudexord";
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "claudexor",
3
+ "version": "1.0.1",
4
+ "description": "Harness-agnostic AI coding control plane — one CLI over Codex, Claude Code, Cursor, and OpenCode with cross-family review, best-of-N runs, and typed apply gates.",
5
+ "type": "module",
6
+ "bin": {
7
+ "claudexor": "./bin/claudexor.js",
8
+ "claudexord": "./bin/claudexord.js"
9
+ },
10
+ "files": [
11
+ "bin"
12
+ ],
13
+ "dependencies": {
14
+ "@claudexor/cli": "1.0.1"
15
+ },
16
+ "keywords": [
17
+ "ai",
18
+ "agents",
19
+ "cli",
20
+ "codex",
21
+ "claude",
22
+ "cursor",
23
+ "mcp",
24
+ "orchestration"
25
+ ],
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/razzant/claudexor.git",
29
+ "directory": "packages/claudexor"
30
+ },
31
+ "homepage": "https://github.com/razzant/claudexor#readme",
32
+ "bugs": {
33
+ "url": "https://github.com/razzant/claudexor/issues"
34
+ },
35
+ "license": "MIT",
36
+ "engines": {
37
+ "node": ">=20.19"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public"
41
+ }
42
+ }