agent-orchestrator/packages
Prateek f8fc51ae9d fix: CRITICAL - fix field name mismatch in getCIChecks causing all checks to fail
Root cause of "CI failing" everywhere: scm-github plugin was requesting
non-existent fields from gh CLI, causing all checks to map to "failed".

**The Bug:**
- Requesting: `conclusion` and `detailsUrl` (don't exist in gh pr checks)
- Since `conclusion` was always undefined, every check hit the else clause
  and was marked as "failed"

**The Fix:**
- Use correct field names: `state` (contains SUCCESS/FAILURE/PENDING directly)
  and `link` (replaces detailsUrl)
- Parse `state` directly instead of looking for non-existent `conclusion`
- Map state values: SUCCESS → passed, FAILURE → failed, PENDING → pending, etc.

**Impact:**
This was the #1 bug causing false "CI failing" status everywhere, not rate
limiting. All PRs with passing CI were incorrectly shown as failing.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-15 03:23:19 +05:30
..
cli feat: layered prompt system for agent sessions (#27) 2026-02-14 20:07:13 +05:30
core fix: resolve dashboard GitHub API rate limiting and PR enrichment issues 2026-02-15 03:08:28 +05:30
integration-tests fix: detect agent exit for all agent types, not just idle-reporting ones (#22) 2026-02-14 16:52:46 +05:30
plugins fix: CRITICAL - fix field name mismatch in getCIChecks causing all checks to fail 2026-02-15 03:23:19 +05:30
web fix: address bugbot comments (cache leak, PR skip, CI alert) 2026-02-15 03:21:31 +05:30