@klhapp/skillmux 1.5.0 → 1.5.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.5.1](https://github.com/klhq/skillmux/compare/v1.5.0...v1.5.1) (2026-08-17)
9
+
10
+
11
+ ### Fixed
12
+
13
+ * **cli:** honor configured config path ([435298d](https://github.com/klhq/skillmux/commit/435298d1ec054c28d918d128bb4e3232f8d05a1f))
14
+
8
15
  ## [1.5.0](https://github.com/klhq/skillmux/compare/v1.4.1...v1.5.0) (2026-08-17)
9
16
 
10
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klhapp/skillmux",
3
- "version": "1.5.0",
3
+ "version": "1.5.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/adapters.ts CHANGED
@@ -2,7 +2,7 @@ import { createHash } from "node:crypto";
2
2
  import { join } from "node:path";
3
3
  import { applyCalibrationRun, computeCorpusFingerprint, getCalibrationRun, insertCalibrationRun, listCalibrationRuns, loadDecisionCasesFromFile, openCalibrateDb, runCalibration, summarizeDatasetProvenance, type CalibrationResult } from "./calibrate";
4
4
  import { createClients } from "./clients";
5
- import { DEFAULT_CONFIG_PATH, embeddingFingerprint, expandHome, loadConfig, rerankerFingerprint } from "./config";
5
+ import { embeddingFingerprint, expandHome, loadConfig, rerankerFingerprint, resolveConfigPath } from "./config";
6
6
  import { openIndex } from "./db";
7
7
  import { CliError } from "./output";
8
8
  import {
@@ -70,7 +70,7 @@ export class LocalAdapter implements TargetAdapter {
70
70
  private configPath: string;
71
71
 
72
72
  constructor(opts?: TargetAdapterOptions) {
73
- this.configPath = opts?.configPath ?? DEFAULT_CONFIG_PATH;
73
+ this.configPath = resolveConfigPath(opts?.configPath);
74
74
  }
75
75
 
76
76
  async getCapabilities(): Promise<Capabilities> {