-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfactory.config.json
More file actions
103 lines (103 loc) · 2.27 KB
/
Copy pathfactory.config.json
File metadata and controls
103 lines (103 loc) · 2.27 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"$schema": "./schemas/factory-config.schema.json",
"project_name": "factory",
"factory_dir": ".",
"artifact_dir": ".",
"memory": {
"root_dir": "memory",
"cache_dir": "cache",
"suggestion_dir": "suggestions",
"max_additional_files": 4,
"max_file_bytes": 16384,
"max_cache_entries": 20
},
"verification": {
"build": "true",
"lint": "true",
"test": "pnpm test"
},
"validation": {
"command": "npx tsx tools/validate.ts"
},
"infrastructure_patterns": [
"factory/",
"tools/",
"hooks/",
"templates/",
".github/",
"package.json",
"package-lock.json",
"pnpm-lock.yaml",
"tsconfig.json",
".gitignore",
"docs/",
"setup.sh",
"setup.ps1",
"CLAUDE.md",
"AGENTS.md",
"README.md",
"LICENSE"
],
"completed_by_default": {
"kind": "agent",
"id": "claude"
},
"personas": {
"planner": {
"description": "Decomposes intent into feature and packet artifacts",
"instructions": [],
"model": "high"
},
"developer": {
"description": "Implements the change",
"instructions": [],
"model": "high"
},
"code_reviewer": {
"description": "Reviews code changes for correctness, design, and contract adherence",
"instructions": [],
"model": "medium"
},
"qa": {
"description": "Verifies acceptance criteria are met",
"instructions": [],
"model": "medium"
}
},
"pipeline": {
"providers": {
"codex": {
"enabled": true,
"command": "codex",
"sandbox": "workspace-write"
},
"claude": {
"enabled": true,
"command": "claude",
"permission_mode": "bypassPermissions"
},
"copilot": {
"enabled": false,
"command": "gh",
"prefix_args": ["copilot", "--"],
"model_map": {
"high": "claude-opus-4-6",
"medium": "GPT-5.4",
"low": "claude-haiku-4-5"
}
}
},
"persona_providers": {
"planner": "claude",
"developer": "codex",
"code_reviewer": "claude",
"qa": "claude"
},
"completion_identities": {
"developer": "codex-dev",
"code_reviewer": "claude-cr",
"qa": "claude-qa"
},
"max_review_iterations": 3
}
}