@wordbricks/velen 0.2.16 → 0.2.17

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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -13,7 +13,8 @@ Runtime config:
13
13
  - On Unix-like systems, the user config file is `${XDG_CONFIG_HOME:-~/.config}/velen/config.toml`.
14
14
  - On Windows, the user config file is `%APPDATA%\\velen\\config.toml`.
15
15
  - Named profiles use `${XDG_CONFIG_HOME:-~/.config}/velen/profiles/<profile>/config.toml` on Unix-like systems and `%APPDATA%\\velen\\profiles\\<profile>\\config.toml` on Windows.
16
- - Select a profile with `--profile <profile>` or `VELEN_PROFILE`; `--profile` takes precedence. The default profile keeps using the legacy flat paths above.
16
+ - Select a profile with `--profile <profile>`, `VELEN_PROFILE`, or the persisted default from `velen profile switch <profile>`; `--profile` takes precedence over `VELEN_PROFILE`, which takes precedence over the persisted default. The default profile keeps using the legacy flat paths above.
17
+ - List local profiles with `velen profile list`.
17
18
  - The current persisted keys are `active_org` and `request_timeout_sec`.
18
19
  - Runtime config is resolved in this order: built-in defaults -> user config file -> internal typed runtime overrides.
19
20
  - `velen org use <org>` persists `active_org`. Passing `--org <org>` for a command takes precedence over the stored `active_org` value for that invocation.
@@ -39,6 +40,8 @@ Install:
39
40
  - `bun install -g @wordbricks/velen`
40
41
  - `bunx @wordbricks/velen --help`
41
42
  - `npx @wordbricks/velen --help`
43
+ - `velen update` updates the globally installed Velen binary and Velen CLI agent skill.
44
+ - `velen skill add` installs or updates the Velen CLI agent skill globally.
42
45
  - Linux npm installs ship musl-linked binaries so the CLI runs on both glibc and musl-based distributions, including Alpine.
43
46
  - Windows npm installs ship both x64 and arm64 platform binaries.
44
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordbricks/velen",
3
- "version": "0.2.16",
3
+ "version": "0.2.17",
4
4
  "description": "Velen CLI",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -23,6 +23,6 @@
23
23
  "node": ">=18"
24
24
  },
25
25
  "optionalDependencies": {
26
- "velen-darwin-arm64": "npm:@wordbricks/velen@0.2.16-darwin-arm64"
26
+ "velen-darwin-arm64": "npm:@wordbricks/velen@0.2.17-darwin-arm64"
27
27
  }
28
28
  }