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
9 changes: 0 additions & 9 deletions .changeset/live-lens-pin-survivors.md

This file was deleted.

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

<details open>
<summary><b>1.10.1</b> · 2026-08-15</summary>

### CLI Patch
- The Live lens incremental layout now pins the nodes it has already placed (d3-force `fx`/`fy`) instead of re-simulating them, and keeps the whole-cloud centring forces for the cold-start run only. A node joining the live set used to nudge every other node, which read as flicker; survivors now hold their exact position and only the newcomers settle.

</details>

<details>
<summary><b>1.10.0</b> · 2026-08-14</summary>

### CLI Minor
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.10.1

### Patch Changes

- The Live lens incremental layout now pins the nodes it has already placed (d3-force `fx`/`fy`) instead of re-simulating them, and keeps the whole-cloud centring forces for the cold-start run only. A node joining the live set used to nudge every other node, which read as flicker; survivors now hold their exact position and only the newcomers settle.

## User-facing

The Live lens map no longer jitters: when a new file starts executing, the nodes already on screen stay exactly where they were instead of drifting around it.

## 1.10.0

### Minor 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.10.0",
"version": "1.10.1",
"description": "skill-map reference implementation: kernel + CLI + adapters.",
"license": "MIT",
"type": "module",
Expand Down
13 changes: 13 additions & 0 deletions ui/src/data/user-changelog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
{
"schemaVersion": 1,
"entries": [
{
"version": "1.10.1",
"date": "2026-08-15",
"kind": "user-facing",
"highlights": [
{
"body": "The Live lens map no longer jitters: when a new file starts executing, the nodes already on screen stay exactly where they were instead of drifting around it.",
"packages": [
"@skill-map/cli"
]
}
]
},
{
"version": "1.10.0",
"date": "2026-08-14",
Expand Down