@trce/cli 0.1.0-beta.1 → 0.1.0-beta.2
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 +8 -1
- package/README.md +3 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
Notable changes to trce are documented here.
|
|
4
4
|
|
|
5
|
-
## 0.1.0-beta.
|
|
5
|
+
## 0.1.0-beta.2 — Unreleased
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- One-shot shares now finalize completed sessions while `--live` shares remain
|
|
10
|
+
open for incremental updates.
|
|
11
|
+
|
|
12
|
+
## 0.1.0-beta.1 — 2026-07-12
|
|
6
13
|
|
|
7
14
|
First public beta.
|
|
8
15
|
|
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
See what your coding agents do.
|
|
6
6
|
|
|
7
|
+
Read [Inside a coding agent run](https://tairasim.com/blog/inside-a-coding-agent-run/)
|
|
8
|
+
for the story behind trce.
|
|
9
|
+
|
|
7
10
|
[](https://github.com/assimovt/trce-cli/actions/workflows/ci.yml)
|
|
8
11
|
[](LICENSE)
|
|
9
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trce/cli",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.2",
|
|
4
4
|
"description": "Local recorder and share CLI for coding-agent traces.",
|
|
5
5
|
"author": "Tair Asim",
|
|
6
6
|
"homepage": "https://trce.sh",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"apps/*"
|
|
52
52
|
],
|
|
53
53
|
"optionalDependencies": {
|
|
54
|
-
"@trce/cli-darwin-arm64": "0.1.0-beta.
|
|
55
|
-
"@trce/cli-darwin-x64": "0.1.0-beta.
|
|
56
|
-
"@trce/cli-linux-arm64": "0.1.0-beta.
|
|
57
|
-
"@trce/cli-linux-x64": "0.1.0-beta.
|
|
58
|
-
"@trce/cli-win32-arm64": "0.1.0-beta.
|
|
59
|
-
"@trce/cli-win32-x64": "0.1.0-beta.
|
|
54
|
+
"@trce/cli-darwin-arm64": "0.1.0-beta.2",
|
|
55
|
+
"@trce/cli-darwin-x64": "0.1.0-beta.2",
|
|
56
|
+
"@trce/cli-linux-arm64": "0.1.0-beta.2",
|
|
57
|
+
"@trce/cli-linux-x64": "0.1.0-beta.2",
|
|
58
|
+
"@trce/cli-win32-arm64": "0.1.0-beta.2",
|
|
59
|
+
"@trce/cli-win32-x64": "0.1.0-beta.2"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"build": "bun run scripts/build-bundle.ts",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"prepack": "bun run check:packages",
|
|
76
76
|
"schema:check": "bun run scripts/generate-json-schema.ts --check",
|
|
77
77
|
"schema:generate": "bun run scripts/generate-json-schema.ts",
|
|
78
|
-
"release:check": "bun run scripts/check-release.ts --version 0.1.0-beta.
|
|
78
|
+
"release:check": "bun run scripts/check-release.ts --version 0.1.0-beta.2 --tag next",
|
|
79
79
|
"smoke:package": "bun run scripts/smoke-package.ts --target current",
|
|
80
80
|
"smoke:protocol": "bun run scripts/smoke-protocol.ts",
|
|
81
81
|
"test": "bun test",
|