@asudbring/loki-profile-manager 0.1.14 → 0.1.16

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
@@ -6,7 +6,17 @@ This project uses 0.x semver. Hyphenated tags are dogfood or prerelease mileston
6
6
 
7
7
  ## Unreleased
8
8
 
9
- - No unreleased changes.
9
+ ## v0.1.16 2026-05-20
10
+
11
+ Documentation release for the npm package README.
12
+
13
+ - Refreshed the GitHub and npm README with the current npm release number and managed-state doctor repair usage.
14
+
15
+ ## v0.1.15 — 2026-05-20
16
+
17
+ Patch release for safe managed-target state repair.
18
+
19
+ - Added `loki doctor --repair-managed-state [--write-safe-files]` to detect and repair safe stale managed-target SQLite state after manifest mode/hash changes.
10
20
 
11
21
  ## v0.1.14 — 2026-05-19
12
22
 
package/README.md CHANGED
@@ -5,8 +5,8 @@ Loki Profile Manager is a local Go CLI for managing profile-specific dotfiles, a
5
5
  ## Status
6
6
 
7
7
  - Repository visibility: public.
8
- - Current npm release: `v0.1.14`; latest full Windows app/manual dogfood validation: `v0.1.7`.
9
- - Current implementation: profile store setup, machine registration, migration/adoption bootstrap, guarded profile switching, pre-switch local-change capture, obsolete managed-target cleanup, local active-profile marker, Windows redirected Documents support, snapshot inspection/restore, sync conflict cleanup, skill folder/zip import MVP, plugin bundle import MVP, Infisical readiness/setup UX, and Bubble Tea TUI MVP.
8
+ - Current npm release: `v0.1.16`; latest full Windows app/manual dogfood validation: `v0.1.7`.
9
+ - Current implementation: profile store setup, machine registration, migration/adoption bootstrap, guarded profile switching, pre-switch local-change capture, obsolete managed-target cleanup, safe stale managed-state repair, local active-profile marker, Windows redirected Documents support, snapshot inspection/restore, sync conflict cleanup, skill folder/zip import MVP, plugin bundle import MVP, Infisical readiness/setup UX, and Bubble Tea TUI MVP.
10
10
  - Current commands: `status`, `store status`, `store discover`, `store migrate`, `store use`, `store init`, `store unset`, `verify`, `switch`, `sync`, `tui`, `update`, `import-skill`, `import-plugin`, `secrets`, `doctor`, `snapshots list`, `snapshots show`, `snapshots restore`, `machine register`, `machine status`, `migrate repo`, `migrate local`, and `adopt`.
11
11
  - Not implemented yet: `import-skill` markdown conversion and Azure Key Vault/other secret providers.
12
12
  - License: MIT.
@@ -174,6 +174,17 @@ loki secrets check OPENAI_API_KEY
174
174
 
175
175
  `loki secrets configure infisical` prompts for Infisical Universal Auth details, validates them before writing, and writes only local `~/.config/infisical/.env` config. If validation fails, the existing env file stays unchanged. Run `loki secrets status` afterward to verify readiness. `loki secrets --infisical` remains noninteractive for automation from existing safe local inputs. Output lists key names/readiness only, never values.
176
176
 
177
+ Run local diagnostics and safely repair stale managed-target SQLite state:
178
+
179
+ ```bash
180
+ loki doctor
181
+ loki doctor --json
182
+ loki doctor --repair-managed-state
183
+ loki doctor --repair-managed-state --write-safe-files
184
+ ```
185
+
186
+ `loki doctor --repair-managed-state` refreshes stale local managed-target records only when the local target and current manifest source are equivalent. `--write-safe-files` additionally canonicalizes safe local files before updating state. Semantic repair is implemented for JSON; other files must be byte-identical unless Loki can regenerate the canonical merge output safely.
187
+
177
188
  Inspect and restore local activation snapshots:
178
189
 
179
190
  ```bash
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@asudbring/loki-profile-manager",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Cross-platform installer wrapper for the Loki Profile Manager CLI.",
5
5
  "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/asudbring/loki-profile-manager"
9
+ },
6
10
  "bin": {
7
11
  "loki": "bin/loki.js"
8
12
  },
@@ -25,6 +29,6 @@
25
29
  "node": ">=18"
26
30
  },
27
31
  "lokiRelease": {
28
- "version": "v0.1.14"
32
+ "version": "v0.1.16"
29
33
  }
30
34
  }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file