WP13: Create modes/index.ts barrel export

This commit is contained in:
Mario Zechner 2025-12-09 00:16:46 +01:00
parent e7c71e7ee3
commit 7890fb836a
2 changed files with 9 additions and 2 deletions

View file

@ -1327,8 +1327,8 @@ export { runRpcMode } from "./rpc-mode.js";
// InteractiveMode will be added later
```
- [ ] Create `src/modes/index.ts`
- [ ] Verify with `npm run check`
- [x] Create `src/modes/index.ts`
- [x] Verify with `npm run check`
---

View file

@ -0,0 +1,7 @@
/**
* Run modes for the coding agent.
*/
export { runPrintMode } from "./print-mode.js";
export { runRpcMode } from "./rpc-mode.js";
// InteractiveMode will be added in WP15