-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.devt-config.json.example
More file actions
48 lines (38 loc) · 1.86 KB
/
.devt-config.json.example
File metadata and controls
48 lines (38 loc) · 1.86 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
{
"_comment": "devt project configuration. Copy to .devt/config.json and customize.",
"model_profile": "quality",
"_model_profile_options": "quality | balanced | budget | inherit",
"_model_profile_doc": "Controls which Claude model tier each agent uses. quality=all opus, balanced=opus for critical agents, budget=sonnet/haiku, inherit=use parent session model.",
"model_overrides": {
"_doc": "Per-agent model overrides. Keys: programmer, tester, code-reviewer, docs-writer, architect, retro, curator, debugger, verifier, researcher. Values: opus, sonnet, haiku, inherit. Invalid keys produce a warning and are ignored.",
"tester": "opus"
},
"git": {
"provider": "github",
"_provider_options": "github | bitbucket | gitlab",
"_provider_doc": "Git hosting provider for PR/MR links and CI integration.",
"workspace": "emrecdr",
"_workspace_doc": "Organization or workspace name on the git provider.",
"slug": "my-project",
"_slug_doc": "Repository slug (used for constructing URLs).",
"primary_branch": "main",
"_primary_branch_doc": "Default branch name for PRs and comparisons.",
"contributors": ["emre", "claude"],
"_contributors_doc": "List of contributor names for commit attribution and weekly reports."
},
"arch_scanner": {
"command": "uv run python scripts/arch_scanner.py",
"_command_doc": "Shell command to run the architecture health scanner. Set to null to disable.",
"report_dir": "docs/reports",
"_report_dir_doc": "Directory where scanner reports are written."
},
"workflow": {
"_doc": "Toggle optional workflow steps. Set to false to skip. All default to true.",
"docs": true,
"retro": true,
"verification": true,
"autoskill": true,
"regression_baseline": true,
"_regression_baseline_doc": "Run quality gates before implementation to detect regressions after."
}
}