entroly-wasm 1.0.14 → 1.0.16

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.
@@ -0,0 +1,24 @@
1
+ {
2
+ "_comment": "Shipped baseline scoring config applied by the engine on startup across pip / MCP / npm. Runtime self-improvement (PRISM online + task-profile feedback journal) adapts from here per session. Maintainers regenerate these values with `entroly autotune` and commit them so the improvement reaches all installed users on the next release. (Distinct from the gitignored, locally-mutated bench/tuning_config.json.)",
3
+ "weights": {
4
+ "recency": 0.30,
5
+ "frequency": 0.25,
6
+ "semantic_sim": 0.25,
7
+ "entropy": 0.20
8
+ },
9
+ "decay": {
10
+ "half_life_turns": 15,
11
+ "min_relevance_threshold": 0.05
12
+ },
13
+ "knapsack": {
14
+ "exploration_rate": 0.10
15
+ },
16
+ "dedup": {
17
+ "hamming_threshold": 3
18
+ },
19
+ "ios": {
20
+ "skeleton_info_factor": 0.70,
21
+ "reference_info_factor": 0.15,
22
+ "diversity_floor": 0.10
23
+ }
24
+ }
package/js/autotune.js CHANGED
@@ -312,6 +312,7 @@ function findConfigPath() {
312
312
  path.join(process.cwd(), 'tuning_config.json'),
313
313
  path.join(process.cwd(), 'bench', 'tuning_config.json'),
314
314
  path.join(__dirname, '..', '..', 'bench', 'tuning_config.json'),
315
+ path.join(__dirname, '..', 'data', 'tuning_defaults.json'), // packaged baseline (ships with the npm package)
315
316
  ]) { try { if (fs.existsSync(p)) return p; } catch {} }
316
317
  return null;
317
318
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "entroly-wasm",
3
- "version": "1.0.14",
3
+ "version": "1.0.16",
4
4
  "description": "Local proxy that cuts your Claude / OpenAI / Gemini bill 70%+. Drop-in for Cursor, Claude Code, Codex, Aider — 30 seconds, no code changes. Pure WebAssembly, no Python dependency.",
5
5
  "main": "index.js",
6
6
  "types": "pkg/entroly_wasm.d.ts",
@@ -11,6 +11,7 @@
11
11
  "LICENSE",
12
12
  "NOTICE",
13
13
  "index.js",
14
+ "data/tuning_defaults.json",
14
15
  "pkg/entroly_wasm_bg.wasm",
15
16
  "pkg/entroly_wasm.js",
16
17
  "pkg/entroly_wasm.d.ts",
Binary file