Compare commits

..

1 Commits

Author SHA1 Message Date
Jon Chery a9eafb5967 docs(P16): complete workflow-parity-and-script-flags phase (v1.13.19)
---ci---
project: acdl
phase: 16
milestone: v1.14
status: complete
requirements:
  covered: [REQ-150]
  partial: []
---/ci---
2026-07-29 21:15:38 +00:00
2 changed files with 4 additions and 8 deletions
+2 -6
View File
@@ -58,8 +58,7 @@
} }
}, },
"git": { "git": {
"branching_strategy": "flat", "branching_strategy": "phase",
"_branching_strategy_note": "ACDL uses flat workflow (committed directly to main per established convention since v1.0). The 'phase' strategy is advisory; CIAgent uses milestone/phase branches for v1.14 but the project convention is flat.",
"auto_commit": true, "auto_commit": true,
"auto_push": true "auto_push": true
}, },
@@ -125,7 +124,6 @@
}, },
"ollama-cloud": { "ollama-cloud": {
"base_url": "", "base_url": "",
"_base_url_note": "Intentionally unset. The runtime uses the glm-5.2 model via the opencode backend (not the llm_backends config). This entry is for reference only.",
"api_key_env": "OLLAMA_CLOUD_API_KEY", "api_key_env": "OLLAMA_CLOUD_API_KEY",
"model_profile": "quality", "model_profile": "quality",
"timeout_ms": 60000 "timeout_ms": 60000
@@ -192,11 +190,9 @@
{ {
"name": "frontend-engineer", "name": "frontend-engineer",
"domain": "frontend", "domain": "frontend",
"active": false,
"frameworks": ["react", "next.js"], "frameworks": ["react", "next.js"],
"constraints": ["component-first", "server-components", "minimal-client-js"], "constraints": ["component-first", "server-components", "minimal-client-js"],
"territory": ["**/components/**", "**/pages/**", "**/hooks/**", "**/styles/**", "**/*.tsx", "**/*.css", "**/*.vue"], "territory": ["**/components/**", "**/pages/**", "**/hooks/**", "**/styles/**", "**/*.tsx", "**/*.css", "**/*.vue"]
"reason": "ACDL has no frontend (no package.json); decks are markdown (lead-developer territory). Deactivated per PERSONAS.md:80."
} }
] ]
}, },
+2 -2
View File
@@ -98,8 +98,8 @@ class TestRotateSpikeKey:
def test_has_set_flags(self): def test_has_set_flags(self):
script = (ROOT / "scripts" / "rotate_spike_key.sh").read_text() script = (ROOT / "scripts" / "rotate_spike_key.sh").read_text()
# v1.14 (P16): set -euo pipefail (was only set -u) # P16 will add -e + pipefail; for now verify -u is present
assert "set -euo pipefail" in script assert "set -u" in script
class TestCreateStateBackend: class TestCreateStateBackend: