handoff-bridge 0.1.0 → 0.1.1

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/README.en.md CHANGED
@@ -52,7 +52,7 @@ If an I/O error or process interruption occurs after writing begins, automatic r
52
52
 
53
53
  ## Design
54
54
 
55
- See [Theory](docs/theory.en.md) for the design rationale and [SKILL.md](.agents/skills/handoff-bridge/SKILL.md) for the execution contract.
55
+ See [Theory](docs/theory.en.md) for the design rationale and [SKILL.md](skills/handoff-bridge/SKILL.md) for the execution contract.
56
56
 
57
57
  ## Development and publishing
58
58
 
package/README.md CHANGED
@@ -54,7 +54,7 @@ handoff-bridgeで次のセッションへの引き継ぎを作って。
54
54
 
55
55
  ## 設計
56
56
 
57
- 詳しい考え方は [理論的背景](docs/theory.md) を参照してください。skill の実行契約は [SKILL.md](.agents/skills/handoff-bridge/SKILL.md) にあります。
57
+ 詳しい考え方は [理論的背景](docs/theory.md) を参照してください。skill の実行契約は [SKILL.md](skills/handoff-bridge/SKILL.md) にあります。
58
58
 
59
59
  ## 開発と公開
60
60
 
package/docs/theory.en.md CHANGED
@@ -4,7 +4,7 @@ English | [日本語](theory.md)
4
4
 
5
5
  `handoff-bridge` is a small information-compression and validation mechanism for continuing coding-agent work across session boundaries.
6
6
 
7
- **You do not need this document to use it.** See the [README](../README.en.md) for installation and usage, and [SKILL.md](../.agents/skills/handoff-bridge/SKILL.md) for the execution rules.
7
+ **You do not need this document to use it.** See the [README](../README.en.md) for installation and usage, and [SKILL.md](../skills/handoff-bridge/SKILL.md) for the execution rules.
8
8
 
9
9
  ## The problem: meaning is lost at session boundaries
10
10
 
package/docs/theory.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  `handoff-bridge` は、コーディングエージェントのセッション間で作業を継続するための、小さな情報圧縮と検証の仕組みです。
6
6
 
7
- **この文書を読まなくても使えます。** 導入と利用方法は [README](../README.md)、実行上の規則は [SKILL.md](../.agents/skills/handoff-bridge/SKILL.md) にあります。
7
+ **この文書を読まなくても使えます。** 導入と利用方法は [README](../README.md)、実行上の規則は [SKILL.md](../skills/handoff-bridge/SKILL.md) にあります。
8
8
 
9
9
  ## 問題 — セッションの境界で作業の意味が失われる
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handoff-bridge",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Create compact, verifiable handoffs between coding-agent sessions.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "exports": {},
11
11
  "files": [
12
- ".agents/skills/handoff-bridge",
12
+ "skills/handoff-bridge",
13
13
  "bin",
14
14
  "src",
15
15
  "docs",
@@ -8,7 +8,7 @@ import {
8
8
  } from './distribution-contract.mjs';
9
9
 
10
10
  const DEFAULT_SOURCE = fileURLToPath(
11
- new URL('../.agents/skills/handoff-bridge/', import.meta.url),
11
+ new URL('../skills/handoff-bridge/', import.meta.url),
12
12
  );
13
13
 
14
14
  function fail(code, message, details = {}) {