@asudbring/loki-profile-manager 0.1.21 → 0.1.23

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,6 +6,19 @@ This project uses 0.x semver. Hyphenated tags are dogfood or prerelease mileston
6
6
 
7
7
  ## Unreleased
8
8
 
9
+ ## v0.1.23 — 2026-06-17
10
+
11
+ Bugfix: import-skill now generates multi-tool deployment entries.
12
+
13
+ - **Fixed `import-skill` manifest generation**: `import-skill` previously only added a `SkillEntry` to the manifest `skills:` list. The activation planner only converts `files:` entries into deployable operations, so imported skills were never deployed during `switch`. Now `import-skill` generates 6 `FileEntry` items per skill (`.claude/skills/`, `.pi/agent/skills/`, `.agents/skills/`, `.copilot/skills/`, `.codex/skills/`, `.loki-skill-prompts/`) matching the pattern used by `migrate local`.
14
+ - **Idempotent file-entry upsert**: re-importing the same skill does not duplicate manifest entries. Entries are matched by ID and updated in place.
15
+
16
+ ## v0.1.22 — 2026-05-23
17
+
18
+ Bugfix: remove broken confirm gate from TUI switch.
19
+
20
+ - **Removed confirmation phrase screen from TUI switch execute**: the confirm screen required typing `SWITCH <profile> <buckets>` but the space key was never handled (bubbletea `tea.KeySpace` is not `tea.KeyRunes`), making confirmation impossible. Removed the gate entirely — pressing `x` after a successful dry-run now executes immediately. The fingerprint recheck already guards against drift.
21
+
9
22
  ## v0.1.21 — 2026-05-23
10
23
 
11
24
  Feature release: `loki doctor --resolve-blockers` for self-service switch blocker resolution.
package/README.md CHANGED
@@ -1,11 +1,15 @@
1
1
  # Loki Profile Manager
2
2
 
3
+ <p align="center">
4
+ <img src="docs/assets/loki.png" alt="Loki Profile Manager" width="100">
5
+ </p>
6
+
3
7
  Loki Profile Manager is a local Go CLI for managing profile-specific dotfiles, app settings, AI-tool skills, shell prompt state, and secret-rendered templates from a synced Loki store.
4
8
 
5
9
  ## Status
6
10
 
7
11
  - Repository visibility: public.
8
- - Current npm release: `v0.1.21`; latest full Windows app/manual dogfood validation: `v0.1.7`.
12
+ - Current npm release: `v0.1.23`; latest full Windows app/manual dogfood validation: `v0.1.7`.
9
13
  - 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/markdown import, plugin bundle import MVP, Infisical readiness/setup UX, and Bubble Tea TUI MVP.
10
14
  - 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
15
  - Future work: Azure Key Vault/other secret providers.
@@ -181,10 +185,13 @@ loki doctor
181
185
  loki doctor --json
182
186
  loki doctor --repair-managed-state
183
187
  loki doctor --repair-managed-state --write-safe-files
188
+ loki doctor --resolve-blockers
184
189
  ```
185
190
 
186
191
  `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
192
 
193
+ `loki doctor --resolve-blockers` interactively resolves switch-blocking capture changes (e.g. merge-mode local divergence). It detects diverged targets, lists available store layers, prompts for a layer choice, promotes local content into that layer's source, repairs managed state, and runs a verification dry-run. No source code access required.
194
+
188
195
  Inspect and restore local activation snapshots:
189
196
 
190
197
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asudbring/loki-profile-manager",
3
- "version": "0.1.21",
3
+ "version": "0.1.23",
4
4
  "description": "Cross-platform installer wrapper for the Loki Profile Manager CLI.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -29,6 +29,6 @@
29
29
  "node": ">=18"
30
30
  },
31
31
  "lokiRelease": {
32
- "version": "v0.1.21"
32
+ "version": "v0.1.23"
33
33
  }
34
34
  }
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file