@thask-org/cli 0.5.7 → 0.5.9
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 +13 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,17 +5,22 @@ Command-line interface and MCP server for Thask.
|
|
|
5
5
|
## Quick Start
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
#
|
|
9
|
-
|
|
8
|
+
# Install
|
|
9
|
+
npm i -g @thask-org/cli
|
|
10
10
|
|
|
11
|
-
# Configure
|
|
12
|
-
|
|
13
|
-
./thask config set token <your-api-key>
|
|
11
|
+
# Configure (interactive — also patches Claude Code / Cursor / Codex configs)
|
|
12
|
+
thask init
|
|
14
13
|
|
|
15
14
|
# Use
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
thask node list --pretty
|
|
16
|
+
thask impact --node <nodeId>
|
|
17
|
+
thask mcp serve # Start MCP server for Claude Code / Cursor / Codex
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Build from source instead:
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
go build -o thask ./cmd/thask
|
|
19
24
|
```
|
|
20
25
|
|
|
21
26
|
## Documentation
|