@jaypie/mcp 0.7.18 → 0.7.20

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.
@@ -9,7 +9,7 @@ import { gt } from 'semver';
9
9
  /**
10
10
  * Docs Suite - Documentation services (skill, version, release_notes)
11
11
  */
12
- const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.18#db5c9ff1"
12
+ const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.20#3704c7bc"
13
13
  ;
14
14
  const __filename$1 = fileURLToPath(import.meta.url);
15
15
  const __dirname$1 = path.dirname(__filename$1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jaypie/mcp",
3
- "version": "0.7.18",
3
+ "version": "0.7.20",
4
4
  "description": "Jaypie MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 1.2.12
3
+ date: 2026-02-17
4
+ summary: Update @jaypie/llm peer dependency to ^1.2.9
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Update `@jaypie/llm` peer dependency to `^1.2.9`
@@ -0,0 +1,11 @@
1
+ ---
2
+ version: 1.2.9
3
+ date: 2026-02-17
4
+ summary: Add first-class temperature parameter to LlmOperateOptions
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Add `temperature` as a first-class option on `LlmOperateOptions` and all adapters (Anthropic, OpenAI, Gemini, OpenRouter)
10
+ - Explicit `temperature` takes precedence over `providerOptions.temperature` when both are set
11
+ - Gemini maps temperature into `config.temperature`; all other providers set it top-level
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 0.7.20
3
+ date: 2026-02-17
4
+ summary: Correct release notes for @jaypie/llm version recall
5
+ ---
6
+
7
+ ## Changes
8
+
9
+ - Rename llm release notes from 1.3.0 to 1.2.9 after version recall
package/skills/llm.md CHANGED
@@ -388,6 +388,7 @@ interface LlmOperateOptions {
388
388
  instructions?: string; // Additional instructions
389
389
  model?: string; // Model override
390
390
  system?: string; // System prompt
391
+ temperature?: number; // Sampling temperature (0-2)
391
392
  tools?: LlmTool[] | Toolkit; // Available tools
392
393
  turns?: boolean | number; // Max conversation turns
393
394
  user?: string; // User ID for logging