@lanegrid/agtrace 0.1.4 → 0.1.5

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/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.5] - 2025-12-27
6
+
7
+ ### Bug Fixes
8
+
9
+ - Correct init command hints to suggest 'watch' and 'session list' instead of non-existent 'list' ([bf1ce4f](https://github.com/lanegrid/agtrace/commit/bf1ce4f))
10
+
11
+
12
+ ### Documentation
13
+
14
+ - Reorder Quick Start to emphasize 'watch' workflow as primary use case ([bd9e03c](https://github.com/lanegrid/agtrace/commit/bd9e03c))
15
+
16
+ - Clarify Quick Start workflow with explicit agent launch steps and no-integration requirement ([09d7e29](https://github.com/lanegrid/agtrace/commit/09d7e29))
17
+
18
+ - Update screenshot to use Claude-specific dashboard image ([e504ee4](https://github.com/lanegrid/agtrace/commit/e504ee4))
19
+
20
+
5
21
  ## [0.1.4] - 2025-12-27
6
22
 
7
23
  ### Bug Fixes
package/README.md CHANGED
@@ -20,7 +20,7 @@ You are effectively flying a plane without a fuel gauge.
20
20
 
21
21
  **agtrace** is a local-only telemetry tool that acts as a "Vital Check" for your AI agents. by normalizing logs from various providers, it visualizes the internal state of your agent in real-time.
22
22
 
23
- ![agtrace watch TUI dashboard](docs/images/watch-screenshot.png)
23
+ ![agtrace watch TUI dashboard](docs/images/watch-screenshot-claude.png)
24
24
 
25
25
  *The dashboard showing Context Window usage, current turn, and token costs*
26
26
 
@@ -73,26 +73,40 @@ npx @lanegrid/agtrace@latest init
73
73
 
74
74
  ## 🚀 Quick Start
75
75
 
76
- ### 1. Initialize
76
+ ### 1. Initialize in Your Project
77
77
 
78
- Run this in your project root to detect installed providers (Claude, etc.) and index existing sessions.
78
+ Navigate to your project directory and run:
79
79
 
80
80
  ```bash
81
+ cd /path/to/your/project
81
82
  agtrace init
82
83
  ```
83
84
 
84
- ### 2. Watch Mode (The "Vital Check")
85
+ ### 2. Start Your AI Coding Agent
85
86
 
86
- Open a new terminal pane and run the watch command. This will launch the TUI dashboard.
87
+ In one terminal, launch your usual AI coding agent:
88
+
89
+ ```bash
90
+ # Example: Claude Code
91
+ claude
92
+
93
+ # Or Codex, Gemini, etc.
94
+ ```
95
+
96
+ ### 3. Watch in Another Terminal
97
+
98
+ Open a separate terminal pane in the same project directory and run:
87
99
 
88
100
  ```bash
89
101
  agtrace watch
90
102
  ```
91
103
 
104
+ That's it. No integration required—agtrace automatically detects and monitors your agent session.
105
+
92
106
  * **Visualizes:** Context Window usage, Cost, Turns, and Last Activity.
93
- * **Auto-Switch:** When you start a `claude` or `codex` session in another pane, agtrace automatically latches onto the new log file.
107
+ * **Auto-Switch:** When you start a new session, agtrace automatically latches onto it.
94
108
 
95
- ### 3. Analyze Past Sessions
109
+ ### 4. Analyze Past Sessions
96
110
 
97
111
  List recent sessions across all providers or inspect a specific one.
98
112
 
@@ -105,7 +119,7 @@ agtrace session show <session_id>
105
119
 
106
120
  ```
107
121
 
108
- ### 4. Advanced: The "Lab"
122
+ ### 5. Advanced: The "Lab"
109
123
 
110
124
  Debug agent interactions or search for specific patterns (e.g., "When did the agent try to write to `package.json`?").
111
125
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT OR Apache-2.0",
25
25
  "name": "@lanegrid/agtrace",
26
- "version": "0.1.4"
26
+ "version": "0.1.5"
27
27
  },
28
28
  "node_modules/@isaacs/balanced-match": {
29
29
  "engines": {
@@ -515,5 +515,5 @@
515
515
  }
516
516
  },
517
517
  "requires": true,
518
- "version": "0.1.4"
518
+ "version": "0.1.5"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.1.4",
2
+ "artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.1.5",
3
3
  "bin": {
4
4
  "agtrace": "run-agtrace.js"
5
5
  },
@@ -83,7 +83,7 @@
83
83
  "zipExt": ".tar.xz"
84
84
  }
85
85
  },
86
- "version": "0.1.4",
86
+ "version": "0.1.5",
87
87
  "volta": {
88
88
  "node": "18.14.1",
89
89
  "npm": "9.5.0"