diff --git a/packages/coding-agent/docs/refactor.md b/packages/coding-agent/docs/refactor.md index 8dfd915f..420a052f 100644 --- a/packages/coding-agent/docs/refactor.md +++ b/packages/coding-agent/docs/refactor.md @@ -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` --- diff --git a/packages/coding-agent/src/modes/index.ts b/packages/coding-agent/src/modes/index.ts new file mode 100644 index 00000000..e0a853af --- /dev/null +++ b/packages/coding-agent/src/modes/index.ts @@ -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