@klhapp/skillmux 1.3.2 → 1.3.3

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.3](https://github.com/klhq/skillmux/compare/v1.3.2...v1.3.3) (2026-08-02)
9
+
10
+
11
+ ### Fixed
12
+
13
+ * **server:** remove maxLength from resolve_skill schema to avoid GBNF overflow ([2621e73](https://github.com/klhq/skillmux/commit/2621e73bdb671d03ba8f458b7c3ceb223e8859c4))
14
+
8
15
  ## [1.3.2](https://github.com/klhq/skillmux/compare/v1.3.1...v1.3.2) (2026-07-31)
9
16
 
10
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@klhapp/skillmux",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
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/server.ts CHANGED
@@ -115,7 +115,7 @@ export async function startServer(opts?: {
115
115
  "Route a natural-language task description to the most relevant skill in the vault. " +
116
116
  "Returns outcome matched (skill delivered inline), ambiguous (shortlist — pick one, then call fetch_skill), " +
117
117
  "or no_match (proceed under your normal workflow).",
118
- inputSchema: { query: z.string().min(1).max(8192) },
118
+ inputSchema: { query: z.string().min(1) },
119
119
  },
120
120
  async ({ query }) => {
121
121
  const startTime = performance.now();