throughline 0.10.5 → 0.10.6

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
@@ -10,6 +10,15 @@ shipped to npm but were not individually tagged on GitHub.
10
10
 
11
11
  ## [Unreleased]
12
12
 
13
+ ## [0.10.6] — 2026-09-01
14
+
15
+ ### Fixed
16
+
17
+ - Document the one-time official npm bootstrap required when upgrading from
18
+ v0.10.4 or earlier, whose CLI predates `throughline self-update`. Once the
19
+ current CLI is installed, all later updates continue through the single
20
+ `throughline self-update` entry.
21
+
13
22
  ## [0.10.5] — 2026-09-01
14
23
 
15
24
  ### Added
@@ -1361,7 +1370,8 @@ two attempts, instrument first instead of patching again.
1361
1370
 
1362
1371
  ---
1363
1372
 
1364
- [Unreleased]: https://github.com/kitepon/Throughline/compare/v0.10.5...HEAD
1373
+ [Unreleased]: https://github.com/kitepon/Throughline/compare/v0.10.6...HEAD
1374
+ [0.10.6]: https://github.com/kitepon/Throughline/compare/v0.10.5...v0.10.6
1365
1375
  [0.10.5]: https://github.com/kitepon/Throughline/compare/v0.10.4...v0.10.5
1366
1376
  [0.10.4]: https://github.com/kitepon/Throughline/compare/v0.10.3...v0.10.4
1367
1377
  [0.10.3]: https://github.com/kitepon/Throughline/compare/v0.10.2...v0.10.3
package/README.ja.md CHANGED
@@ -375,6 +375,10 @@ Throughline state をまだ書いていない現在セッションも表示で
375
375
  | `throughline install --project` | 現リポジトリの `.claude/settings.json` だけに hook を登録 |
376
376
  | `throughline self-update [--json]` | 公式npm package更新、公開PATHがその新CLI・versionを指すことの確認、製品所有連携の再適用、既存DB migration、公開diagnosticsの確認までを一回で実行 |
377
377
  | `throughline uninstall` | hook を削除 |
378
+
379
+ v0.10.4以前には `self-update` が存在しない。該当版からの初回だけ
380
+ `npm install --global throughline@latest` を実行し、続けて
381
+ `throughline self-update` を実行する。以後の更新は `throughline self-update` だけで完結する。
378
382
  | `throughline monitor` | マルチセッション監視を起動 |
379
383
  | `throughline monitor --diag` | TTY/columns/env 診断ダンプ (描画バグ切り分け用) |
380
384
  | `throughline detail <時刻>` | あるターンの L2 本文と L3 ツール I/O を取得 (Claude が使う) |
package/README.md CHANGED
@@ -817,7 +817,7 @@ entry to the `tasks` array yourself:
817
817
 
818
818
  ## Commands
819
819
 
820
- **The current release is v0.10.5.** Throughline supports Claude Code, Codex,
820
+ **The current release is v0.10.6.** Throughline supports Claude Code, Codex,
821
821
  Grok, and Cursor as documented host adapters. The versioned, read-only
822
822
  `handoff-context` boundary opens only an existing database and leaves baton
823
823
  state, session ownership, and memory rows unchanged. Factory diagnostics,
@@ -830,6 +830,10 @@ under the same explicit-failure and local-only contracts.
830
830
  | `throughline install --project` | Register Claude hooks/slash commands in this repo only |
831
831
  | `throughline self-update [--json]` | Update the official npm package, verify that public PATH resolves to that new CLI/version, reapply product-owned integrations, migrate an existing database, and verify public diagnostics in one call |
832
832
  | `throughline uninstall` | Remove Throughline-managed Claude hooks/slash commands, only the Throughline-managed Codex hook, and the `$throughline` Codex skill |
833
+
834
+ Versions before v0.10.5 do not contain `self-update`. Upgrade those versions
835
+ once with `npm install --global throughline@latest`, then run
836
+ `throughline self-update`. Later updates use `throughline self-update` alone.
833
837
  | `throughline monitor [--all] [--session <id>]` | Run the multi-session token monitor |
834
838
  | `throughline monitor --diag` | Dump TTY/columns/env diagnostics (for debugging monitor render bugs) |
835
839
  | `throughline detail <time>` | Retrieve L2 body text and L3 tool I/O for a turn (see below) |
@@ -6,7 +6,7 @@
6
6
 
7
7
  ## 現行状態
8
8
 
9
- - release candidateのpackage版は `0.10.5`。tagとnpmの公開確認はpublish後に行う。
9
+ - release candidateのpackage版は `0.10.6`。tagとnpmの公開確認はpublish後に行う。
10
10
  - Claude Code、Codex、Grok、Cursorをfirst-class hostとして扱う。
11
11
  - 現行DB schemaはv9。schemaの正本は [src/db.mjs](../src/db.mjs) の
12
12
  `CURRENT_VERSION`、二相handoffの判断は
@@ -29,6 +29,10 @@ Throughline は次の入口を自分で所有し、dotagentsが無くても利
29
29
  | 復旧 | READMEのTroubleshootingと、診断が返す明示的な修復手順 |
30
30
  | 更新 | `throughline self-update`。公式package更新、更新先global rootと公開PATHが同じ新CLI・versionを指すことの確認、host配線の再適用、既存DB migration、公開diagnosticsの`ready`確認までを一回で行う |
31
31
  | 削除 | `throughline uninstall`。Throughline管理面だけを除去する |
32
+
33
+ v0.10.4以前からの初回更新だけは、その版に `self-update` が無いため
34
+ `npm install --global throughline@latest` の後に `throughline self-update` を実行する。
35
+ v0.10.5以降は `throughline self-update` だけを公開更新入口とする。
32
36
  | release判断 | この文書のrelease gateと `scripts/verify-release-commit.mjs` |
33
37
 
34
38
  dotagentsは工場への配線と統合結果を所有するが、ThroughlineのDB、schema、migration、
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "throughline",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "type": "module",
5
5
  "description": "Persistent memory hooks for Claude Code, Codex, Grok, and Cursor (/clear-safe context compression)",
6
6
  "keywords": [