Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .project/features/ci-status-refresh-on-main-coll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
slug: ci-status-refresh-on-main-coll
status: backlogged
logged: 2026-07-24
---

A CI job on the default branch regenerates STATUS.md post-merge in collaborative mode, so feature branches don't need to commit regenerated report files (PR noise).
Why: collaborative mode makes committed STATUS.md churn in every PR; merge=ours mitigates conflicts but not diff noise — post-merge CI regeneration keeps main's report fresh without branch commits.
8 changes: 8 additions & 0 deletions .project/features/delegate-model-routing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
slug: delegate-model-routing
status: backlogged
logged: 2026-07-24
---

Configurable model routing for /ardd-implement's delegated worktree runs: a delegate_model constitution frontmatter field, either a single tier alias or a complexity map keyed by the tasks file's complexity: stamp, resolved to a model: override on the Agent dispatch.
Why: subagents start with fresh context, so the delegation boundary is the one place model routing costs no prompt cache (per-skill session routing was investigated and rejected — per-model caches make it net-negative for frequent skills). Prefer tier aliases over model names to survive model churn; default asymmetric — routing complex files up matters more than routing simple ones down. Depends on plan-time-complexity-stamps for the map form.
8 changes: 8 additions & 0 deletions .project/features/plan-time-complexity-stamps.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
slug: plan-time-complexity-stamps
status: backlogged
logged: 2026-07-24
---

At tasks-file generation time, /ardd-plan stamps a complexity: simple|moderate|complex field into each tasks file's frontmatter, reviewed and correctable at the plan approval checkpoint.
Why: plan time is when full context exists to predict how much judgment implementation will need; the stamp is the on-disk routing signal for model selection at implement dispatch (see implement-dispatch-model-routing). Enum lands in lint-project.sh in the same commit.