dual-brain 2.0.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.
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "dual-brain",
3
+ "version": "2.0.0",
4
+ "description": "Dual-provider orchestration for Claude Code — tiered routing, budget balancing, and GPT dual-brain review across Claude + OpenAI subscriptions",
5
+ "type": "module",
6
+ "bin": {
7
+ "dual-brain": "./install.mjs"
8
+ },
9
+ "keywords": [
10
+ "claude-code",
11
+ "orchestrator",
12
+ "model-routing",
13
+ "code-review",
14
+ "dual-brain",
15
+ "gpt",
16
+ "claude",
17
+ "ai-agent"
18
+ ],
19
+ "author": "joshfair2@gmail.com",
20
+ "license": "MIT",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/1xmint/dual-brain.git"
24
+ },
25
+ "engines": {
26
+ "node": ">=20.0.0"
27
+ },
28
+ "files": [
29
+ "install.mjs",
30
+ "hooks/",
31
+ "orchestrator.json",
32
+ "hookify.*.local.md",
33
+ "review-rules.md",
34
+ "CLAUDE.md",
35
+ "README.md",
36
+ "LICENSE"
37
+ ]
38
+ }
@@ -0,0 +1,17 @@
1
+ # Review Rules
2
+
3
+ Project-specific rules for GPT code review. Edit these for your repo.
4
+
5
+ ## Examples (replace with your own)
6
+
7
+ ### Framework & Tooling
8
+ - Must use [your framework], not [alternative]
9
+ - Must use [your package manager]
10
+ - Must use [your database approach]
11
+
12
+ ### Code Patterns
13
+ - Use [your utility function] for [specific math/formatting]
14
+ - Import helpers from [canonical module path]
15
+
16
+ ### Domain Rules
17
+ - [Your domain-specific invariants here]