@agent-inspect/tui 3.5.0 → 3.5.1
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 +48 -0
- package/package.json +4 -3
package/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# @agent-inspect/tui
|
|
2
|
+
|
|
3
|
+
Optional terminal UI for `agent-inspect view --tui`.
|
|
4
|
+
|
|
5
|
+
## When to use
|
|
6
|
+
|
|
7
|
+
- Interactive local trace browsing in the terminal
|
|
8
|
+
|
|
9
|
+
## When not to use
|
|
10
|
+
|
|
11
|
+
- CI logs (use `report` / JSON)
|
|
12
|
+
- Terminals without basic Unicode/color support
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install @agent-inspect/tui
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
npx agent-inspect view <run-id> --tui
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Privacy
|
|
27
|
+
|
|
28
|
+
- Reads local trace files only
|
|
29
|
+
|
|
30
|
+
## API
|
|
31
|
+
|
|
32
|
+
| Export | Purpose |
|
|
33
|
+
| ------ | ------- |
|
|
34
|
+
| `mapInputToAction` | Keybindings |
|
|
35
|
+
| `countTreeSteps` | Tree helpers |
|
|
36
|
+
|
|
37
|
+
## Limitations
|
|
38
|
+
|
|
39
|
+
- Experimental UX; prefer `view` / VS Code for large traces
|
|
40
|
+
- Terminal compatibility varies (iTerm, VS Code terminal, etc.)
|
|
41
|
+
|
|
42
|
+
## Version
|
|
43
|
+
|
|
44
|
+
`3.5.x`
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-inspect/tui",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/rajudandigam/agent-inspect/issues"
|
|
15
15
|
},
|
|
16
|
-
"homepage": "https://github.com/rajudandigam/agent-inspect
|
|
16
|
+
"homepage": "https://github.com/rajudandigam/agent-inspect/tree/main/packages/tui",
|
|
17
17
|
"sideEffects": false,
|
|
18
18
|
"main": "./dist/index.cjs",
|
|
19
19
|
"module": "./dist/index.mjs",
|
|
@@ -31,12 +31,13 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
|
+
"README.md",
|
|
34
35
|
"dist"
|
|
35
36
|
],
|
|
36
37
|
"dependencies": {
|
|
37
38
|
"ink": "^5.0.1",
|
|
38
39
|
"react": "^18.3.1",
|
|
39
|
-
"agent-inspect": "3.5.
|
|
40
|
+
"agent-inspect": "3.5.1"
|
|
40
41
|
},
|
|
41
42
|
"devDependencies": {
|
|
42
43
|
"@types/react": "^18.3.18"
|