opencode-auto-review-completed-todos 1.0.0 → 1.0.1

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/README.md +10 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -1,7 +1,17 @@
1
1
  # opencode-auto-review-completed-todos
2
2
 
3
+ > **Topic:** OpenCode Plugins · **Tags:** todo, review, productivity, automation
4
+
3
5
  Auto-detect when all session todos are completed and send a review message. Fires once per session.
4
6
 
7
+ **Site:** [dracon.uk](https://dracon.uk)
8
+
9
+ ## About
10
+
11
+ `opencode-auto-review-completed-todos` is an OpenCode plugin that automatically triggers a session review when all tasks are completed. It listens for OpenCode's internal `todo.updated` events — the same system used by the AI and UI — and sends a visible chat message prompting the AI to summarize the session.
12
+
13
+ Designed as the yin to [`opencode-todo-reminder`](https://www.npmjs.com/package/opencode-todo-reminder)'s yang: where todo-reminder nudges when tasks remain incomplete, this plugin triggers a review when all tasks are done.
14
+
5
15
  ## What it does
6
16
 
7
17
  Listens for OpenCode's internal `todo.updated` events — whenever the todowrite tool creates, updates, or completes todos. When all todos have status `completed` or `cancelled`, it sends a review message to the chat. If new pending todos appear before the debounce fires, the review is cancelled.
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "opencode-auto-review-completed-todos",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Auto-detect when all session todos are completed and trigger a review. Yin to opencode-todo-reminder's yang.",
5
+ "website": "https://dracon.uk",
5
6
  "type": "module",
6
7
  "main": "opencode-auto-review-completed-todos.js",
7
8
  "types": "opencode-auto-review-completed-todos.ts",