Blame · Line-by-line history
index.ts
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| ddb25a6 | 1 | /** |
| 2 | * Barrel for the K-series agents (Wave 2+). | |
| 3 | * | |
| 4 | * Each agent lives in its own file under this directory and re-exports its | |
| 5 | * public entry function here. Add new exports below — do NOT replace the file | |
| 6 | * when landing another agent. | |
| 7 | */ | |
| 8 | ||
| 9 | export { | |
| 10 | runTriageAgent, | |
| 11 | normaliseTriagePayload, | |
| 12 | validateTriageArgs, | |
| 13 | estimateHaikuCents, | |
| 14 | renderTriageComment, | |
| 15 | buildRunSummary, | |
| 16 | type RunTriageAgentArgs, | |
| 17 | type RunTriageAgentResult, | |
| 18 | type TriageClassification, | |
| 19 | type TriageCategory, | |
| 20 | type TriageComplexity, | |
| 21 | type TriagePriority, | |
| 22 | type TriageItemKind, | |
| 23 | } from "./triage-agent"; | |
| 24 | ||
| 25 | export { runReviewResponseAgent } from "./review-response-agent"; | |
| 26 | ||
| 27 | export { | |
| 28 | runHealBot, | |
| 29 | runHealBotForAll, | |
| 30 | renderHealBotPrBody, | |
| 31 | renderHealBotPrTitle, | |
| 32 | buildHealBotSummary, | |
| 33 | HEAL_BOT_SLUG, | |
| 34 | HEAL_BOT_BOT_USERNAME, | |
| 35 | type RunHealBotArgs, | |
| 36 | type RunHealBotResult, | |
| 37 | type RunHealBotForAllResult, | |
| 38 | } from "./heal-bot"; | |
| 055ebc4 | 39 | |
| 40 | export { | |
| 41 | runFixAgent, | |
| 42 | renderFixAgentComment, | |
| 43 | buildFixAgentSummary, | |
| 44 | FIX_AGENT_COST_CENTS, | |
| 45 | FIX_AGENT_MAX_REPAIRS_IN_COMMENT, | |
| 46 | FIX_AGENT_SLUG, | |
| 47 | FIX_AGENT_BOT_USERNAME, | |
| 48 | type RunFixAgentArgs, | |
| 49 | type RunFixAgentResult, | |
| 50 | } from "./fix-agent"; | |
| 51 | ||
| 52 | export { | |
| 53 | runDeployWatcher, | |
| 54 | renderIncidentIssueBody, | |
| 55 | buildDeployWatcherSummary, | |
| 56 | shouldRollback, | |
| 57 | DEPLOY_WATCHER_COST_CENTS, | |
| 58 | DEPLOY_WATCHER_ERROR_THRESHOLD, | |
| 59 | DEPLOY_WATCHER_WINDOW_MS, | |
| 60 | DEPLOY_WATCHER_POLL_MS, | |
| 61 | DEPLOY_WATCHER_SLUG, | |
| 62 | DEPLOY_WATCHER_BOT_USERNAME, | |
| 63 | type RunDeployWatcherArgs, | |
| 64 | type RunDeployWatcherResult, | |
| 65 | } from "./deploy-watcher"; |