Agentic orchestrator for parallel coding agents — plans tasks, spawns agents, and autonomously handles CI fixes, merge conflicts, and code reviews.
agent-fleetagent-swarmclaude-codecodex-cligit-worktreesmulti-agentorchestrationorchestratorparallel-agentsparallel-codingskillstmux
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> |
||
|---|---|---|
| .cursor | ||
| .github/workflows | ||
| artifacts | ||
| packages | ||
| scripts | ||
| .gitignore | ||
| .prettierignore | ||
| .prettierrc | ||
| CLAUDE.md | ||
| CLAUDE.orchestrator.md | ||
| DASHBOARD_FIXES_SUMMARY.md | ||
| agent-orchestrator.yaml | ||
| agent-orchestrator.yaml.example | ||
| eslint.config.js | ||
| package.json | ||
| pnpm-lock.yaml | ||
| pnpm-workspace.yaml | ||
| tsconfig.base.json | ||