pullfrog 0.1.48 → 0.1.49

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/dist/cli.mjs CHANGED
@@ -101745,7 +101745,7 @@ import { join as join5 } from "node:path";
101745
101745
  import { performance as performance5 } from "node:perf_hooks";
101746
101746
 
101747
101747
  // effort.ts
101748
- var DEFAULT_EFFORT_POSITION = 0.75;
101748
+ var DEFAULT_EFFORT_POSITION = 0.5;
101749
101749
  var EFFORT_ALIASES = {
101750
101750
  low: 0,
101751
101751
  medium: 0.25,
@@ -103177,7 +103177,7 @@ var import_semver = __toESM(require_semver2(), 1);
103177
103177
  // package.json
103178
103178
  var package_default = {
103179
103179
  name: "pullfrog",
103180
- version: "0.1.48",
103180
+ version: "0.1.49",
103181
103181
  type: "module",
103182
103182
  bin: {
103183
103183
  pullfrog: "dist/cli.mjs",
@@ -169650,7 +169650,7 @@ async function runCli4(input) {
169650
169650
  }
169651
169651
 
169652
169652
  // cli.ts
169653
- var VERSION10 = "0.1.48";
169653
+ var VERSION10 = "0.1.49";
169654
169654
  var bin = basename2(process.argv[1] || "");
169655
169655
  var PROG = bin === "pf" || bin === "pullfrog" ? bin : "pullfrog";
169656
169656
  var rawArgs = process.argv.slice(2);
package/dist/effort.d.ts CHANGED
@@ -22,10 +22,14 @@
22
22
  /** a point on the effort axis. 0 = the model's cheapest rung, 1 = its most expensive. */
23
23
  export type EffortPosition = number;
24
24
  /**
25
- * where a repo sits when it has never configured effort. high on the axis
26
- * without being the ceiling: `xhigh` on the Claude/GPT flagships, `medium` on a
27
- * three-rung ladder, `high` on DeepSeek's twowhich is what every DeepSeek run
28
- * got before this setting existed.
25
+ * where a repo sits when it has never configured effort.
26
+ *
27
+ * 0.5 is not a round number picked for feel it is EXACTLY the position `high`
28
+ * occupies on a five-rung ladder (`2/4`), so the default and a user clicking
29
+ * **High** in the console store the same value. It lands on `high` for the
30
+ * Claude and GPT flagships, Kimi K3 and DeepSeek, and `medium` on a three-rung
31
+ * ladder. That keeps the flagships at the level every model already effectively
32
+ * ran at before this setting existed.
29
33
  */
30
34
  export declare const DEFAULT_EFFORT_POSITION: EffortPosition;
31
35
  /**
package/dist/index.js CHANGED
@@ -99810,7 +99810,7 @@ import { join as join4 } from "node:path";
99810
99810
  import { performance as performance5 } from "node:perf_hooks";
99811
99811
 
99812
99812
  // effort.ts
99813
- var DEFAULT_EFFORT_POSITION = 0.75;
99813
+ var DEFAULT_EFFORT_POSITION = 0.5;
99814
99814
  var EFFORT_ALIASES = {
99815
99815
  low: 0,
99816
99816
  medium: 0.25,
@@ -101242,7 +101242,7 @@ var import_semver = __toESM(require_semver2(), 1);
101242
101242
  // package.json
101243
101243
  var package_default = {
101244
101244
  name: "pullfrog",
101245
- version: "0.1.48",
101245
+ version: "0.1.49",
101246
101246
  type: "module",
101247
101247
  bin: {
101248
101248
  pullfrog: "dist/cli.mjs",
package/dist/internal.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { createRequire as __createRequire } from 'module'; import { fileURLToPath as __fileURLToPath } from 'url'; import { dirname as __dirnameFn } from 'path'; const require = __createRequire(import.meta.url); const __filename = __fileURLToPath(import.meta.url); const __dirname = __dirnameFn(__filename);
2
2
 
3
3
  // effort.ts
4
- var DEFAULT_EFFORT_POSITION = 0.75;
4
+ var DEFAULT_EFFORT_POSITION = 0.5;
5
5
  var EFFORT_ALIASES = {
6
6
  low: 0,
7
7
  medium: 0.25,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pullfrog",
3
- "version": "0.1.48",
3
+ "version": "0.1.49",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "pullfrog": "dist/cli.mjs",