@elizaos/plugin-todos 2.0.3-beta.2 → 2.0.3-beta.3
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.
- package/package.json +9 -8
- package/registry-entry.json +26 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-todos",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.3",
|
|
4
4
|
"description": "User-scoped persistent todos with CRUD. Single TODO umbrella action (op-based: write/create/update/complete/cancel/delete/list/clear) and a currentTodosProvider that surfaces the user's pending + in-progress todos to the planner each turn. Backed by drizzle pgSchema('todos').",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"files": [
|
|
39
|
+
"registry-entry.json",
|
|
39
40
|
"assets",
|
|
40
41
|
"dist"
|
|
41
42
|
],
|
|
@@ -50,16 +51,16 @@
|
|
|
50
51
|
"author": "elizaOS",
|
|
51
52
|
"license": "MIT",
|
|
52
53
|
"dependencies": {
|
|
53
|
-
"@elizaos/agent": "2.0.3-beta.
|
|
54
|
-
"@elizaos/app-core": "2.0.3-beta.
|
|
55
|
-
"@elizaos/core": "2.0.3-beta.
|
|
56
|
-
"@elizaos/shared": "2.0.3-beta.
|
|
57
|
-
"@elizaos/ui": "2.0.3-beta.
|
|
54
|
+
"@elizaos/agent": "2.0.3-beta.3",
|
|
55
|
+
"@elizaos/app-core": "2.0.3-beta.3",
|
|
56
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
57
|
+
"@elizaos/shared": "2.0.3-beta.3",
|
|
58
|
+
"@elizaos/ui": "2.0.3-beta.3",
|
|
58
59
|
"drizzle-orm": "^0.45.1",
|
|
59
60
|
"lucide-react": "^1.0.0"
|
|
60
61
|
},
|
|
61
62
|
"peerDependencies": {
|
|
62
|
-
"@elizaos/plugin-sql": "2.0.3-beta.
|
|
63
|
+
"@elizaos/plugin-sql": "2.0.3-beta.3",
|
|
63
64
|
"react": "^19.0.0",
|
|
64
65
|
"react-dom": "^19.0.0"
|
|
65
66
|
},
|
|
@@ -109,5 +110,5 @@
|
|
|
109
110
|
"node": "Default export (Node.js)"
|
|
110
111
|
}
|
|
111
112
|
},
|
|
112
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
|
|
113
114
|
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "todos",
|
|
3
|
+
"name": "Todos",
|
|
4
|
+
"description": "User-scoped persistent todos with CRUD. Single TODO umbrella action with op-based dispatch (write/create/update/complete/cancel/delete/list/clear). The currentTodosProvider surfaces the user's pending + in-progress todos to the planner each turn. Backed by drizzle pgSchema('todos'); requires plugin-sql.",
|
|
5
|
+
"npmName": "@elizaos/plugin-todos",
|
|
6
|
+
"version": "0.2.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": ["todos", "tasks", "agent", "claude-code", "crud"],
|
|
9
|
+
"config": {},
|
|
10
|
+
"render": {
|
|
11
|
+
"visible": true,
|
|
12
|
+
"pinTo": [],
|
|
13
|
+
"style": "card",
|
|
14
|
+
"icon": "ListChecks",
|
|
15
|
+
"group": "devtools",
|
|
16
|
+
"groupOrder": 6,
|
|
17
|
+
"actions": ["enable", "configure"]
|
|
18
|
+
},
|
|
19
|
+
"resources": {
|
|
20
|
+
"homepage": "https://github.com/elizaos/eliza#readme",
|
|
21
|
+
"repository": "https://github.com/elizaos/eliza"
|
|
22
|
+
},
|
|
23
|
+
"dependsOn": ["sql"],
|
|
24
|
+
"kind": "plugin",
|
|
25
|
+
"subtype": "devtools"
|
|
26
|
+
}
|