Compare commits

..

6 Commits

Author SHA1 Message Date
915101cffc tester(ET): auto-commit from tester run_id=403
All checks were successful
CI / test (push) Successful in 23s
CI / test (pull_request) Successful in 23s
2026-06-08 22:46:11 +03:00
7e7bb836f0 reviewer(ET): auto-commit from reviewer run_id=402
All checks were successful
CI / test (push) Successful in 24s
CI / test (pull_request) Successful in 30s
2026-06-08 22:44:18 +03:00
56bf30323d fix(effort): per-role floor for --effort resolution + developer→xhigh
All checks were successful
CI / test (push) Successful in 25s
CI / test (pull_request) Successful in 23s
resolve_agent_effort returned '' for all agents in prod because empty
ORCH_AGENT_EFFORT_*= env vars clobber pydantic class-defaults, leaving no
non-empty floor to fall back to -> --effort never reached the Claude CLI.

Add a level-4 per-role floor in resolve_agent_effort (src/agents/launcher.py):
_agent_effort_floor reads the declared class-default of agent_effort_<agent>
(model_fields[...].default), which a present-but-empty env cannot override.
Floor applies only when levels 1-3 are empty and BEFORE validation, so a typo
(non-empty) still drops to '' (never-break ORCH-41) and explicit env/override
still wins (priority preserved). config.py: agent_effort_developer high->xhigh
(single source of truth; floor follows automatically).

Refs: ORCH-081

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-08 22:40:39 +03:00
53f0825016 architect(ET): auto-commit from architect run_id=400
All checks were successful
CI / test (push) Successful in 24s
2026-06-08 22:36:50 +03:00
5f4c8fbec2 analyst(ET): auto-commit from analyst run_id=399
All checks were successful
CI / test (push) Successful in 25s
2026-06-08 22:29:25 +03:00
c344b72049 docs: init ORCH-081 business request
All checks were successful
CI / test (push) Successful in 25s
2026-06-08 22:25:55 +03:00
3 changed files with 0 additions and 88 deletions

View File

@@ -1,12 +0,0 @@
---
deploy_status: SUCCESS
work_item: ORCH-081
hook_exit_code: 0
deployed_by: deploy-finalizer
---
# Deploy log — ORCH-036 executable self-deploy
Прод-деплой завершён хост-хуком с exit-code `0` -> `deploy_status: SUCCESS`.
Вердикт зафиксирован детерминированным finalizer'ом (Фаза C), не LLM.

View File

@@ -1,27 +0,0 @@
---
staging_status: SUCCESS
timestamp: 2026-06-08T19:47:45+00:00
base_url: http://localhost:8501
---
# Staging Gate Log
Staging test suite completed. Exit code 0 → advance.
Canonical run inside the `orchestrator-staging` container (ORCH-048, ADR-001) via the
Docker Engine API over the unix socket (docker CLI unavailable in the agent container):
```
python3 /repos/orchestrator/scripts/staging_check.py --base-url http://localhost:8501 --mode stub
```
Result: **8/10 checks PASS**, all REAL checks green.
```
INFRA-WAIVED: C9a Branch appears in orchestrator-sandbox, C9b Analyst job enqueued in staging queue (known sandbox-infra; real checks green)
VERDICT: SUCCESS (exit 0) — SUCCESS (infra-waived): ['C9a Branch appears in orchestrator-sandbox', 'C9b Analyst job enqueued in staging queue'] are known sandbox-infra checks; all real checks green
```
The two waived checks (C9a/C9b) are the known sandbox-infra-only checks tolerated under
ORCH-061 (SANDBOX bot accounts are not members of the sandbox Plane project — not a pipeline
regression). All pipeline (REAL) checks A1A3, B4B6, C7C8 passed.

View File

@@ -1,49 +0,0 @@
---
staging_status: SUCCESS
timestamp: 2026-06-08T21:55:49Z
base_url: http://localhost:8501
---
# Staging Gate Log
Staging test suite completed against the live staging environment (`orchestrator-staging`, port 8501),
run inside the container per the canonical method (ORCH-048, ADR-001):
```
docker exec orchestrator-staging \
python3 /repos/orchestrator/scripts/staging_check.py \
--base-url http://localhost:8501 --mode stub
```
## Result: 8/10 checks PASS — exit code 0 (SUCCESS)
- REAL failed: none
- SANDBOX_INFRA failed (waived per ORCH-061): C9a, C9b
All REAL pipeline checks (Block A SMOKE, Block B ACCESS, C7/C8) passed. The only failures are the
two infra-only sandbox checks (C9a branch-in-sandbox / C9b analyst-job-enqueued), which depend on
SANDBOX bot accounts being members of the sandbox project — not on the pipeline. Tolerance is enabled
(`staging_infra_tolerance_enabled=True`), so these are waived and the script exits 0 (fail-closed for
any REAL failure remains intact).
```
INFRA-WAIVED: C9a Branch appears in orchestrator-sandbox, C9b Analyst job enqueued in staging queue (known sandbox-infra; real checks green)
VERDICT: SUCCESS (exit 0) — SUCCESS (infra-waived): ['C9a …', 'C9b …'] are known sandbox-infra checks; all real checks green
```
### Block-by-block summary
| Block | Check | Result |
|-------|-------|--------|
| A | A1 GET /health → 200 status=ok | ✓ PASS |
| A | A2 GET /queue → 200 with counts/max_concurrency/resilience | ✓ PASS |
| A | A3 ORCH_STAGING=true (not prod) | ✓ PASS |
| B | B4 Plane: sandbox project accessible | ✓ PASS |
| B | B5 Gitea: orchestrator-sandbox accessible, push=true | ✓ PASS |
| B | B6 Registry: sandbox present, prod ET/ORCH absent | ✓ PASS |
| C | C7 Create issue in Plane SANDBOX | ✓ PASS |
| C | C8 Trigger pipeline via /webhook/plane | ✓ PASS |
| C | C9a Branch appears in orchestrator-sandbox | ✗ FAIL (sandbox-infra, waived) |
| C | C9b Analyst job enqueued in staging queue | ✗ FAIL (sandbox-infra, waived) |
Cleanup completed: test Plane issue deleted (HTTP 204); no branch created to delete.