@gui-chat-plugin/todo 0.1.0 → 0.1.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.
- package/README.md +10 -0
- package/package.json +11 -5
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @gui-chat-plugin/todo
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@gui-chat-plugin/todo)
|
|
4
|
+
|
|
3
5
|
Todo list plugin for GUI Chat applications. Manage tasks with a persistent todo list that syncs via localStorage.
|
|
4
6
|
|
|
5
7
|
## Features
|
|
@@ -89,6 +91,14 @@ yarn build
|
|
|
89
91
|
yarn lint
|
|
90
92
|
```
|
|
91
93
|
|
|
94
|
+
## Test Prompts
|
|
95
|
+
|
|
96
|
+
Try these prompts to test the plugin:
|
|
97
|
+
|
|
98
|
+
1. "Show me my todo list"
|
|
99
|
+
2. "Add 'Buy groceries' to my todo list"
|
|
100
|
+
3. "I finished shopping, mark the groceries task as done"
|
|
101
|
+
|
|
92
102
|
## License
|
|
93
103
|
|
|
94
104
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gui-chat-plugin/todo",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Todo list plugin for GUIChat",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
},
|
|
25
25
|
"./style.css": "./dist/style.css"
|
|
26
26
|
},
|
|
27
|
-
"files": [
|
|
27
|
+
"files": [
|
|
28
|
+
"dist"
|
|
29
|
+
],
|
|
28
30
|
"scripts": {
|
|
29
31
|
"dev": "vite",
|
|
30
32
|
"build": "vite build && vue-tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
@@ -35,7 +37,7 @@
|
|
|
35
37
|
"vue": "^3.5.0"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"gui-chat-protocol": "^0.0.
|
|
40
|
+
"gui-chat-protocol": "^0.0.3"
|
|
39
41
|
},
|
|
40
42
|
"devDependencies": {
|
|
41
43
|
"@tailwindcss/vite": "^4.1.18",
|
|
@@ -48,10 +50,14 @@
|
|
|
48
50
|
"tailwindcss": "^4.1.18",
|
|
49
51
|
"typescript": "~5.9.3",
|
|
50
52
|
"vite": "^7.3.1",
|
|
51
|
-
"vue": "^3.5.
|
|
53
|
+
"vue": "^3.5.27",
|
|
52
54
|
"vue-eslint-parser": "^10.2.0",
|
|
53
55
|
"vue-tsc": "^3.2.2"
|
|
54
56
|
},
|
|
55
|
-
"keywords": [
|
|
57
|
+
"keywords": [
|
|
58
|
+
"guichat",
|
|
59
|
+
"plugin",
|
|
60
|
+
"todo"
|
|
61
|
+
],
|
|
56
62
|
"license": "MIT"
|
|
57
63
|
}
|