@thask-org/cli 0.3.0 → 0.5.0
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/.omc/state/idle-notif-cooldown.json +3 -0
- package/README.md +13 -5
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
# thask
|
|
1
|
+
# @thask-org/cli
|
|
2
2
|
|
|
3
3
|
Graph-based dependency visualization for AI-assisted development.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npm install -g thask
|
|
8
|
+
npm install -g @thask-org/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or use directly with npx:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx @thask-org/cli version
|
|
9
15
|
```
|
|
10
16
|
|
|
11
17
|
## Quick Start
|
|
@@ -20,16 +26,18 @@ thask scan --path . --dry-run
|
|
|
20
26
|
|
|
21
27
|
# Analyze dependencies
|
|
22
28
|
thask graph analyze -p <projectId>
|
|
23
|
-
|
|
24
|
-
# Use with Claude Code (.claude/mcp.json)
|
|
25
29
|
```
|
|
26
30
|
|
|
31
|
+
## MCP Integration (Claude Code / Cursor)
|
|
32
|
+
|
|
33
|
+
Add to `.claude/mcp.json`:
|
|
34
|
+
|
|
27
35
|
```json
|
|
28
36
|
{
|
|
29
37
|
"mcpServers": {
|
|
30
38
|
"thask": {
|
|
31
39
|
"command": "npx",
|
|
32
|
-
"args": ["-y", "thask", "mcp", "serve", "--url", "http://localhost:7244", "--token", "<key>"]
|
|
40
|
+
"args": ["-y", "@thask-org/cli", "mcp", "serve", "--url", "http://localhost:7244", "--token", "<key>"]
|
|
33
41
|
}
|
|
34
42
|
}
|
|
35
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thask-org/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Graph-based dependency visualization for AI-assisted development",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"node": ">=18"
|
|
25
25
|
},
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@thask-org/cli-darwin-arm64": "0.
|
|
28
|
-
"@thask-org/cli-darwin-x64": "0.
|
|
29
|
-
"@thask-org/cli-linux-arm64": "0.
|
|
30
|
-
"@thask-org/cli-linux-x64": "0.
|
|
31
|
-
"@thask-org/cli-win32-x64": "0.
|
|
27
|
+
"@thask-org/cli-darwin-arm64": "0.5.0",
|
|
28
|
+
"@thask-org/cli-darwin-x64": "0.5.0",
|
|
29
|
+
"@thask-org/cli-linux-arm64": "0.5.0",
|
|
30
|
+
"@thask-org/cli-linux-x64": "0.5.0",
|
|
31
|
+
"@thask-org/cli-win32-x64": "0.5.0"
|
|
32
32
|
}
|
|
33
33
|
}
|