@claude-flow/cli 3.30.4 → 3.30.5
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"manifest": {
|
|
3
|
-
"version": "3.30.
|
|
3
|
+
"version": "3.30.5",
|
|
4
4
|
"files": {
|
|
5
5
|
"auto-memory-hook.mjs": "e3e1033b24704992ddef6b31c7fa9dd7fcd9e1af7935dd77ef73402b916b31e6",
|
|
6
6
|
"hook-handler.cjs": "f87ec28684bfc5fd0a54c46bd2a53a3fb037defe71d0ea4b8a5cb88a2cd87a3f",
|
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
"statusline.cjs": "7d7bdee732e1c75b863e409afb86ce0d712f4919245e990d806da6752015bffa"
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
-
"signature": "
|
|
11
|
+
"signature": "fdiRN4WE8J/2TGX42kRLYsbEvpTiynHEl/uh0b3FnemKLzqEfcBi7gRVbSTzoJLzUg1K4jM9uqYUH9jxexvuDg==",
|
|
12
12
|
"algorithm": "ed25519"
|
|
13
13
|
}
|
package/catalog-manifest.json
CHANGED
|
@@ -48,14 +48,14 @@ const MODEL_MAP = {
|
|
|
48
48
|
'opus-4.7': 'claude-opus-4-7',
|
|
49
49
|
inherit: DEFAULT_ANTHROPIC_MODEL,
|
|
50
50
|
};
|
|
51
|
-
// #2357 — the adaptive-thinking family (Fable 5, Opus 4.8, Opus 4.7)
|
|
52
|
-
// the sampling parameters (temperature/top_p/top_k); the Anthropic API
|
|
51
|
+
// #2357 — the adaptive-thinking family (Fable 5, Opus 4.8, Opus 4.7, Sonnet 5)
|
|
52
|
+
// removed the sampling parameters (temperature/top_p/top_k); the Anthropic API
|
|
53
53
|
// returns 400 "Extra inputs are not permitted" when any is present.
|
|
54
54
|
// Prefix-match so dated snapshots (e.g. claude-opus-4-8-YYYYMMDD) are
|
|
55
55
|
// covered. Applies only to the direct Anthropic path — the Ollama/OpenRouter
|
|
56
56
|
// OpenAI-compat paths accept temperature and are unchanged.
|
|
57
57
|
export function modelRejectsSamplingParams(model) {
|
|
58
|
-
return /^claude-(fable-5|opus-4-8|opus-4-7)/.test(model);
|
|
58
|
+
return /^claude-(fable-5|opus-4-8|opus-4-7|sonnet-5)/.test(model);
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
61
|
* Generic Anthropic Messages API call. No agent registry coupling — used
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claude-flow/cli",
|
|
3
|
-
"version": "3.30.
|
|
3
|
+
"version": "3.30.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Ruflo CLI - Enterprise AI agent orchestration with 60+ specialized agents, swarm coordination, MCP server, self-learning hooks, and vector memory for Claude Code",
|
|
6
6
|
"main": "dist/src/index.js",
|