-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphase-golem.toml
More file actions
28 lines (25 loc) · 1.28 KB
/
phase-golem.toml
File metadata and controls
28 lines (25 loc) · 1.28 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
[project]
prefix = "TG"
# backlog_path = "BACKLOG.yaml"
[guardrails]
max_size = "medium"
max_complexity = "medium"
max_risk = "medium"
[execution]
phase_timeout_minutes = 30
max_retries = 2
default_phase_cap = 100
max_wip = 5
max_concurrent = 3
[pipelines.feature]
pre_phases = [
{ name = "research", workflows = ["~/.claude/skills/changes/workflows/orchestration/research-scope.md"], is_destructive = false },
]
phases = [
{ name = "prd", workflows = ["~/.claude/skills/changes/workflows/0-prd/create-prd.md"], is_destructive = false },
{ name = "tech-research", workflows = ["~/.claude/skills/changes/workflows/1-design/tech-research.md"], is_destructive = false },
{ name = "design", workflows = ["~/.claude/skills/changes/workflows/1-design/design.md"], is_destructive = false },
{ name = "spec", workflows = ["~/.claude/skills/changes/workflows/2-spec/create-spec.md"], is_destructive = false },
{ name = "build", workflows = ["~/.claude/skills/changes/workflows/orchestration/build-spec-phase.md"], is_destructive = true },
{ name = "review", workflows = ["~/.claude/skills/changes/workflows/4-review/change-review.md"], is_destructive = false },
]