@task-mcp/cli 1.0.21 → 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 +818 -0
- package/package.json +7 -5
- package/src/__tests__/ansi.test.ts +0 -221
- package/src/__tests__/dashboard.test.ts +0 -226
- package/src/__tests__/inbox.test.ts +0 -307
- package/src/__tests__/index.test.ts +0 -140
- package/src/__tests__/list.test.ts +0 -347
- package/src/__tests__/storage.test.ts +0 -271
- package/src/ansi.ts +0 -50
- package/src/commands/dashboard.ts +0 -92
- package/src/commands/inbox.ts +0 -229
- package/src/commands/list.ts +0 -106
- package/src/constants.ts +0 -59
- package/src/index.ts +0 -277
- package/src/interactive.ts +0 -254
- package/src/storage.ts +0 -221
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
|
```
|