@comfanion/usethis_todo 0.1.16-dev.8 → 0.1.16-dev.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.ts +1 -2
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -130,9 +130,8 @@ const UsethisTodoPlugin: Plugin = async ({ directory, client }) => {
130
130
  output.title = "Next 5 tasks"
131
131
  } else if (input.tool === "usethis_todo_read_by_id") {
132
132
  output.title = "Task details"
133
- } else if (input.tool === "todowrite") {
134
- output.title = "Sidebar sync"
135
133
  }
134
+ // Don't touch todowrite title — let TUI handle it natively
136
135
  },
137
136
  }
138
137
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@comfanion/usethis_todo",
3
- "version": "0.1.16-dev.8",
3
+ "version": "0.1.16-dev.9",
4
4
  "description": "OpenCode plugin: enhanced TODO tools (dual storage + dependency graph)",
5
5
  "type": "module",
6
6
  "main": "./index.ts",