Files
Molecule AI Dev Engineer B (MiniMax) abc10a0c11
E2E Staging SaaS (full lifecycle) / E2E Staging Concierge user_tasks (pull_request) Has been skipped
E2E Staging SaaS (full lifecycle) / E2E Staging Workspace Requests (core#2606) (pull_request) Has been skipped
E2E Staging SaaS (full lifecycle) / E2E Staging Concierge Creates Workspace (pull_request) Has been skipped
E2E Staging SaaS (full lifecycle) / E2E Staging Concierge Platform Agent (pull_request) Has been skipped
Block internal-flavored paths / Block forbidden paths (pull_request) Successful in 6s
CI / Python Lint & Test (pull_request) Successful in 6s
E2E Staging Reconciler (heals terminated EC2) / pr-validate (pull_request) Successful in 6s
E2E Staging External Runtime / E2E Staging External Runtime (pull_request) Failing after 7s
E2E Staging Reconciler (heals terminated EC2) / E2E Staging Reconciler (pull_request) Failing after 6s
E2E Staging SaaS (full lifecycle) / E2E Staging SaaS (pull_request) Failing after 6s
sop-checklist / review-refire (pull_request_target) Has been skipped
Lint forbidden tenant-env keys / Scan for repo-host token write into tenant workspace surface (pull_request) Successful in 6s
E2E Peer Visibility (literal MCP list_peers) / detect-changes (pull_request) Successful in 11s
Lint forbidden tenant-env keys / Scan workspace_secrets writers for forbidden env keys (pull_request) Successful in 8s
E2E Peer Visibility (literal MCP list_peers) / E2E Peer Visibility (local) (pull_request) Has been skipped
Secret scan / Scan diff for credential-shaped strings (pull_request) Successful in 8s
Handlers Postgres Integration / detect-changes (pull_request) Successful in 11s
E2E Staging SaaS (full lifecycle) / pr-validate (pull_request) Successful in 15s
qa-review / approved (pull_request_target) Failing after 9s
E2E Staging SaaS (full lifecycle) / E2E Staging Concierge (compile+skip) (pull_request) Successful in 13s
E2E Staging Canvas (Playwright) / detect-changes (pull_request) Successful in 17s
sop-checklist / all-items-acked (pull_request) acked: 0/7 — missing: comprehensive-testing, local-postgres-e2e, staging-smoke, +4 — body-unfilled: comprehensive-testing, local-postgres-e2
sop-checklist / na-declarations (pull_request) N/A: (none)
security-review / approved (pull_request_target) Failing after 9s
E2E Chat / detect-changes (pull_request) Successful in 18s
CI / Detect changes (pull_request) Successful in 20s
reserved-path-review / reserved-path-review (pull_request_target) Successful in 11s
E2E Peer Visibility (literal MCP list_peers) / E2E Peer Visibility (pull_request) Failing after 5s
Handlers Postgres Integration / Handlers Postgres Integration (pull_request) Successful in 1s
sop-checklist / all-items-acked (pull_request_target) Successful in 10s
E2E Staging Canvas (Playwright) / Canvas tabs E2E (pull_request) Successful in 2s
lint-required-no-paths / lint-required-no-paths (pull_request) Successful in 16s
CI / Platform (Go) (pull_request) Successful in 1s
CI / Canvas (Next.js) (pull_request) Successful in 2s
E2E Chat / E2E Chat (pull_request) Successful in 3s
CI / Canvas Deploy Status (pull_request) Successful in 1s
E2E API Smoke Test / detect-changes (pull_request) Successful in 28s
gate-check-v3 / gate-check (pull_request_target) Failing after 25s
CI / Shellcheck (E2E scripts) (pull_request) Failing after 11s
CI / all-required (pull_request) Has been skipped
Local Provision Lifecycle E2E / Local Provision Lifecycle E2E (stub) (pull_request) Successful in 29s
Local Provision Lifecycle E2E / Local Provision Lifecycle E2E (real image + MiniMax LLM, advisory) (pull_request) Successful in 27s
E2E Staging SaaS (full lifecycle) / E2E Staging Platform Boot (pull_request) Failing after 1m11s
E2E API Smoke Test / E2E API Smoke Test (pull_request) Successful in 2m15s
fix(core#2782 RC cleanup-trap lint): SLUG=literal-$(suffix ...) shape
The cleanup-trap lint (lint_cleanup_traps.sh) is the actual CI
gate for the SLUG=... assignment shape. It requires the
ASSIGNMENT to start with a literal e2e-* or rt-e2e-* prefix
that sweep-stale-e2e-orgs.yml can reap — see #11510. The prior
fix used SLUG=$(make_collision_proof_slug ...), which puts
$ at the start of the value (no literal prefix visible to the
lint regex 'SLUG=(<quote>)(<value>)\1'). The lint would have
REJECTED the new shape.

Fix: split the helper into a SUFFIX-only function. The caller
constructs the slug as 'SLUG="literal-prefix-$(suffix ...)"',
which puts the literal prefix in the value. The suffix
function (date-run_id-uuid) is the only part that's dynamic.

Updated all 7 staging harnesses to use the new shape:
  SLUG="e2e-smoke-$(make_collision_proof_slug_suffix "${E2E_RUN_ID:-}")"
  SLUG="e2e-mcp-$(make_collision_proof_slug_suffix "${E2E_RUN_ID:-}")"
  SLUG="e2e-rec-$(make_collision_proof_slug_suffix "${E2E_RUN_ID:-}")"
  SLUG="e2e-pv-$(make_collision_proof_slug_suffix "${E2E_RUN_ID:-}")"
  SLUG="e2e-cncrg-mk-$(make_collision_proof_slug_suffix "${E2E_RUN_ID:-}")"
  SLUG="e2e-ext-$(make_collision_proof_slug_suffix "${E2E_RUN_ID:-}")"
  SLUG="e2e-cncrg-$(make_collision_proof_slug_suffix "${E2E_RUN_ID:-}")"

Also fixed WORKER_NAME in test_staging_concierge_creates_workspace_e2e.sh
to use the same shape (literal prefix + collision-proof suffix).

Unit tests rewritten to use the new helper signature. 9 unit tests:
- test_slug_shape: full slug with literal prefix is well-formed
- test_same_run_id_different_slugs: random uuid makes them distinct
- test_prefix_preserved: literal e2e- prefix in assignment is preserved
- test_assert_rejects_malformed: slug without 8-char uuid is rejected
- test_assert_rejects_too_short: < 24 chars rejected
- test_fallback_run_id: empty E2E_RUN_ID falls back gracefully
- test_large_run_id_uuid_preserved: 50-char run_id gets truncated, uuid preserved
- test_prefix_budget_dynamic: 30-char prefix still fits + suffix in 60 chars
- test_suffix_length_capped: helper output is at most 51 chars (suffix cap)

Cleanup-trap lint (the actual CI gate PM cited): CLEAN — all
5 staging harnesses have a quoted SLUG=... with a literal
e2e-* prefix.

All 9/9 unit tests pass. Workflow yaml lint clean.
Pre-existing shellcheck SC2034 / SC2015 / SC1091 / SC2086 / SC2329
warnings (unrelated to this fix) remain.

Refs #2785, core#2782.

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-13 23:29:33 +00:00
..