Files
Codewalkers/apps/server/events/index.ts
Lukas May 7e0749ef17 feat: Wire full request-changes flow for phase review
- Add PhaseChangesRequestedEvent to event bus
- Add requestChangesOnPhase() to ExecutionOrchestrator: reads unresolved
  comments, creates revision task (category='review'), resets phase to
  in_progress, queues task for dispatch
- Expand merge-skip and branch routing to include 'review' category so
  revision tasks work directly on the phase branch
- Add requestPhaseChanges tRPC procedure (reads comments from DB)
- Wire frontend: mutation replaces stub handler, window.prompt for
  optional summary, loading state on button
2026-03-05 11:35:34 +01:00

74 lines
1.7 KiB
TypeScript

/**
* Events Module - Public API
*
* Exports the EventBus port interface and EventEmitter adapter.
* All modules should import from this index file.
*/
// Port interface (what consumers depend on)
export type { EventBus, DomainEvent } from './types.js';
// Domain event types
export type {
ProcessSpawnedEvent,
ProcessStoppedEvent,
ProcessCrashedEvent,
ServerStartedEvent,
ServerStoppedEvent,
LogEntryEvent,
WorktreeCreatedEvent,
WorktreeRemovedEvent,
WorktreeMergedEvent,
WorktreeConflictEvent,
AgentSpawnedEvent,
AgentStoppedEvent,
AgentCrashedEvent,
AgentResumedEvent,
AgentAccountSwitchedEvent,
AgentDeletedEvent,
AgentWaitingEvent,
AgentOutputEvent,
TaskQueuedEvent,
TaskDispatchedEvent,
TaskCompletedEvent,
TaskBlockedEvent,
TaskPendingApprovalEvent,
PhaseQueuedEvent,
PhaseStartedEvent,
PhaseCompletedEvent,
PhaseBlockedEvent,
PhasePendingReviewEvent,
PhaseChangesRequestedEvent,
PhaseMergedEvent,
TaskMergedEvent,
MergeQueuedEvent,
MergeStartedEvent,
MergeCompletedEvent,
MergeConflictedEvent,
PageCreatedEvent,
PageUpdatedEvent,
PageDeletedEvent,
AccountCredentialsRefreshedEvent,
AccountCredentialsExpiredEvent,
AccountCredentialsValidatedEvent,
DomainEventMap,
DomainEventType,
} from './types.js';
// Adapter implementation
export { EventEmitterBus } from './bus.js';
// Factory function for creating event bus instances
import { EventEmitterBus } from './bus.js';
import type { EventBus } from './types.js';
/**
* Create a new EventBus instance.
*
* Returns the default in-process EventEmitter adapter.
* This factory allows swapping implementations without changing call sites.
*/
export function createEventBus(): EventBus {
return new EventEmitterBus();
}