@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 +1 -1
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/counter-scout.js +1 -1
- package/dist/render.js +1 -1
- package/package.json +1 -1
- package/src/command.ts +1 -1
- package/src/constants.ts +1 -1
- package/src/counter-scout.ts +1 -1
- package/src/render.ts +1 -1
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 =
|
|
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]))
|
package/dist/constants.d.ts
CHANGED
package/dist/constants.js
CHANGED
package/dist/counter-scout.js
CHANGED
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:
|
|
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
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 =
|
|
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
package/src/counter-scout.ts
CHANGED
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:
|
|
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.
|