refactor(todos): remove internal file-based todo system (#635)
Some checks failed
CI / pr-title (push) Has been cancelled
CI / test (push) Has been cancelled
Release PR / release-pr (push) Has been cancelled
Release PR / publish-cli (push) Has been cancelled

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Trevin Chow
2026-04-21 18:16:13 -07:00
committed by GitHub
parent 19bbb60e90
commit accbd2adcf
27 changed files with 760 additions and 606 deletions

View File

@@ -21,6 +21,8 @@ describe("ensureCodexAgentsFile", () => {
const content = await readFile(agentsPath)
expect(content).toContain(CODEX_AGENTS_BLOCK_START)
expect(content).toContain("Tool mapping")
expect(content).toContain("TaskCreate/TaskUpdate/TaskList/TaskGet/TaskStop/TaskOutput")
expect(content).toContain("use update_plan")
expect(content).toContain(CODEX_AGENTS_BLOCK_END)
})