@klhapp/skillmux 1.3.0 → 1.3.1

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
@@ -5,6 +5,13 @@ All notable changes to this project are documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.3.1](https://github.com/klhq/skillmux/compare/v1.3.0...v1.3.1) (2026-07-31)
9
+
10
+
11
+ ### Fixed
12
+
13
+ * **cli:** parse calibrate run flags correctly ([#97](https://github.com/klhq/skillmux/issues/97)) ([95d6b19](https://github.com/klhq/skillmux/commit/95d6b19272c34f7c8269cb354b7751f0fdd9ad75))
14
+
8
15
  ## [1.3.0](https://github.com/klhq/skillmux/compare/v1.2.0...v1.3.0) (2026-07-29)
9
16
 
10
17
 
package/README.md CHANGED
@@ -10,26 +10,33 @@
10
10
  </p>
11
11
 
12
12
  Skillmux manages [`SKILL.md`](https://agentskills.io) collections across AI
13
- coding clients. Keep one canonical vault, pin a small set into native skill
14
- directories, and retrieve the rest through MCP.
13
+ coding clients. Keep one vault source of truth, pin a small set into native
14
+ skill directories, and retrieve the rest through MCP. On one machine, the
15
+ source and checkout can be the same directory. In a shared deployment, each
16
+ machine that manages native skills and the server use their own checkout; Git
17
+ or your deployment process keeps those checkouts current.
15
18
 
16
19
  The same Skillmux CLI manages native skills and can serve local stdio MCP.
20
+ Most individual users need only the CLI. Add Docker when you need a shared or
21
+ always-on HTTP service.
22
+
17
23
  Choose a setup by the job:
18
24
 
19
25
  1. Need native skills or local MCP for one client? Install the **Skillmux CLI**.
20
26
  2. On Linux without Bun? Install the standalone Linux executable instead; it is
21
27
  the same CLI.
22
- 3. Need one shared HTTP MCP service? Deploy the **full Docker image**—the
28
+ 3. Need one shared HTTP MCP service? Deploy the **full Docker image**, the
23
29
  self-contained default with GTE-small.
24
30
  4. Already have remote embeddings, or intentionally want lexical-only
25
31
  retrieval? Use the **slim** image; see [Deployment](docs/deployment.md).
26
32
  5. Need native pins and shared retrieval? Run the CLI on the machines that own
27
- client directories and one shared server for routed retrieval.
33
+ client directories and one shared server for routed retrieval. MCP-only
34
+ clients connect over HTTP and do not need the CLI.
28
35
 
29
- A shared service focuses on routed retrieval; manage its mounted vault on the
30
- host with the CLI.
36
+ Manage the server's vault checkout outside the container. Use the CLI for
37
+ Skillmux operations and Git or your deployment process for replication.
31
38
 
32
- ## One vault, three ways to use it
39
+ ## One vault source of truth, three ways to use it
33
40
 
34
41
  <p align="center">
35
42
  <img src="docs/assets/architecture.svg" alt="Three ways to use Skillmux: manage native skills, add local MCP retrieval, or run a shared MCP service" width="100%">
@@ -51,7 +58,7 @@ skillmux --help
51
58
 
52
59
  Native target sync needs permission to create directory symlinks on Windows.
53
60
 
54
- On Linux, you can install a compiled AMD64 or ARM64 binary instead:
61
+ On Linux, you can install a standalone AMD64 or ARM64 executable instead:
55
62
 
56
63
  ```sh
57
64
  gh release download --repo klhq/skillmux --pattern 'skillmux-linux-*'
@@ -211,7 +218,7 @@ Skillmux preserves existing instruction files and unmanaged target content. Run
211
218
 
212
219
  ## Guarantees
213
220
 
214
- - **Controlled sources:** pins come from the canonical vault, while routed delivery follows the configured overlay order.
221
+ - **Controlled sources:** pins come from the configured vault checkout, while routed delivery follows the configured overlay order.
215
222
  - **Scoped writes:** management commands write only to documented config, vault, state, and adopted target paths.
216
223
  - **Managed ownership:** sync removes only entries recorded in the target's `.skillmux` marker.
217
224
  - **Current bytes:** MCP delivery hashes the file on disk and never serves a stale indexed body.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klhapp/skillmux",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Skill management and retrieval for AI agents: sync native skills across clients and route the long tail over MCP",
5
5
  "type": "module",
6
6
  "private": false,
package/src/cli.ts CHANGED
@@ -446,7 +446,7 @@ async function handleCalibrateCommand(
446
446
  if (!Number.isFinite(value)) throw new Error(`${flag} must be a number`);
447
447
  return value;
448
448
  };
449
- for (let i = 0; i < args.length; i++) {
449
+ for (let i = 1; i < args.length; i++) {
450
450
  const option = args[i];
451
451
  if (option === "--dataset") {
452
452
  datasetPath = args[++i];