Files
fusion/plugins/fusion-plugin-todos
gsxdsm 878db6dca7 FN-8951: repair script-test governance drift
Keep test-shard timing governance aligned with the current workspace and workflow seams.

- Add a safe timing-snapshot pruning mode with coverage.
- Align Todo plugin Vitest isolation and Docker dependency manifests.
- Refresh workflow reliability evidence and remove deleted test timings.

Files changed:
 Dockerfile                                         |  7 ++-
 docs/testing.md                                    |  9 ++-
 plugins/fusion-plugin-todos/vitest.config.ts       | 26 ++++++--
 scripts/__tests__/ci-test-shard-timings.test.mjs   | 71 ++++++++++++++++++++++
 scripts/ci-test-shard.mjs                          | 65 ++++++++++++++++++--
 .../lib/workflow-reliability-release-check.json    | 22 +++----
 scripts/test-timings.json                          | 21 -------
 7 files changed, 175 insertions(+), 46 deletions(-)

Fusion-Task-Id: FN-8951

Fusion-Task-Lineage: fbf7e79f-4cb2-43e2-9982-09f3f94de70d

Co-authored-by: Fusion (runfusion.ai) <noreply@runfusion.ai>
2026-08-10 12:09:20 -07:00
..
2026-08-08 14:25:19 -07:00
2026-08-08 14:25:19 -07:00

Todo Lists plugin

@fusion-plugin-examples/todos is the bundled fusion-plugin-todos first-party plugin. Enable it for a project in Settings → Plugins to expose its Todo Lists navigation surface and API.

Why Todo Lists

Todo Lists is Fusion's second feature extraction after Roadmaps. Its bounded project-scoped TodoStore, cohesive list/item route contract, and dashboard handoff into planning provide a focused proof that a feature can move vertically into a plugin without duplicate host ownership.

Rejected alternatives: Insights couples AI generation, memory, research, and native previews; Artifacts/Documents are cross-cutting execution infrastructure; Goals is explicitly outside this extraction's scope.

Architecture

  • src/index.ts declares the fusion-plugin-todos manifest, dashboard contribution, and routes.
  • src/todo-routes.ts owns /api/plugins/fusion-plugin-todos/todos/*; routes resolve the request project through PluginContext.resolveProjectTaskStore.
  • src/dashboard/ owns the Todo view, list/item API client, state hook, responsive layout, and planning/task-created host callbacks.
  • The dashboard host discovers the view only when the plugin is installed and enabled. There is no /api/todos compatibility route or hardcoded Todo nav/view.

Use

Enable the plugin for the intended project, then select Todos from the plugin-discovered overflow, mobile More, or right-dock destination. Create lists and items, hide completed items, hand an item into Planning, or create a task from it. Requests use the plugin namespace and projectId, so lists remain isolated by project.