hacklab 0.19.0 → 0.20.0
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/README.md +33 -25
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/commands/config.d.ts.map +1 -1
- package/dist/commands/config.js +18 -19
- package/dist/commands/config.js.map +1 -1
- package/dist/commands/scan.d.ts.map +1 -1
- package/dist/commands/scan.js +5 -2
- package/dist/commands/scan.js.map +1 -1
- package/dist/commands/setup.d.ts.map +1 -1
- package/dist/commands/setup.js +32 -26
- package/dist/commands/setup.js.map +1 -1
- package/dist/commands/sync.d.ts.map +1 -1
- package/dist/commands/sync.js +32 -17
- package/dist/commands/sync.js.map +1 -1
- package/dist/config.d.ts +8 -2
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +1 -1
- package/dist/config.js.map +1 -1
- package/dist/prompt-consent.d.ts +37 -23
- package/dist/prompt-consent.d.ts.map +1 -1
- package/dist/prompt-consent.js +75 -58
- package/dist/prompt-consent.js.map +1 -1
- package/dist/prompt-stats.d.ts +116 -7
- package/dist/prompt-stats.d.ts.map +1 -1
- package/dist/prompt-stats.js +205 -25
- package/dist/prompt-stats.js.map +1 -1
- package/dist/scanners/incremental.d.ts +114 -17
- package/dist/scanners/incremental.d.ts.map +1 -1
- package/dist/scanners/incremental.js +235 -74
- package/dist/scanners/incremental.js.map +1 -1
- package/dist/scanners/index.d.ts +7 -3
- package/dist/scanners/index.d.ts.map +1 -1
- package/dist/scanners/index.js +8 -40
- package/dist/scanners/index.js.map +1 -1
- package/dist/scanners/util.d.ts +32 -15
- package/dist/scanners/util.d.ts.map +1 -1
- package/dist/scanners/util.js +10 -34
- package/dist/scanners/util.js.map +1 -1
- package/dist/sync.d.ts +3 -3
- package/dist/sync.d.ts.map +1 -1
- package/dist/sync.js +27 -14
- package/dist/sync.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,10 @@
|
|
|
1
|
-
import { type
|
|
2
|
-
|
|
1
|
+
import { type PromptActivityAggregate, type PromptLine } from '../prompt-stats.js';
|
|
2
|
+
import { type AggregateScan, type PromptActivity, type ScanResult, type TokensMessages, type Tool, type UsageLine } from './index.js';
|
|
3
|
+
export declare const SCAN_STATE_VERSION = 2;
|
|
4
|
+
/** How long a session is kept in the state after its last prompt. */
|
|
5
|
+
export declare const PROMPT_SESSION_RETENTION_DAYS = 45;
|
|
6
|
+
/** How long a per-day prompt tally is kept. Matches the wire's date cap. */
|
|
7
|
+
export declare const PROMPT_DAILY_RETENTION_DAYS = 400;
|
|
3
8
|
/** Where a file's tail-follow stands: what we saw, and how far we read. */
|
|
4
9
|
export type FileState = {
|
|
5
10
|
size: number;
|
|
@@ -22,11 +27,33 @@ export type HarnessState = {
|
|
|
22
27
|
walMtimeMs?: number;
|
|
23
28
|
/** "date|model" -> tokens/messages */
|
|
24
29
|
daily: Record<string, TokensMessages>;
|
|
25
|
-
/** "date|hour|model" -> tokens/messages */
|
|
26
|
-
hourly: Record<string, TokensMessages>;
|
|
27
30
|
/** model -> cumulative tokens */
|
|
28
31
|
models: Record<string, number>;
|
|
29
32
|
};
|
|
33
|
+
/**
|
|
34
|
+
* The prompt half of the state: the same tail-read that counts tokens also
|
|
35
|
+
* counts the user's own prompts, so `promptActivity` can ride out on the tick
|
|
36
|
+
* instead of waiting a day.
|
|
37
|
+
*
|
|
38
|
+
* Unlike the token rows, prompt rows are upserted with GREATEST semantics per
|
|
39
|
+
* (machine, session) and (machine, date), so a resend is free and a date never
|
|
40
|
+
* has to go out "complete". That's why the dirty sets here are per-session and
|
|
41
|
+
* per-date and can be drained a capped batch at a time.
|
|
42
|
+
*/
|
|
43
|
+
export type PromptState = PromptActivityAggregate & {
|
|
44
|
+
/** Session ids changed since the last accepted upload. */
|
|
45
|
+
dirtySessions: string[];
|
|
46
|
+
/** Dates whose tally changed since the last accepted upload. */
|
|
47
|
+
dirtyDates: string[];
|
|
48
|
+
/**
|
|
49
|
+
* Exactly what the last `tickPayload` put on the wire. `markUploaded` clears
|
|
50
|
+
* this and nothing else, so anything a cap held back stays dirty.
|
|
51
|
+
*/
|
|
52
|
+
sent?: {
|
|
53
|
+
sessions: string[];
|
|
54
|
+
dates: string[];
|
|
55
|
+
};
|
|
56
|
+
};
|
|
30
57
|
export type ScanState = {
|
|
31
58
|
version: number;
|
|
32
59
|
harnesses: Record<string, HarnessState>;
|
|
@@ -38,6 +65,8 @@ export type ScanState = {
|
|
|
38
65
|
* rows for it. Cleared only on a 200, so a failed POST retries next tick.
|
|
39
66
|
*/
|
|
40
67
|
dirty: string[];
|
|
68
|
+
/** Prompt sessions and per-day counts, plus what's outstanding. */
|
|
69
|
+
prompts: PromptState;
|
|
41
70
|
/** Cumulative totals as of the last accepted upload. */
|
|
42
71
|
uploaded: {
|
|
43
72
|
toolTotals: Record<string, number>;
|
|
@@ -51,6 +80,7 @@ export type ScanState = {
|
|
|
51
80
|
/** Lives next to the session file, so it honors HACKLAB_SESSION_PATH. */
|
|
52
81
|
export declare function scanStatePath(): string;
|
|
53
82
|
export declare function emptyHarness(): HarnessState;
|
|
83
|
+
export declare function emptyPromptState(): PromptState;
|
|
54
84
|
export declare function emptyState(): ScanState;
|
|
55
85
|
/**
|
|
56
86
|
* The saved state, or null when there isn't a usable one — missing, corrupt, or
|
|
@@ -58,12 +88,11 @@ export declare function emptyState(): ScanState;
|
|
|
58
88
|
* callers must treat that rebuild as a baseline, not as new tokens.
|
|
59
89
|
*/
|
|
60
90
|
export declare function loadScanState(): Promise<ScanState | null>;
|
|
61
|
-
/** Persist the state, pruning
|
|
62
|
-
*
|
|
91
|
+
/** Persist the state, pruning prompt rows that aged out of their retention
|
|
92
|
+
* window (they'd otherwise accumulate forever). Best-effort. */
|
|
63
93
|
export declare function saveScanState(state: ScanState): Promise<void>;
|
|
64
94
|
type Aggregates = {
|
|
65
95
|
daily: Record<string, TokensMessages>;
|
|
66
|
-
hourly: Record<string, TokensMessages>;
|
|
67
96
|
models: Record<string, number>;
|
|
68
97
|
};
|
|
69
98
|
/** A full scanner's result as the maps the state stores. */
|
|
@@ -81,6 +110,12 @@ export type JsonlSource = {
|
|
|
81
110
|
tool: Tool;
|
|
82
111
|
files: () => Promise<string[]>;
|
|
83
112
|
parse: (line: string) => UsageLine | null;
|
|
113
|
+
/**
|
|
114
|
+
* Claude Code only: the same line read as prompt activity. Set here rather
|
|
115
|
+
* than branching on `tool` so the tail-read stays one pass and a test can
|
|
116
|
+
* point a prompt-bearing harness at a tmp dir.
|
|
117
|
+
*/
|
|
118
|
+
parsePrompt?: (line: string) => PromptLine | null;
|
|
84
119
|
};
|
|
85
120
|
export type CodexSource = {
|
|
86
121
|
files: () => Promise<string[]>;
|
|
@@ -106,10 +141,15 @@ export type TickOutcome = {
|
|
|
106
141
|
};
|
|
107
142
|
/**
|
|
108
143
|
* One incremental pass over every harness. `prev` is the saved state, or null
|
|
109
|
-
* for a cold start — in which case this reads everything and marks
|
|
110
|
-
* dirty: those tokens are already on the server (the daily job put them
|
|
111
|
-
* and re-uploading every date would only invite the reconcile to prune
|
|
112
|
-
* this scan can't see (Cursor's, above all).
|
|
144
|
+
* for a cold start — in which case this reads everything and marks no *token*
|
|
145
|
+
* date dirty: those tokens are already on the server (the daily job put them
|
|
146
|
+
* there), and re-uploading every date would only invite the reconcile to prune
|
|
147
|
+
* rows this scan can't see (Cursor's, above all).
|
|
148
|
+
*
|
|
149
|
+
* Prompt rows go the other way on a cold start: everything found is marked
|
|
150
|
+
* dirty. They're idempotent GREATEST upserts, so a resend costs nothing, and a
|
|
151
|
+
* cold start (fresh install, or a state file this version can't read) is
|
|
152
|
+
* exactly the case where we have no evidence any of it ever reached the server.
|
|
113
153
|
*/
|
|
114
154
|
export declare function runTick(prev: ScanState | null, sources?: TickSources): Promise<TickOutcome>;
|
|
115
155
|
/** Cumulative per-tool and per-model totals for this machine. */
|
|
@@ -118,10 +158,19 @@ export declare function cumulativeTotals(state: ScanState): {
|
|
|
118
158
|
modelTotals: Record<string, number>;
|
|
119
159
|
};
|
|
120
160
|
export declare function sameTotals(a: Record<string, number>, b: Record<string, number>): boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Is there prompt activity waiting to go out?
|
|
163
|
+
*
|
|
164
|
+
* A dirty id whose row is gone (pruned between the mark and the send) doesn't
|
|
165
|
+
* count: it would have the tick POST an empty block every minute forever, since
|
|
166
|
+
* there'd be nothing for `markUploaded` to clear.
|
|
167
|
+
*/
|
|
168
|
+
export declare function hasPromptActivity(state: ScanState): boolean;
|
|
121
169
|
/**
|
|
122
170
|
* What a tick uploads: cumulative tool/model totals (the server diffs those
|
|
123
|
-
* against its own per-machine snapshot) plus the daily
|
|
124
|
-
*
|
|
171
|
+
* against its own per-machine snapshot) plus the daily rows for the dirty dates
|
|
172
|
+
* only, and — under the `stats` or `full` tier — the outstanding prompt
|
|
173
|
+
* activity.
|
|
125
174
|
*
|
|
126
175
|
* Every harness's rows go out for a dirty date, including Cursor's — which the
|
|
127
176
|
* tick never scans, and carries over from the last full scan instead. The
|
|
@@ -129,16 +178,64 @@ export declare function sameTotals(a: Record<string, number>, b: Record<string,
|
|
|
129
178
|
* payload didn't mention, so a date has to be reported complete or the harnesses
|
|
130
179
|
* left out of it lose that day.
|
|
131
180
|
*/
|
|
132
|
-
export declare function tickPayload(state: ScanState
|
|
133
|
-
|
|
181
|
+
export declare function tickPayload(state: ScanState, opts?: {
|
|
182
|
+
promptActivity?: boolean;
|
|
183
|
+
}): AggregateScan;
|
|
184
|
+
/** Called on a 200: whatever that payload carried is on the server now. */
|
|
134
185
|
export declare function markUploaded(state: ScanState): void;
|
|
186
|
+
/**
|
|
187
|
+
* What a full scan knows about prompts, and may therefore rewrite.
|
|
188
|
+
*
|
|
189
|
+
* The three cases are genuinely different, and collapsing any two of them
|
|
190
|
+
* loses data: a command that never looked at prompts must not be read as a
|
|
191
|
+
* command that found none.
|
|
192
|
+
*/
|
|
193
|
+
export type StagedPrompts =
|
|
194
|
+
/** A prompt scan ran — re-base the prompt state on its aggregate. */
|
|
195
|
+
{
|
|
196
|
+
scanned: PromptActivityAggregate;
|
|
197
|
+
}
|
|
198
|
+
/** The user is at the `none` tier — drop the prompt state entirely. */
|
|
199
|
+
| {
|
|
200
|
+
scanned: null;
|
|
201
|
+
}
|
|
202
|
+
/** This command never reads prompts (`hacklab scan`) — leave them alone. */
|
|
203
|
+
| 'untouched';
|
|
204
|
+
/**
|
|
205
|
+
* A full scan, re-based and ready to upload: the prompt rows this upload should
|
|
206
|
+
* carry, and the `commit` that records the whole thing as delivered.
|
|
207
|
+
*/
|
|
208
|
+
export type StagedFullScan = {
|
|
209
|
+
/**
|
|
210
|
+
* Outstanding prompt activity to put on this upload, or undefined when there
|
|
211
|
+
* is none (or the user is at the `none` tier).
|
|
212
|
+
*/
|
|
213
|
+
promptActivity?: PromptActivity;
|
|
214
|
+
/**
|
|
215
|
+
* Call once the server took the payload. Persists the re-based state, clears
|
|
216
|
+
* the prompt rows this upload claimed, and leaves anything a cap held back
|
|
217
|
+
* dirty for the next run. Best-effort and never throws.
|
|
218
|
+
*/
|
|
219
|
+
commit: () => Promise<void>;
|
|
220
|
+
};
|
|
135
221
|
/**
|
|
136
222
|
* Rebuild the whole state from a full scan's results — the self-healing half of
|
|
137
223
|
* the design. Whatever the tick's tail-follow got wrong (a rotated log, a
|
|
138
224
|
* mid-file model switch, a Codex date guessed from an mtime) is corrected here,
|
|
139
225
|
* so incremental drift can never outlive a day. Best-effort: a state we failed
|
|
140
|
-
* to rebuild costs a tick, never the sync that
|
|
226
|
+
* to rebuild costs a tick, never the sync that called us.
|
|
227
|
+
*
|
|
228
|
+
* Staged rather than persisted outright, because the full-scan paths carry
|
|
229
|
+
* prompt activity too — a machine with no daemon has no tick to drain it. The
|
|
230
|
+
* rebuild diffs the scan's aggregate against what was already sent, claims the
|
|
231
|
+
* difference for this upload, and only `commit` (on a 200) clears it. A failed
|
|
232
|
+
* POST therefore leaves every row dirty for the next run, which the server's
|
|
233
|
+
* GREATEST upserts make free to resend.
|
|
234
|
+
*
|
|
235
|
+
* `prompts` says whether this caller has any authority over the prompt state —
|
|
236
|
+
* see `StagedPrompts`. Only a caller that actually resolved the consent tier
|
|
237
|
+
* gets to rewrite it, and only such a caller claims prompt rows for the upload.
|
|
141
238
|
*/
|
|
142
|
-
export declare function
|
|
239
|
+
export declare function stageFullScan(results: ScanResult[], prompts?: StagedPrompts, sources?: TickSources): Promise<StagedFullScan>;
|
|
143
240
|
export {};
|
|
144
241
|
//# sourceMappingURL=incremental.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"incremental.d.ts","sourceRoot":"","sources":["../../src/scanners/incremental.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"incremental.d.ts","sourceRoot":"","sources":["../../src/scanners/incremental.ts"],"names":[],"mappings":"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"}
|