@asudbring/loki-profile-manager 0.1.12 → 0.1.14
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 +13 -0
- package/README.md +16 -2
- package/package.json +2 -2
- package/vendor/darwin-arm64/loki +0 -0
- package/vendor/darwin-x64/loki +0 -0
- package/vendor/linux-arm64/loki +0 -0
- package/vendor/linux-x64/loki +0 -0
- package/vendor/win32-arm64/loki.exe +0 -0
- package/vendor/win32-x64/loki.exe +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,19 @@ This project uses 0.x semver. Hyphenated tags are dogfood or prerelease mileston
|
|
|
8
8
|
|
|
9
9
|
- No unreleased changes.
|
|
10
10
|
|
|
11
|
+
## v0.1.14 — 2026-05-19
|
|
12
|
+
|
|
13
|
+
Feature release for Loki self-update support.
|
|
14
|
+
|
|
15
|
+
- Added `loki update` to install the latest `@asudbring/loki-profile-manager` npm build with `npm install -g @asudbring/loki-profile-manager@latest`.
|
|
16
|
+
- Added cached npm update notices for human CLI commands, with 24-hour local SQLite caching and `LOKI_NO_UPDATE_CHECK=1` opt-out.
|
|
17
|
+
|
|
18
|
+
## v0.1.13 — 2026-05-19
|
|
19
|
+
|
|
20
|
+
Patch release for Windows CI coverage on plugin import.
|
|
21
|
+
|
|
22
|
+
- Fixed the new plugin-import activation-plan regression test to compare managed Pi settings targets portably across Windows and Unix path formats.
|
|
23
|
+
|
|
11
24
|
## v0.1.12 — 2026-05-19
|
|
12
25
|
|
|
13
26
|
Feature release for plugin bundle import.
|
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@ 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.
|
|
8
|
+
- Current npm release: `v0.1.14`; latest full Windows app/manual dogfood validation: `v0.1.7`.
|
|
9
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.
|
|
10
|
-
- Current commands: `status`, `store status`, `store discover`, `store migrate`, `store use`, `store init`, `store unset`, `verify`, `switch`, `sync`, `tui`, `import-skill`, `import-plugin`, `secrets`, `doctor`, `snapshots list`, `snapshots show`, `snapshots restore`, `machine register`, `machine status`, `migrate repo`, `migrate local`, and `adopt`.
|
|
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.
|
|
13
13
|
|
|
@@ -39,6 +39,14 @@ loki --version
|
|
|
39
39
|
loki doctor
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
+
Update an npm install in place:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
loki update
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
`loki update` installs `@asudbring/loki-profile-manager@latest` with npm. Human CLI commands check npm at most once every 24 hours and print a stderr notice when a newer Loki version is available. Set `LOKI_NO_UPDATE_CHECK=1` to disable the startup check.
|
|
49
|
+
|
|
42
50
|
If Windows cannot find `loki` after npm install, open a new shell and ensure the npm global bin directory is on `PATH` (usually `%APPDATA%\npm`). Node/npm also require `C:\Program Files\nodejs` on `PATH`.
|
|
43
51
|
|
|
44
52
|
Release binary archives, script installers, source builds, and Docker validation are documented in [`docs/INSTALL.md`](docs/INSTALL.md).
|
|
@@ -91,6 +99,12 @@ loki switch work content-dev --capture-local --yes
|
|
|
91
99
|
|
|
92
100
|
## Quick command examples
|
|
93
101
|
|
|
102
|
+
Update Loki from the latest npm build:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
loki update
|
|
106
|
+
```
|
|
107
|
+
|
|
94
108
|
Show local status, active profile, and managed target count:
|
|
95
109
|
|
|
96
110
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asudbring/loki-profile-manager",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "Cross-platform installer wrapper for the Loki Profile Manager CLI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
@@ -25,6 +25,6 @@
|
|
|
25
25
|
"node": ">=18"
|
|
26
26
|
},
|
|
27
27
|
"lokiRelease": {
|
|
28
|
-
"version": "v0.1.
|
|
28
|
+
"version": "v0.1.14"
|
|
29
29
|
}
|
|
30
30
|
}
|
package/vendor/darwin-arm64/loki
CHANGED
|
Binary file
|
package/vendor/darwin-x64/loki
CHANGED
|
Binary file
|
package/vendor/linux-arm64/loki
CHANGED
|
Binary file
|
package/vendor/linux-x64/loki
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|