@stupify/cli 0.0.13 → 0.0.14

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/command.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { DEFAULT_MODEL_ID, MODEL_REGISTRY } from "./constants.js";
2
2
  const DEFAULT_SINCE = "2 weeks ago";
3
- const DEFAULT_MAX_CANDIDATES = 10;
3
+ const DEFAULT_MAX_CANDIDATES = 50;
4
4
  const DEFAULT_MAX_SEARCH_INPUT_TOKENS = 12_000;
5
5
  export function parseCommand(argv) {
6
6
  if (argv.length === 1 && argv[0] && isHelp(argv[0]))
@@ -1,4 +1,4 @@
1
- export declare const VERSION = "0.0.13";
1
+ export declare const VERSION = "0.0.14";
2
2
  import type { ModelConfig, ModelId } from "./types.ts";
3
3
  export declare const DEFAULT_MODEL_ID: ModelId;
4
4
  export declare const MODEL_REGISTRY: Record<ModelId, ModelConfig>;
package/dist/constants.js CHANGED
@@ -1,4 +1,4 @@
1
- export const VERSION = "0.0.13";
1
+ export const VERSION = "0.0.14";
2
2
  export const DEFAULT_MODEL_ID = "gemma-4-e2b";
3
3
  export const MODEL_REGISTRY = {
4
4
  "gemma-4-e2b": {
@@ -1,4 +1,4 @@
1
- const MAX_COUNTER_EXAMPLES_PER_CHECK = 4;
1
+ const MAX_COUNTER_EXAMPLES_PER_CHECK = 20;
2
2
  export function counterScoutTargets(changeSet, checks, maxTargets) {
3
3
  return counterScoutPlan(changeSet, checks, maxTargets).targets;
4
4
  }
package/dist/render.js CHANGED
@@ -61,7 +61,7 @@ Options:
61
61
  --commits <count> Search the net diff across the last N non-merge commits.
62
62
  --stdin Read a git diff from stdin.
63
63
  --debug-sem Print sem commands and stderr.
64
- --max-candidates <n> Max semantic search targets. Default: 10.
64
+ --max-candidates <n> Max semantic search targets. Default: 50.
65
65
  --max-search-input-tokens <n>
66
66
  Max search input tokens before skipping. Default: 12000.
67
67
  --checks <ids> Comma-separated pattern ids.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stupify/cli",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "Local-only diagnostic CLI for checking whether AI is making you dumber.",
5
5
  "private": false,
6
6
  "type": "module",
package/src/command.ts CHANGED
@@ -2,7 +2,7 @@ import { DEFAULT_MODEL_ID, MODEL_REGISTRY } from "./constants.ts";
2
2
  import type { Command, HookAction, ModelId } from "./types.ts";
3
3
 
4
4
  const DEFAULT_SINCE = "2 weeks ago";
5
- const DEFAULT_MAX_CANDIDATES = 10;
5
+ const DEFAULT_MAX_CANDIDATES = 50;
6
6
  const DEFAULT_MAX_SEARCH_INPUT_TOKENS = 12_000;
7
7
 
8
8
  type InputMode =
package/src/constants.ts CHANGED
@@ -1,4 +1,4 @@
1
- export const VERSION = "0.0.13";
1
+ export const VERSION = "0.0.14";
2
2
  import type { ModelConfig, ModelId } from "./types.ts";
3
3
 
4
4
  export const DEFAULT_MODEL_ID: ModelId = "gemma-4-e2b";
@@ -12,7 +12,7 @@ type SignalBucket = Readonly<{
12
12
  examples: readonly Signal[];
13
13
  }>;
14
14
 
15
- const MAX_COUNTER_EXAMPLES_PER_CHECK = 4;
15
+ const MAX_COUNTER_EXAMPLES_PER_CHECK = 20;
16
16
 
17
17
  export type CounterScoutPlan = Readonly<{
18
18
  buckets: readonly SignalBucket[];
package/src/render.ts CHANGED
@@ -67,7 +67,7 @@ Options:
67
67
  --commits <count> Search the net diff across the last N non-merge commits.
68
68
  --stdin Read a git diff from stdin.
69
69
  --debug-sem Print sem commands and stderr.
70
- --max-candidates <n> Max semantic search targets. Default: 10.
70
+ --max-candidates <n> Max semantic search targets. Default: 50.
71
71
  --max-search-input-tokens <n>
72
72
  Max search input tokens before skipping. Default: 12000.
73
73
  --checks <ids> Comma-separated pattern ids.