@thask-org/cli 0.5.14 → 0.6.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/README.md +11 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,6 +15,11 @@ thask init
|
|
|
15
15
|
thask node list --pretty
|
|
16
16
|
thask impact --node <nodeId>
|
|
17
17
|
thask mcp serve # Start MCP server for Claude Code / Cursor / Codex
|
|
18
|
+
|
|
19
|
+
# Inspect your own CLI usage (v0.5.15+, local-only — no upload)
|
|
20
|
+
thask usage # 30-day summary
|
|
21
|
+
thask reflog -n 20 # alias: thask history
|
|
22
|
+
thask telemetry status # what's collected + opt-in state
|
|
18
23
|
```
|
|
19
24
|
|
|
20
25
|
Build from source instead:
|
|
@@ -33,9 +38,12 @@ go build -o thask ./cmd/thask
|
|
|
33
38
|
```
|
|
34
39
|
cmd/thask/ Entry point
|
|
35
40
|
internal/
|
|
36
|
-
cmd/ Cobra commands (node, edge, team, project, graph, impact, etc.)
|
|
37
|
-
mcp/ MCP server (stdio protocol,
|
|
41
|
+
cmd/ Cobra commands (node, edge, team, project, graph, impact, telemetry, usage, reflog, etc.)
|
|
42
|
+
mcp/ MCP server (stdio protocol, 24 tools)
|
|
38
43
|
client/ HTTP client for backend API
|
|
39
|
-
config/ Config file management (~/.
|
|
44
|
+
config/ Config file management (~/.thask/config.json)
|
|
40
45
|
output/ Output formatting (JSON, table, quiet)
|
|
46
|
+
telemetry/ Local-first event log (~/.thask/events.jsonl) — v0.5.15+
|
|
47
|
+
scan/ Go codebase dependency scanner
|
|
48
|
+
update/ Background update-check
|
|
41
49
|
```
|