@task-mcp/cli 1.0.22 → 1.0.23
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 +1 -6
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -162,13 +162,11 @@ The CLI reads data from the `.tasks/` directory created by the task-mcp MCP serv
|
|
|
162
162
|
| Variable | Description | Default |
|
|
163
163
|
|----------|-------------|---------|
|
|
164
164
|
| `TASKS_DIR` | Custom path for task storage | `~/.tasks` |
|
|
165
|
-
| `TASKS_LOCAL` | Set to "true" for project-local storage | - |
|
|
166
165
|
|
|
167
166
|
### Storage Priority
|
|
168
167
|
|
|
169
168
|
1. `TASKS_DIR` environment variable (if set)
|
|
170
|
-
2.
|
|
171
|
-
3. Default: `~/.tasks` (global)
|
|
169
|
+
2. Default: `~/.tasks` (global)
|
|
172
170
|
|
|
173
171
|
### Examples
|
|
174
172
|
|
|
@@ -176,9 +174,6 @@ The CLI reads data from the `.tasks/` directory created by the task-mcp MCP serv
|
|
|
176
174
|
# Use global storage (default)
|
|
177
175
|
task
|
|
178
176
|
|
|
179
|
-
# Use project-local storage
|
|
180
|
-
TASKS_LOCAL=true task
|
|
181
|
-
|
|
182
177
|
# Use custom directory
|
|
183
178
|
TASKS_DIR=/path/to/tasks task
|
|
184
179
|
```
|
package/dist/index.js
CHANGED
|
@@ -563,7 +563,7 @@ async function inboxCountCmd() {
|
|
|
563
563
|
// package.json
|
|
564
564
|
var package_default = {
|
|
565
565
|
name: "@task-mcp/cli",
|
|
566
|
-
version: "1.0.
|
|
566
|
+
version: "1.0.22",
|
|
567
567
|
description: "Zero-dependency CLI for task-mcp with Bun native visualization",
|
|
568
568
|
type: "module",
|
|
569
569
|
bin: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@task-mcp/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"description": "Zero-dependency CLI for task-mcp with Bun native visualization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"directory": "packages/cli"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@task-mcp/mcp-server": "
|
|
36
|
-
"@task-mcp/shared": "
|
|
35
|
+
"@task-mcp/mcp-server": "workspace:*",
|
|
36
|
+
"@task-mcp/shared": "workspace:*"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bun": "^1.1.14",
|