dsh-claude-move 0.2.1 → 0.2.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 CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project are documented here. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow [SemVer](https://semver.org/).
4
4
 
5
+ ## [0.2.2] - 2026-08-16
6
+
7
+ ### Fixed
8
+
9
+ - The wizard's managed-section markers now accept any path-shaped plan key (8.3 short names like `RUNNER~1`, spaces, and every other path character), so `AGENTS.md` sections keyed by source paths stay idempotent on every platform.
10
+ - The migration manifest store resolves `$DSH_HOME` lazily per operation instead of binding it at module import (isolated tests and temporary profiles no longer share the default home).
11
+ - Converted skills record the source digest as `digest`, so re-runs recognize them as unchanged.
12
+ - Path assertions in the test suite are platform-agnostic (`path.join`), so the full gate is green on Windows, macOS and Linux.
13
+
5
14
  ## [0.2.1] - 2026-08-16
6
15
 
7
16
  ### Added
@@ -12,12 +21,6 @@ All notable changes to this project are documented here. The format is based on
12
21
  - Approval gate: any run that would write asks `ctx.approval` first (`allowed-once` only; otherwise zero writes).
13
22
  - New config: `requireApproval` / `codexHome` / `opencodeDataHome` / `opencodeConfigHome` / `hermesHome` / `skillsDir` / `agentsMdPath` / `moveWorkspaceMode`.
14
23
 
15
- ### Fixed
16
-
17
- - The wizard's managed-section markers now accept path-shaped plan keys (Windows backslashes included), so `AGENTS.md` sections keyed by source paths stay idempotent.
18
- - The migration manifest store resolves `$DSH_HOME` lazily per operation instead of binding it at module import (isolated tests and temporary profiles no longer share the default home).
19
- - Converted skills record the source digest as `digest`, so re-runs recognize them as unchanged.
20
-
21
24
  ## [0.2.0] - 2026-08-15
22
25
 
23
26
  ### Added
@@ -46,7 +46,7 @@ export function parseSections(text) {
46
46
  const sections = new Map()
47
47
  const ordered = []
48
48
  for (let i = 0; i < lines.length; i++) {
49
- const m = lines[i].match(/^<!--\s*dsh-move:managed:start\s+([\w:./\\-]+)\s*-->$/)
49
+ const m = lines[i].match(/^<!--\s*dsh-move:managed:start\s+(\S+?)\s*-->$/)
50
50
  if (!m) continue
51
51
  const key = m[1]
52
52
  const startLine = i
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-claude-move",
3
- "description": "Copy Claude Code transcripts, memories, skills and CLAUDE.md into DeepSeek Harness as resumable sessions 鈥?one workspace per project, copy-only, seamlessly resumable",
4
- "version": "0.2.1",
3
+ "description": "Copy Claude Code transcripts, memories, skills and CLAUDE.md into DeepSeek Harness as resumable sessions 閳?one workspace per project, copy-only, seamlessly resumable",
4
+ "version": "0.2.2",
5
5
  "type": "module",
6
6
  "main": "./index.mjs",
7
7
  "exports": {