@lanegrid/agtrace 0.1.14 → 0.1.15

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,39 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.1.15] - 2025-12-31
6
+
7
+ ### Bug Fixes
8
+
9
+ - Remove duplicate v0.1.12 section in CHANGELOG and update all past releases ([a8ea559](https://github.com/lanegrid/agtrace/commit/a8ea55950c0d037649546ff8c9e26420e9c738c0))
10
+
11
+
12
+ ### Documentation
13
+
14
+ - Add README doctest validation to prevent stale examples and version drift ([faf5b88](https://github.com/lanegrid/agtrace/commit/faf5b88c23d73527dd250a36529dafdd1b80d116))
15
+
16
+ - Add comprehensive releaser skill with safety procedures and rollback script ([517cfc3](https://github.com/lanegrid/agtrace/commit/517cfc324337dcc44bd9959b80ec3ed5f5937ad0))
17
+
18
+
19
+ ### Features
20
+
21
+ - Add prepare-release script for automated release workflow ([fdf66ed](https://github.com/lanegrid/agtrace/commit/fdf66eddd182edcf191bed0e7ca4ea175824b291))
22
+
23
+ - Use CHANGELOG.md content for GitHub release notes instead of cargo-dist default ([4201843](https://github.com/lanegrid/agtrace/commit/42018437f2a3da347ee1444501273699a0dc6dfd))
24
+
25
+
26
+ ### Miscellaneous Tasks
27
+
28
+ - Remove releaser skill ([495c1b8](https://github.com/lanegrid/agtrace/commit/495c1b820f24119e2565cc9c38d246a697ca93cb))
29
+
30
+
31
+ ### Refactor
32
+
33
+ - Convert releaser skill to standard directory structure with frontmatter ([13a9ff1](https://github.com/lanegrid/agtrace/commit/13a9ff19545c917ecd4f9eb585b0e401a8e1fc80))
34
+
35
+ - Speed up demo video intro by removing comments and faster typing ([7997475](https://github.com/lanegrid/agtrace/commit/79974752f9b1ac1f22dcd7b85b75b897a24d47ca))
36
+
37
+
5
38
  ## [0.1.14] - 2025-12-31
6
39
 
7
40
  ### Bug Fixes
@@ -92,20 +125,6 @@ All notable changes to this project will be documented in this file.
92
125
  - Bump version to 0.1.11 ([ce33554](https://github.com/lanegrid/agtrace/commit/ce3355441efafc1536f0750a2bcee11ce2582e82))
93
126
 
94
127
 
95
- ## [0.1.12] - 2025-12-29
96
-
97
- ### Bug Fixes
98
-
99
- - *(cli)* Improve init output and watch waiting mode behavior ([22c3d71](https://github.com/lanegrid/agtrace/commit/22c3d71417dfc4afa710d29f07a56e967031d2df))
100
-
101
- - *(cli)* Correct init hint to use session list instead of list ([ee1414a](https://github.com/lanegrid/agtrace/commit/ee1414a62716b5716991fd47f56f603a6dd92bbf))
102
-
103
-
104
- ### Styling
105
-
106
- - *(tui)* Make directory match note more visible with yellow bold text ([b58afe3](https://github.com/lanegrid/agtrace/commit/b58afe3d52fa86e8135729edbce0998ce1c162c9))
107
-
108
-
109
128
  ## [0.1.11] - 2025-12-29
110
129
 
111
130
  ### Bug Fixes
package/README.md CHANGED
@@ -38,11 +38,11 @@ Embed agent observability into your own tools (vital-checkers, IDE plugins, dash
38
38
 
39
39
  ```toml
40
40
  [dependencies]
41
- agtrace-sdk = "0.1.13"
41
+ agtrace-sdk = "0.1"
42
42
  ```
43
43
 
44
44
  ```rust
45
- use agtrace_sdk::{Client, Lens, analyze_session, assemble_session};
45
+ use agtrace_sdk::{Client, Lens};
46
46
 
47
47
  // Connect to the local workspace
48
48
  let client = Client::connect("~/.agtrace")?;
@@ -53,14 +53,12 @@ for event in client.watch().all_providers().start()? {
53
53
  }
54
54
 
55
55
  // 2. Session Diagnosis
56
- let events = client.session("session_123").events()?;
57
- if let Some(session) = assemble_session(&events) {
58
- let report = analyze_session(session)
59
- .through(Lens::Failures)
60
- .through(Lens::Loops)
61
- .report()?;
62
- println!("Health: {}", report.score);
63
- }
56
+ let session_handle = client.sessions().get("session_123")?;
57
+ let report = session_handle.analyze()?
58
+ .through(Lens::Failures)
59
+ .through(Lens::Loops)
60
+ .report()?;
61
+ println!("Health: {}", report.score);
64
62
  ```
65
63
 
66
64
  ## 📚 Documentation
@@ -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.14"
26
+ "version": "0.1.15"
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.14"
518
+ "version": "0.1.15"
519
519
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.1.14",
2
+ "artifactDownloadUrl": "https://github.com/lanegrid/agtrace/releases/download/v0.1.15",
3
3
  "bin": {
4
4
  "agtrace": "run-agtrace.js"
5
5
  },
@@ -93,7 +93,7 @@
93
93
  "zipExt": ".tar.xz"
94
94
  }
95
95
  },
96
- "version": "0.1.14",
96
+ "version": "0.1.15",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"