Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .changeset/record-is-a-session.md

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@
> Forward-looking plan: [`ROADMAP.md`](./ROADMAP.md).

<details open>
<summary><b>1.12.5</b> · 2026-08-29</summary>

### CLI Patch
- Every press of Record is now a new session in the Sessions rail. A session's identity became root owner plus recording: the browser tape stamps each captured frame with its Record gesture and partitions by it, every journal file lists as its own row, a replay is scoped to its recording, and the deep link gains `rec=<recording>`. Before, recordings of the same runtime session merged into one row and hid the separate journal files. `spec/provider-activity.md` §Session journal documents it.

### Spec Patch (1.12.5)
- Every press of Record is now a new session in the Sessions rail. A session's identity became root owner plus recording: the browser tape stamps each captured frame with its Record gesture and partitions by it, every journal file lists as its own row, a replay is scoped to its recording, and the deep link gains `rec=<recording>`. Before, recordings of the same runtime session merged into one row and hid the separate journal files. `spec/provider-activity.md` §Session journal documents it.

</details>

<details>
<summary><b>1.12.4</b> · 2026-08-29</summary>

### CLI Patch
Expand Down
10 changes: 10 additions & 0 deletions spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Spec changelog

## 1.12.5

### Patch Changes

- Every press of Record is now a new session in the Sessions rail. A session's identity became root owner plus recording: the browser tape stamps each captured frame with its Record gesture and partitions by it, every journal file lists as its own row, a replay is scoped to its recording, and the deep link gains `rec=<recording>`. Before, recordings of the same runtime session merged into one row and hid the separate journal files. `spec/provider-activity.md` §Session journal documents it.

## User-facing

Each time you press Record you get a new session in the Sessions list, even inside the same agent session; earlier recordings stay as their own rows and replay on their own.

## 1.12.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions spec/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -476,11 +476,11 @@
}
]
},
"specPackageVersion": "1.12.4",
"specPackageVersion": "1.12.5",
"integrity": {
"algorithm": "sha256",
"files": {
"CHANGELOG.md": "54df8f9cb47a9f0d9ffdb9a8e3215de2be16a8ff33929999883efa7bf298d858",
"CHANGELOG.md": "cfc28569ced326cb22fa8d9a15ef5899c00f1ac94c56f338a48e9b702d0c47ee",
"README.md": "35ac6cc3ce8379c5087f739a528d3b80a140aef5cdeeba9c49b59c5dd5df4c54",
"architecture.md": "20cb9a20ef6218bcbbde99fd81011f1ed216545e5c2cd085c508d6bcbc6144a5",
"cli-contract.md": "8d00dfbe1adbe79531faf854ca7b3114d27cd02aa4974f109d01494a336df14b",
Expand Down
2 changes: 1 addition & 1 deletion spec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@skill-map/spec",
"version": "1.12.4",
"version": "1.12.5",
"description": "JSON Schemas, prose contracts, and conformance suite for the skill-map specification.",
"license": "MIT",
"type": "module",
Expand Down
10 changes: 10 additions & 0 deletions src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# skill-map

## 1.12.5

### Patch Changes

- Every press of Record is now a new session in the Sessions rail. A session's identity became root owner plus recording: the browser tape stamps each captured frame with its Record gesture and partitions by it, every journal file lists as its own row, a replay is scoped to its recording, and the deep link gains `rec=<recording>`. Before, recordings of the same runtime session merged into one row and hid the separate journal files. `spec/provider-activity.md` §Session journal documents it.

## User-facing

Each time you press Record you get a new session in the Sessions list, even inside the same agent session; earlier recordings stay as their own rows and replay on their own.

## 1.12.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@skill-map/cli",
"version": "1.12.4",
"version": "1.12.5",
"description": "skill-map reference implementation: kernel + CLI + adapters.",
"license": "MIT",
"type": "module",
Expand Down
14 changes: 14 additions & 0 deletions ui/src/data/user-changelog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
{
"schemaVersion": 1,
"entries": [
{
"version": "1.12.5",
"date": "2026-08-29",
"kind": "user-facing",
"highlights": [
{
"body": "Each time you press Record you get a new session in the Sessions list, even inside the same agent session; earlier recordings stay as their own rows and replay on their own.",
"packages": [
"@skill-map/cli",
"@skill-map/spec"
]
}
]
},
{
"version": "1.12.4",
"date": "2026-08-29",
Expand Down