/** * Seeding generators — produce audit events, agent registrations, PR seeds, * and context comments from computed scenario roles. */ import type { BuildContext, ScenarioRoles } from './types.js'; import type { AuditSeedEvent, PRSeedDefinition } from '../types.js'; /** Generate backdated audit trail events based on task states and roles. */ export declare function generateAuditEvents(ctx: BuildContext, taskStates: Record, roles: ScenarioRoles): AuditSeedEvent[]; /** Generate agent registrations with alpha locked on the cascade blocker. */ export declare function generateAgents(ctx: BuildContext, roles: ScenarioRoles): { agents: { agentId: string; name: string; role: "coding"; capabilities: string[]; }[]; locks: { agentId: string; taskRef: string; }[]; }; /** Seed a PR for the review bottleneck task with real code content. */ export declare function generatePRSeeds(ctx: BuildContext, roles: ScenarioRoles): PRSeedDefinition[]; /** Generate context comments that reference governance signals, task relationships, and real code paths. */ export declare function generateContextComments(ctx: BuildContext, roles: ScenarioRoles): Record; //# sourceMappingURL=seeding.d.ts.map