skaile-cli 0.13.0 → 0.17.0

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/CHANGELOG.md +26 -0
  2. package/package.json +10 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.17.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`ff8f026`](https://github.com/skaile-ai/workspaces/commit/ff8f0262b142420bb2601225e99b059c8ab2edaf)]:
8
+ - @skaile/workspaces@0.17.0
9
+
10
+ ## 0.16.0
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`ef21eb6`](https://github.com/skaile-ai/workspaces/commit/ef21eb6dd08c75b2bee651bd5c96c9da79f9d21d), [`ef21eb6`](https://github.com/skaile-ai/workspaces/commit/ef21eb6dd08c75b2bee651bd5c96c9da79f9d21d)]:
15
+ - @skaile/workspaces@0.16.0
16
+
17
+ ## 0.15.1
18
+
19
+ ### Patch Changes
20
+
21
+ - [#34](https://github.com/skaile-ai/workspaces/pull/34) [`50cd056`](https://github.com/skaile-ai/workspaces/commit/50cd0562162554f76a19d9e2d15c413dc81a4db4) Thanks [@peteralbert](https://github.com/peteralbert)! - Add `skaile-cli` (an `npx`-able wrapper) and fix ESM dynamic-`require` failures that broke `skaile install <ref>`.
22
+
23
+ - **`skaile-cli`** — new thin wrapper around `@skaile/workspaces` that lets users run `npx skaile-cli install <publisher>/<name>@<version>` without globally installing anything. The shorter `skaile` name is currently blocked by npm's name-similarity policy (too close to `sails`); appeal is in flight and the wrapper will be republished under that name if granted.
24
+ - **`@skaile/workspaces`** — replace runtime `require(...)` calls in `library/src/local/db.ts`, `library/src/local/store-paths.ts`, `asset-manager/src/installer.ts`, `asset-manager/src/index.ts`, and `connectors/src/cli.ts` with static `import` declarations. The published bundle is ESM; under pure-ESM consumers (including `npx`) there is no `require` in scope, so esbuild's fallback shim threw `Dynamic require of "fs" is not supported` during install + a handful of other commands.
25
+
26
+ - Updated dependencies [[`bbf0cdd`](https://github.com/skaile-ai/workspaces/commit/bbf0cddf414c68852495c82488217e0c535bfd86), [`50cd056`](https://github.com/skaile-ai/workspaces/commit/50cd0562162554f76a19d9e2d15c413dc81a4db4)]:
27
+ - @skaile/workspaces@0.15.1
28
+
3
29
  ## 0.13.0
4
30
 
5
31
  Initial release. Thin `npx`-able wrapper that delegates to `@skaile/workspaces`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skaile-cli",
3
- "version": "0.13.0",
3
+ "version": "0.17.0",
4
4
  "description": "Run the Skaile CLI via `npx skaile-cli` — thin wrapper around @skaile/workspaces",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,8 +16,16 @@
16
16
  "engines": {
17
17
  "node": ">=22.5.0"
18
18
  },
19
+ "keywords": [
20
+ "skaile",
21
+ "cli",
22
+ "ai",
23
+ "agents",
24
+ "npx",
25
+ "asset-manager"
26
+ ],
19
27
  "dependencies": {
20
- "@skaile/workspaces": "0.13.0"
28
+ "@skaile/workspaces": "workspace:*"
21
29
  },
22
30
  "publishConfig": {
23
31
  "access": "public"