@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.
Files changed (2) hide show
  1. package/README.md +13 -8
  2. 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
- # Build
9
- go build -o thask ./cmd/thask
8
+ # Install
9
+ npm i -g @thask-org/cli
10
10
 
11
- # Configure
12
- ./thask config set url http://localhost:7244
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
- ./thask node list --pretty
17
- ./thask impact --node <nodeId>
18
- ./thask mcp serve # Start MCP server for Claude Code
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thask-org/cli",
3
- "version": "0.5.7",
3
+ "version": "0.5.9",
4
4
  "description": "Graph-based dependency visualization CLI for AI-assisted development",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/kimgh06/Thask",