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
Replaces hardcoded string literals with typed constants for: - SESSION_STATUS (needs_input, stuck, errored, etc.) - PR_STATE (merged, closed, open) - CI_STATUS (passing, failing, pending, none) Benefits: - Type safety - IDE catches typos at compile time - Autocomplete - Better developer experience - Single source of truth - Easy to add/remove states - Easier refactoring - Change constant value in one place - Better git grep - Search for SESSION_STATUS.STUCK vs all "stuck" strings Files updated: - packages/core/src/types.ts - Added constants - packages/core/src/lifecycle-manager.ts - SessionStatus, PRState, CIStatus - packages/core/src/session-manager.ts - PRState - packages/web/src/lib/types.ts - SessionStatus, CIStatus - packages/web/src/components/SessionCard.tsx - CIStatus - packages/web/src/components/SessionDetail.tsx - CIStatus - packages/web/src/components/Dashboard.tsx - CIStatus - packages/plugins/scm-github/src/index.ts - CIStatus - packages/plugins/notifier-slack/src/index.ts - CIStatus Follows pattern established in PR #55 for ACTIVITY_STATE constants. Resolves INT-1368 Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .changeset | ||
| .cursor | ||
| .github/workflows | ||
| artifacts | ||
| packages | ||
| scripts | ||
| .gitignore | ||
| .npmrc | ||
| .prettierignore | ||
| .prettierrc | ||
| CLAUDE.md | ||
| CLAUDE.orchestrator.md | ||
| DASHBOARD_FIXES_SUMMARY.md | ||
| LICENSE | ||
| agent-orchestrator.yaml | ||
| agent-orchestrator.yaml.example | ||
| eslint.config.js | ||
| package.json | ||
| pnpm-lock.yaml | ||
| pnpm-workspace.yaml | ||
| tsconfig.base.json | ||