@wenathlan/extension 1.1.44 → 1.1.46
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 +6 -4
- package/dist/cdpbus.d.ts +104 -0
- package/dist/cdpbus.d.ts.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +937 -6
- package/dist/index.js.map +4 -4
- package/dist/memory.d.ts +75 -1
- package/dist/memory.d.ts.map +1 -1
- package/dist/policy.d.ts +39 -1
- package/dist/policy.d.ts.map +1 -1
- package/dist/protocol.d.ts +63 -2
- package/dist/protocol.d.ts.map +1 -1
- package/dist/runtimeline.d.ts +122 -0
- package/dist/runtimeline.d.ts.map +1 -0
- package/dist/types.d.ts +271 -3
- package/dist/types.d.ts.map +1 -1
- package/dist/version.d.ts +1 -1
- package/extension/dist/background.js +1252 -9
- package/extension/dist/background.js.map +4 -4
- package/extension/dist/manifest.json +1 -1
- package/extension/dist/pagebridge.js +439 -7
- package/extension/dist/pagebridge.js.map +4 -4
- package/extension/dist/popup.html +1 -1
- package/extension/dist/popup.js +18 -3
- package/extension/dist/popup.js.map +2 -2
- package/extension/dist/sidepanel.html +1 -1
- package/extension/dist/sidepanel.js +281 -3
- package/extension/dist/sidepanel.js.map +2 -2
- package/extension/dist/style.css +6 -0
- package/extension/manifest.json +1 -1
- package/package.json +1 -1
package/dist/memory.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { a11ycapture, agentplan, agentsession, apikeyentry, apimapentry, artifactinventoryentry, artifactrecord, auditevent, authrecord, bannerreport, blockrule, bodyrecord, callrecord, capabilityreport, captchahandoff, capturecounter, channelrecord, clipboardconsentrecord, cleanuprule, cleanuprun, clipentry, clickablemap, closedtab, cookieoperation, controltabstate, curatedlist, dataset, derivedselector, detectionrecord, diagnosticreport, dialogdecision, dialogpolicy, downloadrecord, endpointconfig, endpointrecord, errorreport, eventsubscription, exchangerecord, exportedartifact, extractsession, fetchconsent, focusevent, formprofile, headerule, imagebatch, keyholdstate, mediarecord, messageenvelope, mockspec, mimefilter, mutationevent, navcontrol, navintentrecord, navqueues, navrecord, netlogrecord, observationrecord, pagesignals, planprogress, provenancerecord, proxyroute, quarantineentry, ratelimitread, ratelimitstate, readercapture, recenttab, recordingconsentrecord, recordingrecord, resolutionsummary, retryoutcome, runsettings, safetyverdict, scanhookconfig, sessionsnapshot, sheetendpoint, shotpair, shotrecord, snapshotdiff, stepoutcome, streamstate, submitticket, tabbadge, tabgrouprecord, tablayout, tabmeta, tabwatchevent, taskrules, templateprofile, tokenrecord, trailentry, typeaheadpick, waitprofilerecord, watchregistration, wizardstate } from "./types.js";
|
|
1
|
+
import type { a11ycapture, agentplan, agentsession, apikeyentry, apimapentry, artifactinventoryentry, artifactrecord, auditevent, authrecord, bannerreport, blockrule, bodyrecord, breakpointspec, callrecord, capabilityreport, captchahandoff, capturecounter, cdpcommand, cdpeventrule, cdpsession, channelrecord, clipboardconsentrecord, cleanuprule, cleanuprun, clipentry, clickablemap, closedtab, consolediff, consoleconsentrecord, cookieoperation, controltabstate, curatedlist, dataset, debuggergrant, derivedselector, detectionrecord, diagnosticreport, dialogdecision, dialogpolicy, downloadrecord, endpointconfig, endpointrecord, errorrecord, errorreport, eventsubscription, exchangerecord, exportedartifact, extractsession, fetchconsent, focusevent, formprofile, headerule, imagebatch, keyholdstate, levelsummary, loglevel, longtaskentry, mediarecord, messageenvelope, mockspec, mimefilter, mutationevent, navcontrol, navintentrecord, navqueues, navrecord, netlogrecord, observationrecord, pagesignals, pausestate, planprogress, provenancerecord, proxyroute, quarantineentry, ratelimitread, ratelimitstate, readercapture, recenttab, recordingconsentrecord, recordingrecord, rejectionrecord, resolutionsummary, retryoutcome, rotationtargetrecord, runsettings, safetyverdict, scanhookconfig, scriptoverride, sessionsnapshot, sheetendpoint, shotpair, shotrecord, snapshotdiff, stepoutcome, streamstate, submitticket, tabbadge, tabgrouprecord, tablayout, tabmeta, tabwatchevent, taskrules, templateprofile, timelineentry, tokenrecord, trailentry, typeaheadpick, waitprofilerecord, watchexpression, watchregistration, wizardstate } from "./types.js";
|
|
2
2
|
/** Provides a small storage seam that works in browser, tests and future adapters. */
|
|
3
3
|
export interface memoryadapter {
|
|
4
4
|
get<T>(key: string): Promise<T | undefined>;
|
|
@@ -458,6 +458,80 @@ export declare class sessionmemory {
|
|
|
458
458
|
setratelimit(read: ratelimitread): Promise<void>;
|
|
459
459
|
/** Returns every stored rate limit read whose reset window has not passed yet; expired states drop out at their reset windows. */
|
|
460
460
|
getratelimits(now: number): Promise<ratelimitread[]>;
|
|
461
|
+
/** Stores one run timeline entry; the user configured timeline retention window expires the oldest entries while their level counts survive in the per run level summaries. */
|
|
462
|
+
addtimelineentry(entry: timelineentry): Promise<void>;
|
|
463
|
+
/** Returns every stored run timeline entry, newest first. */
|
|
464
|
+
gettimeline(): Promise<timelineentry[]>;
|
|
465
|
+
/** Returns the run timeline entries filtered by run, level and step id. */
|
|
466
|
+
listtimeline(filter: {
|
|
467
|
+
runid?: string;
|
|
468
|
+
level?: loglevel;
|
|
469
|
+
stepid?: string;
|
|
470
|
+
}): Promise<timelineentry[]>;
|
|
471
|
+
/** Stores one captured javascript error record with its stack frames, source url and line. */
|
|
472
|
+
adderrorrecord(record: errorrecord): Promise<void>;
|
|
473
|
+
/** Returns every stored error record, newest first. */
|
|
474
|
+
geterrorrecords(): Promise<errorrecord[]>;
|
|
475
|
+
/** Stores one captured unhandled rejection record with its reason and stack frames. */
|
|
476
|
+
addrejectionrecord(record: rejectionrecord): Promise<void>;
|
|
477
|
+
/** Returns every stored rejection record, newest first. */
|
|
478
|
+
getrejectionrecords(): Promise<rejectionrecord[]>;
|
|
479
|
+
/** Stores one captured long task entry with its duration, start time and attribution names. */
|
|
480
|
+
addlongtask(record: longtaskentry): Promise<void>;
|
|
481
|
+
/** Returns every stored long task entry, newest first. */
|
|
482
|
+
getlongtasks(): Promise<longtaskentry[]>;
|
|
483
|
+
/** Stores one console diff result between two runs, replacing the previous one. */
|
|
484
|
+
addconsolediff(diff: consolediff): Promise<void>;
|
|
485
|
+
/** Returns the one stored console diff result. */
|
|
486
|
+
getdiff(): Promise<consolediff | undefined>;
|
|
487
|
+
/** Stores one log rotation target record with its overflow entry counts, replacing the previous record of that target and run. */
|
|
488
|
+
addrotationtarget(record: rotationtargetrecord): Promise<void>;
|
|
489
|
+
/** Returns every stored rotation target record with its overflow entry counts, newest first. */
|
|
490
|
+
getrotationtargets(): Promise<rotationtargetrecord[]>;
|
|
491
|
+
/** Stores one console capture consent decision per origin; the approved decision persists so console watching on that origin prompts once. */
|
|
492
|
+
setconsoleconsent(consent: consoleconsentrecord): Promise<void>;
|
|
493
|
+
/** Returns every console capture consent decision, newest first. */
|
|
494
|
+
getconsoleconsents(): Promise<consoleconsentrecord[]>;
|
|
495
|
+
/** Stores one devtools session record with its enabled domains and detach state, replacing the previous record of its id. */
|
|
496
|
+
setcdpsession(session: cdpsession): Promise<void>;
|
|
497
|
+
/** Returns every stored devtools session record, newest first. */
|
|
498
|
+
getcdpsessions(): Promise<cdpsession[]>;
|
|
499
|
+
/** Stores one raw command outcome with its duration and error class. */
|
|
500
|
+
addcdpcommand(command: cdpcommand): Promise<void>;
|
|
501
|
+
/** Returns every stored raw command outcome, newest first. */
|
|
502
|
+
getcdpcommands(): Promise<cdpcommand[]>;
|
|
503
|
+
/** Stores one domain event rule with its match filter, replacing the previous rule of its id. */
|
|
504
|
+
setcdpeventrule(rule: cdpeventrule): Promise<void>;
|
|
505
|
+
/** Returns every stored domain event rule, newest first. */
|
|
506
|
+
getcdpeventrules(): Promise<cdpeventrule[]>;
|
|
507
|
+
/** Stores one breakpoint record with its condition and hit counter, replacing the previous record of its id. */
|
|
508
|
+
addbreakpoint(spec: breakpointspec): Promise<void>;
|
|
509
|
+
/** Returns every stored breakpoint record, newest first. */
|
|
510
|
+
getbreakpoints(): Promise<breakpointspec[]>;
|
|
511
|
+
/** Stores one pause state capture; the user configured pause retention window expires the call frames and the dom snapshot reference of the oldest captures while the pause reason and hit breakpoint survive. */
|
|
512
|
+
addpause(pause: pausestate): Promise<void>;
|
|
513
|
+
/** Returns every stored pause state capture, newest first. */
|
|
514
|
+
getpauses(): Promise<pausestate[]>;
|
|
515
|
+
/** Returns the pause state captures of one run, newest first. */
|
|
516
|
+
listpauses(runid: string): Promise<pausestate[]>;
|
|
517
|
+
/** Stores one watch expression with its per pause values, replacing the previous expression of its id. */
|
|
518
|
+
setwatchexpression(expression: watchexpression): Promise<void>;
|
|
519
|
+
/** Returns every stored watch expression, newest first. */
|
|
520
|
+
getwatchexpressions(): Promise<watchexpression[]>;
|
|
521
|
+
/** Stores one script override with its review provenance, replacing the previous override of its id. */
|
|
522
|
+
addscriptoverride(spec: scriptoverride): Promise<void>;
|
|
523
|
+
/** Returns every stored script override, newest first. */
|
|
524
|
+
getscriptoverrides(): Promise<scriptoverride[]>;
|
|
525
|
+
/** Stores one debugger consent decision per origin with the consented domain list, replacing the previous decision of its id. */
|
|
526
|
+
setdebuggergrant(grant: debuggergrant): Promise<void>;
|
|
527
|
+
/** Returns every debugger consent decision, newest first. */
|
|
528
|
+
getdebuggergrants(): Promise<debuggergrant[]>;
|
|
529
|
+
/** Revokes every approved debugger consent of one origin: the revoke time stamps the records so the next attach needs a new reviewed prompt. */
|
|
530
|
+
revokedebuggergrants(origin: string, at: number): Promise<number>;
|
|
531
|
+
/** Merges expired entry counts into the per run level count summary that survives the retention window. */
|
|
532
|
+
private mergelevelsummary;
|
|
533
|
+
/** Returns every per run level count summary, newest first. */
|
|
534
|
+
getlevelsummaries(): Promise<levelsummary[]>;
|
|
461
535
|
}
|
|
462
536
|
/** Creates identifiers locally without a network dependency. */
|
|
463
537
|
export declare function randomid(): string;
|
package/dist/memory.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../memory.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../memory.ts"],"names":[],"mappings":"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"}
|
package/dist/policy.d.ts
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import type { actionkind, agentplan, agentsession, captureexport, endpointconfig, formprofile, observationmode, policyevaluation, quarantineentry, runsettings, safetyverdict, toolstep } from "./types.js";
|
|
1
|
+
import type { actionkind, agentplan, agentsession, captureexport, cdpallowlist, consoleconsentrecord, debuggergrant, endpointconfig, formprofile, observationmode, policyevaluation, quarantineentry, rotationrule, runsettings, safetyverdict, spamrule, toolstep } from "./types.js";
|
|
2
2
|
/** Normalizes a user supplied HTTPS endpoint without preserving a provider lock-in. */
|
|
3
3
|
export declare function normalizeendpoint(value: string): endpointconfig;
|
|
4
4
|
/** Creates the exact optional host pattern requested from Chromium. */
|
|
5
5
|
export declare function hostpattern(origin: string): string;
|
|
6
6
|
/** True when the action kind observes the page over a reviewed lifetime window. */
|
|
7
7
|
export declare function iswatchkind(kind: actionkind): boolean;
|
|
8
|
+
/** True when the kind belongs to the debugging family of console, error and task watching. */
|
|
9
|
+
export declare function isdebugkind(kind: actionkind): boolean;
|
|
10
|
+
/** True when the kind belongs to the devtools protocol family of attaches, raw commands, event watches, breakpoints, stepping, watch expressions and script overrides. */
|
|
11
|
+
export declare function iscdpkind(kind: actionkind): boolean;
|
|
8
12
|
/** Grades the observation mode of a kind: passive capture, watched lifetimes or diffing passes. */
|
|
9
13
|
export declare function observationmodeof(kind: actionkind): observationmode;
|
|
10
14
|
/** Defines action risk from the fixed local allowlist. */
|
|
@@ -154,6 +158,40 @@ export declare function authconsentgranted(step: toolstep): policyevaluation;
|
|
|
154
158
|
export declare function apikeyconsentgranted(step: toolstep): policyevaluation;
|
|
155
159
|
/** Keeps the rate limit wait inside the reviewed wait budget as user configured behavior: the wait until the reset window passes must fit when a budget was reviewed; both bounds stay user choices with no code ceiling. */
|
|
156
160
|
export declare function ratelimitbudgetallowed(wait: number | undefined, budget: number | undefined): policyevaluation;
|
|
161
|
+
/** Requires the active tab grant of the live session for every debugging kind: the timeline gate scopes console, error and task capture to the run tab only and refuses every other tab. */
|
|
162
|
+
export declare function timelinegate(session: agentsession | undefined, tabid: number, origin: string, now: number): policyevaluation;
|
|
163
|
+
/** True when one approved console capture consent of that origin exists; console capture on a new origin prompts once and the approved decision persists. */
|
|
164
|
+
export declare function consoleconsentcovers(origin: string, consents: consoleconsentrecord[]): policyevaluation;
|
|
165
|
+
/** Requires the granted origin before stack frames are captured; stack capture outside the granted origin is refused. */
|
|
166
|
+
export declare function stackgate(session: agentsession | undefined, origin: string): policyevaluation;
|
|
167
|
+
/** Keeps the debug watch window inside the reviewed wait budget: the watch wait must fit the reviewed budget when one was reviewed; both bounds stay user choices with no code ceiling. */
|
|
168
|
+
export declare function debugwaitbudgetallowed(watchwindow: number | undefined, wait: number | undefined): policyevaluation;
|
|
169
|
+
/** Exposes the timeline retention window as a user configured choice; an absent value keeps every timeline entry forever while the level count summaries always survive. */
|
|
170
|
+
export declare function timelineretentionwindow(settings: runsettings | undefined): number | undefined;
|
|
171
|
+
/** Grades console diffing as read only comparison evidence: the diff compares two stored console outputs and touches no page or browser state. */
|
|
172
|
+
export declare function diffreviewgrade(): {
|
|
173
|
+
risk: "read";
|
|
174
|
+
mode: "diffing";
|
|
175
|
+
evidence: "comparison";
|
|
176
|
+
};
|
|
177
|
+
/** Normalizes a reviewed spam rule: the pattern, the window size and the collapse threshold as user configured values. */
|
|
178
|
+
export declare function spamruleof(value: unknown): spamrule | undefined;
|
|
179
|
+
/** Normalizes a reviewed log rotation rule: the max entries per run and the overflow target store with no hardcoded entry ceiling. */
|
|
180
|
+
export declare function rotationruleof(value: unknown): rotationrule | undefined;
|
|
181
|
+
/** Requires the active run tab grant of the live session for every devtools protocol kind: the debug gate scopes attaches, commands, watches, breakpoints, steps and overrides to the run tab only and refuses every other tab. */
|
|
182
|
+
export declare function debuggate(session: agentsession | undefined, tabid: number, origin: string, now: number): policyevaluation;
|
|
183
|
+
/** True when one approved debugger consent of that origin covers every requested domain; the first attachcdp of a run needs the approved record and revocation removes the coverage. */
|
|
184
|
+
export declare function debuggerconsentcovers(origin: string, domains: string[], grants: debuggergrant[]): policyevaluation;
|
|
185
|
+
/** Validates one breakpoint condition against the reviewed expression grammar: member chains, literals of number, string, boolean and null, comparison and logic operators, negation and parentheses; assignments, calls and statements are refused. */
|
|
186
|
+
export declare function validatebreakpointcondition(condition: string): policyevaluation;
|
|
187
|
+
/** Keeps the breakpoint count of one run inside the user configured ceiling: an absent ceiling never refuses a breakpoint because the cap stays a user choice only. */
|
|
188
|
+
export declare function breakpointbudgetallowed(active: number, ceiling: number | undefined): policyevaluation;
|
|
189
|
+
/** Exposes the pause capture retention window as a user configured choice; an absent value keeps every pause capture with its call frames. */
|
|
190
|
+
export declare function pauseretentionwindow(settings: runsettings | undefined): number | undefined;
|
|
191
|
+
/** Exposes the user configured breakpoint ceiling; an absent value never refuses a breakpoint because the cap stays a user choice only. */
|
|
192
|
+
export declare function breakpointceilingof(settings: runsettings | undefined): number | undefined;
|
|
193
|
+
/** Resolves the reviewed cdp allowlist of one plan: the enabled domains and method gates of its attachcdp step, the reviewable contract every later cdp kind of the plan must stay inside. */
|
|
194
|
+
export declare function planallowlist(steps: toolstep[]): cdpallowlist | undefined;
|
|
157
195
|
/** Resolves the reviewed outbound url of a network control step at review time: the form url of postform, the upload url of postfiles and the token url of authflow. */
|
|
158
196
|
export declare function controltarget(step: toolstep): string | undefined;
|
|
159
197
|
/** Resolves the reviewed channel url of a socket step at review time: the socket url of opensocket, the event stream url of subscribesse and the poll url of longpoll. */
|
package/dist/policy.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"policy.d.ts","sourceRoot":"","sources":["../policy.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,SAAS,EAAE,YAAY,EAAE,aAAa,
|
|
1
|
+
{"version":3,"file":"policy.d.ts","sourceRoot":"","sources":["../policy.ts"],"names":[],"mappings":"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"}
|
package/dist/protocol.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { protocolversion, type agentplan, type apimapentry, type bannerreport, type blockrule, type callrecord, type channelrecord, type clickablemap, type cookieoperation, type dataset, type downloadrecord, type errorreport, type eventsubscription, type exchangerecord, type extractsession, type focusevent, type formreport, type headerule, type imagebatch, type keyholdstate, type mediarecord, type mockspec, type mutationevent, type navstate, type netlogrecord, type observation, type pagesignals, type planproposal, type proposalrequest, type provenancerecord, type proxyroute, type quarantineentry, type ratelimitread, type resolvedtarget, type safetyverdict, type selectorcandidate, type shotpair, type shotrecord, type snapshotdiff, type stepoutcome, type tablayout, type tabreport, type tokenrecord, type trailentry, type transformrule, type typeaheadpick, type wizardstate } from "./types.js";
|
|
1
|
+
import { protocolversion, type agentplan, type apimapentry, type bannerreport, type blockrule, type breakpointspec, type callrecord, type cdpcommand, type cdpeventrule, type cdpsession, type channelrecord, type clickablemap, type consolediff, type cookieoperation, type dataset, type debuggergrant, type downloadrecord, type errorrecord, type errorreport, type eventsubscription, type exchangerecord, type extractsession, type focusevent, type formreport, type headerule, type imagebatch, type keyholdstate, type longtaskentry, type mediarecord, type mockspec, type mutationevent, type navstate, type netlogrecord, type observation, type pagesignals, type pausestate, type planproposal, type proposalrequest, type provenancerecord, type proxyroute, type quarantineentry, type ratelimitread, type rejectionrecord, type resolvedtarget, type safetyverdict, type scriptoverride, type selectorcandidate, type shotpair, type shotrecord, type snapshotdiff, type stepoutcome, type tablayout, type tabreport, type timelineentry, type tokenrecord, type trailentry, type transformrule, type typeaheadpick, type watchexpression, type wizardstate } from "./types.js";
|
|
2
2
|
/**
|
|
3
3
|
* Reviewed options grammar shared by every step kind.
|
|
4
4
|
*
|
|
@@ -37,6 +37,10 @@ import { protocolversion, type agentplan, type apimapentry, type bannerreport, t
|
|
|
37
37
|
* - http steps attach structured evidence to step details: the transport block with status, response header names, byte size and duration, retry counts and stream byte counts, parsedfield values extracted by dotted paths with miss flags, html query results with attribute values, text and element counts, the endpoint name of rest and graphql results, structured json error bodies and every graphql error mapped beside the step that produced it; the response envelope gains a transport block, and the calls report carries every stored call record with the bodies held back.
|
|
38
38
|
* - the network control family adds its parameter grammar: `blockrequest` carries a reviewed `block` rule of an https origin `urlpattern` (patterns without a named origin are refused), an optional `resourcetypes` list and the explicit `reviewed` flag behind the blockgate; `mockresponse` carries a reviewed `mock` fixture of the same origin `urlpattern`, an integer `status`, optional `headers` and either the full `body` reviewed through the explicit `reviewed` flag or a `bodyref` of a captured body of the 1.1.43 body store the fixture replays; `rewriteheaders` carries reviewed `rules` of `{ urlpattern, name, operation, value }` where every pattern names its origin explicitly and the operation is `set`, `append` or `remove`; `setcookies` carries reviewed `cookies` records of `{ name, domain, path, value, expiresat }` scoped to granted domains by the cookiegate; `readcookies` carries an optional `domain`; `clearcookies` carries a reviewed `domain` with an optional `names` list; `authflow` carries a reviewed `oauth` flow of `provider`, https `authorizeurl` and `tokenurl`, `scopes` and the granted `redirectorigin` plus the reviewed provider `consentref`; `saveapikey` carries a reviewed `key` entry of `name`, https origin `origins` scopes, the attaching `header` and the secret `value` behind the explicit `consentref`; `routeproxy` carries a reviewed `proxy` route of `scheme` (http, https, socks4 or socks5), `host`, `port` and the required non-empty `bypass` origin list behind the reviewed `consentref` of the proxygate; `postform` carries a reviewed `form` payload of the https `url` and its `fields`; and `postfiles` carries a reviewed `upload` payload of the https `url`, `fields` and `files` where every file carries the explicit `reviewed` flag before any multipart upload includes it.
|
|
39
39
|
* - network control steps attach structured evidence to step details: the control block with the applied, blocked and mocked rule counts of the run, blocked counts per rule, applied header rewrite rules with their provenance, redacted cookie views without values, oauth flow state with provider and scopes while token values never appear, api key entries with last use timestamps and no key material, proxy route state with apply and revert times, rate limit waits with reset times, urlencoded form encodings and streamed multipart upload progress; the response envelope gains a control block, and the auth report carries token metadata per provider with scopes and expiry windows but no token values.
|
|
40
|
+
* - the debugging family adds its parameter grammar: `watchconsole`, `watcherrors` and `watchtasks` carry a reviewed `watch` window object with a `window` in milliseconds kept inside the reviewed `wait` budget (both user choices with no code ceiling), a `level` floor from the reviewed level set (`error`, `warn`, `info`, `log`, `debug`, `trace`) and optional `sources` filters from the reviewed timeline source grammar (`console`, `error`, `rejection`, `resource`, `longtask`, `network`); `watchconsole` adds the required non-empty `redact` pattern list applied before any console text leaves the page bridge, a `depth` serialization bound, a `spam` rule of `pattern`, `windowsize` and `collapse` threshold and a `rotation` rule of `maxentries` with an `overflowtarget` store; `watchtasks` adds an optional `threshold` in milliseconds; the kinds stay read only behind the timelinegate that scopes capture to the run tab.
|
|
41
|
+
* - debugging steps attach structured evidence to step details: the timeline block with the entry counts per level and the spam collapse count, console entries with their level, redacted text and argument kinds, error and rejection ids with stack frames, source urls and lines, resource failures with element context, long task entries with attribution names and the blocking duration per step window; the response envelope gains a timeline block, and the timeline report carries every entry, error record, rejection record and long task entry of the run while the console diff report carries the added, removed and repeated line classes of two compared runs.
|
|
42
|
+
* - the debugging part two family adds its parameter grammar: `attachcdp` carries a reviewed non-empty `domains` list of the reviewed domain grammar (`Runtime`, `Log`, `Debugger`, `DOM`, `Network`, `Page`), the required `teardown` plan of `revertsteps` with the `resumepolicy` of resume, pause or ask (attaches without one are refused at validation and in the proposal parser) and an optional method `allowlist` of `Domain.method` gates inside the enabled domains; `detachcdp` carries no parameters and reverts every breakpoint and override before detaching; `cdpcmd` carries a reviewed `command` of the `Domain.method` form with optional `params` and a dotted `resultpath`, and its method domain must stay inside the enabled domain allowlist of the plan attach; `watchcdp` carries reviewed `events` rules of `domain`, `event` and optional payload `match` plus the required `watch` lifetime window kept inside the reviewed `wait` budget; `setbreakpoint` carries a reviewed `breakpoint` of https `url`, zero based `line`, optional `column` and a `condition` of the reviewed expression grammar (member chains, literals, comparison and logic operators, negation and parentheses only); `stepcode` carries the reviewed `mode` of stepover, stepinto, stepout or resume; `watchexpr` carries the reviewed `expression` text with its pause `scope` and the explicit `reviewed` flag before any evaluation; and `overridescript` carries a reviewed `override` of an https origin `urlpattern` with the full fixture `source` behind the explicit `reviewed` flag.
|
|
43
|
+
* - debugging part two steps attach structured evidence to step details: the cdp block with the session state and command ids, pausestate summaries with their call frames and dom snapshot ids, event counts per domain of watchcdp results, breakpoint registrations with hit counts, watch expression values per pause and override applications with revert controls; the response envelope gains a cdp block, and the cdp report carries every session, command outcome, event rule, breakpoint, pause state, watch expression and override of the run with the override sources held back.
|
|
40
44
|
*
|
|
41
45
|
* Ambiguous text, aria or name resolutions are refused at execution time with the candidate list so the user can choose.
|
|
42
46
|
*/
|
|
@@ -44,7 +48,7 @@ import { protocolversion, type agentplan, type apimapentry, type bannerreport, t
|
|
|
44
48
|
export declare function parseproposal(value: unknown, origin: string, grants?: string[]): planproposal;
|
|
45
49
|
/** Shapes the only data that may be sent to a user-configured agent endpoint. */
|
|
46
50
|
export declare function requestbody(input: proposalrequest): string;
|
|
47
|
-
/** Wraps one executed step outcome in the versioned response envelope for callers, attaching the matched element summary, the capture block of capture steps, the media block of media steps, the transport block of outbound calls, the network block of observed exchanges and channels
|
|
51
|
+
/** Wraps one executed step outcome in the versioned response envelope for callers, attaching the matched element summary, the capture block of capture steps, the media block of media steps, the transport block of outbound calls, the network block of observed exchanges and channels, the control block of applied traffic rules, the timeline block of debugging steps and the cdp block of devtools protocol steps for review. */
|
|
48
52
|
export declare function outcomeresponse(input: {
|
|
49
53
|
outcome: stepoutcome;
|
|
50
54
|
plan: agentplan;
|
|
@@ -75,6 +79,16 @@ export declare function outcomeresponse(input: {
|
|
|
75
79
|
blocked: number;
|
|
76
80
|
mocked: number;
|
|
77
81
|
};
|
|
82
|
+
timeline?: {
|
|
83
|
+
entries: number;
|
|
84
|
+
levels: Record<string, number>;
|
|
85
|
+
collapsed: number;
|
|
86
|
+
};
|
|
87
|
+
cdp?: {
|
|
88
|
+
sessionid: string;
|
|
89
|
+
state: string;
|
|
90
|
+
commandids: string[];
|
|
91
|
+
};
|
|
78
92
|
}): string;
|
|
79
93
|
/** Wraps a clickable map payload with numbered entries in the versioned response envelope. */
|
|
80
94
|
export declare function mapresponse(input: {
|
|
@@ -282,4 +296,51 @@ export declare function controlreport(input: {
|
|
|
282
296
|
proxies: proxyroute[];
|
|
283
297
|
ratelimits: ratelimitread[];
|
|
284
298
|
};
|
|
299
|
+
/** Carries the run timeline in the session context envelope: every entry with its level, source, step id and message, the error and rejection records with their stack frames, the long task entries with attribution names and the entry counts per level. */
|
|
300
|
+
export declare function timelinereport(input: {
|
|
301
|
+
entries: timelineentry[];
|
|
302
|
+
errors: errorrecord[];
|
|
303
|
+
rejections: rejectionrecord[];
|
|
304
|
+
longtasks: longtaskentry[];
|
|
305
|
+
levelcounts: Record<string, number>;
|
|
306
|
+
}): {
|
|
307
|
+
version: typeof protocolversion;
|
|
308
|
+
entries: timelineentry[];
|
|
309
|
+
errors: errorrecord[];
|
|
310
|
+
rejections: rejectionrecord[];
|
|
311
|
+
longtasks: longtaskentry[];
|
|
312
|
+
levelcounts: Record<string, number>;
|
|
313
|
+
};
|
|
314
|
+
/** Carries one console diff result in the session context envelope with every line classified as added, removed or repeated and the counts of each class. */
|
|
315
|
+
export declare function consolediffreport(input: {
|
|
316
|
+
diff: consolediff;
|
|
317
|
+
}): {
|
|
318
|
+
version: typeof protocolversion;
|
|
319
|
+
diff: consolediff;
|
|
320
|
+
};
|
|
321
|
+
/** Carries the devtools protocol state of the run in the session context envelope: every session with its domains and durations, the command outcomes with durations and error classes, the event rules with match counts, the breakpoints with hit counts and conditions, the pause states with their call frames and dom snapshot ids, the watch expressions with their per pause values and the script overrides with review provenance while the fixture sources stay held back. */
|
|
322
|
+
export declare function cdpreport(input: {
|
|
323
|
+
sessions: cdpsession[];
|
|
324
|
+
commands: cdpcommand[];
|
|
325
|
+
events: cdpeventrule[];
|
|
326
|
+
breakpoints: breakpointspec[];
|
|
327
|
+
pauses: pausestate[];
|
|
328
|
+
watches: watchexpression[];
|
|
329
|
+
overrides: scriptoverride[];
|
|
330
|
+
grants: debuggergrant[];
|
|
331
|
+
}): {
|
|
332
|
+
version: typeof protocolversion;
|
|
333
|
+
sessions: cdpsession[];
|
|
334
|
+
commands: cdpcommand[];
|
|
335
|
+
events: cdpeventrule[];
|
|
336
|
+
breakpoints: breakpointspec[];
|
|
337
|
+
pauses: pausestate[];
|
|
338
|
+
watches: watchexpression[];
|
|
339
|
+
overrides: Array<Omit<scriptoverride, "source"> & {
|
|
340
|
+
source?: undefined;
|
|
341
|
+
}>;
|
|
342
|
+
grants: Array<Omit<debuggergrant, "prompt"> & {
|
|
343
|
+
prompt?: undefined;
|
|
344
|
+
}>;
|
|
345
|
+
};
|
|
285
346
|
//# sourceMappingURL=protocol.d.ts.map
|
package/dist/protocol.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../protocol.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"protocol.d.ts","sourceRoot":"","sources":["../protocol.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import type { consolediff, consoleentry, errorrecord, exchangerecord, loglevel, loglevelset, longtaskentry, netfailureentry, rejectionrecord, rotationrule, spamrule, stackframe, timelineentry, timelinesource } from "./types.js";
|
|
2
|
+
/**
|
|
3
|
+
* Run timeline logics for the 1.1.45 debugging family.
|
|
4
|
+
* Every correlated rule for console capture with reviewed depth bounds and secret redaction, stack frame parsing, error, rejection and resource failure capture, long task attribution windows, the timeline binding to one run and its step ids, spam collapse with reviewed thresholds, log rotation without entry loss, level and source filters, the blocking duration per step window and the console diff between two runs lives in this file.
|
|
5
|
+
* Console, error and task watching derives from page-injected listeners installed through the scripting api and the performance buffers, so no debugger permission exists anywhere in the manifest; redaction runs before any entry leaves the page bridge and captured text never carries reviewed secret patterns.
|
|
6
|
+
*/
|
|
7
|
+
/** The debugging kinds, listed among the available capabilities of every proposal request. */
|
|
8
|
+
export declare const timelinekinds: string[];
|
|
9
|
+
/** The reviewed level set, ordered from the most severe to the most verbose level. */
|
|
10
|
+
export declare const loglevels: loglevel[];
|
|
11
|
+
/** The reviewed timeline source grammar: page console output, script errors, promise rejections, resource failures, long tasks, failed network requests and instrumented devtools protocol events. */
|
|
12
|
+
export declare const timelinesources: timelinesource[];
|
|
13
|
+
/** Ranks one level inside the reviewed level set; lower ranks are more severe. */
|
|
14
|
+
export declare function levelrank(level: loglevel): number;
|
|
15
|
+
/** Redacts reviewed secret patterns from console text before any entry leaves the page bridge; matched patterns never survive into a stored entry. */
|
|
16
|
+
export declare function redactconsoletext(text: string, patterns: string[]): string;
|
|
17
|
+
/** Classifies the kind tag of one console argument for the consoleentry argument kinds. */
|
|
18
|
+
export declare function argkind(value: unknown): string;
|
|
19
|
+
/** Serializes one console argument through the reviewed depth bound; deeper objects collapse to their constructor tag so the bound stays a user choice with no code ceiling. */
|
|
20
|
+
export declare function serializearg(value: unknown, depth: number): string;
|
|
21
|
+
/** Builds one captured console entry from a forwarded console call: the level, the redacted text of every serialized argument and the argument kinds, with redaction applied before the entry exists. */
|
|
22
|
+
export declare function consolecapture(input: {
|
|
23
|
+
level: loglevel;
|
|
24
|
+
args: unknown[];
|
|
25
|
+
depth: number;
|
|
26
|
+
redact: string[];
|
|
27
|
+
}): consoleentry;
|
|
28
|
+
/** Parses one stack trace text into stack frames with function names, urls, lines and columns; unparseable lines are skipped instead of crashing capture. */
|
|
29
|
+
export declare function stackframes(stacktext: string): stackframe[];
|
|
30
|
+
/** Builds one captured javascript error record body from an error event: the redacted message, the parsed stack frames, the source url and the line. */
|
|
31
|
+
export declare function errorcapture(input: {
|
|
32
|
+
message: string;
|
|
33
|
+
sourceurl: string;
|
|
34
|
+
line: number;
|
|
35
|
+
stacktext?: string;
|
|
36
|
+
redact: string[];
|
|
37
|
+
}): Pick<errorrecord, "message" | "frames" | "sourceurl" | "line">;
|
|
38
|
+
/** Builds one captured unhandled rejection record body from the rejection reason text and its stack frames, with the reason redacted before capture. */
|
|
39
|
+
export declare function rejectioncapture(input: {
|
|
40
|
+
reason: string;
|
|
41
|
+
stacktext?: string;
|
|
42
|
+
redact: string[];
|
|
43
|
+
}): Pick<rejectionrecord, "reason" | "frames">;
|
|
44
|
+
/** Builds the long task entry bodies of one watch window from performance longtask entries with their attribution names; the reviewed threshold filters entries below the user configured duration. */
|
|
45
|
+
export declare function longtaskcapture(input: {
|
|
46
|
+
entries: Array<{
|
|
47
|
+
starttime: number;
|
|
48
|
+
duration: number;
|
|
49
|
+
attributions: string[];
|
|
50
|
+
}>;
|
|
51
|
+
threshold: number;
|
|
52
|
+
}): Array<Pick<longtaskentry, "duration" | "starttime" | "attributions">>;
|
|
53
|
+
/** One run timeline bound to its run and step ids. */
|
|
54
|
+
export interface timeline {
|
|
55
|
+
runid: string;
|
|
56
|
+
origin: string;
|
|
57
|
+
stepids: string[];
|
|
58
|
+
attachedat: number;
|
|
59
|
+
entries: timelineentry[];
|
|
60
|
+
}
|
|
61
|
+
/** Binds one timeline to the run and its step ids; capture stays scoped to that run and every entry carries the run correlation id of its step. */
|
|
62
|
+
export declare function attachtimeline(input: {
|
|
63
|
+
runid: string;
|
|
64
|
+
origin: string;
|
|
65
|
+
stepids: string[];
|
|
66
|
+
now: number;
|
|
67
|
+
}): timeline;
|
|
68
|
+
/** Applies the reviewed level set to timeline entries: per step level floors drop entries more verbose than the floor and source filters drop entries from unreviewed sources. */
|
|
69
|
+
export declare function filterentries(entries: timelineentry[], levelset: loglevelset): timelineentry[];
|
|
70
|
+
/** Collapses repeated identical messages inside the reviewed spam window into counts and flags the patterns that exceed the reviewed collapse threshold. */
|
|
71
|
+
export declare function spamdetect(entries: timelineentry[], rule: spamrule): {
|
|
72
|
+
entries: Array<timelineentry & {
|
|
73
|
+
repeat: number;
|
|
74
|
+
}>;
|
|
75
|
+
flagged: Array<{
|
|
76
|
+
message: string;
|
|
77
|
+
count: number;
|
|
78
|
+
}>;
|
|
79
|
+
};
|
|
80
|
+
/** Rotates the timeline of one run: the newest entries stay inside the reviewed max entries window while every overflow entry moves to the rotation target store without data loss. */
|
|
81
|
+
export declare function rotatelogs(entries: timelineentry[], rule: rotationrule): {
|
|
82
|
+
kept: timelineentry[];
|
|
83
|
+
overflow: timelineentry[];
|
|
84
|
+
};
|
|
85
|
+
/** Counts the timeline entries per level for the response envelope timeline block. */
|
|
86
|
+
export declare function timelinecounts(entries: timelineentry[]): Record<string, number>;
|
|
87
|
+
/** Sums the blocking duration of long task entries inside one step window; the window stays a reviewed value with no code ceiling. */
|
|
88
|
+
export declare function blockingduration(tasks: Array<{
|
|
89
|
+
starttime: number;
|
|
90
|
+
duration: number;
|
|
91
|
+
}>, stepid: string, window: {
|
|
92
|
+
startedat: number;
|
|
93
|
+
endedat: number;
|
|
94
|
+
}): {
|
|
95
|
+
stepid: string;
|
|
96
|
+
blocking: number;
|
|
97
|
+
tasks: number;
|
|
98
|
+
};
|
|
99
|
+
/** Marks one failed request of the run in the timeline from its observed exchange: the url, status, error class and correlation id. */
|
|
100
|
+
export declare function netfailureentryof(input: {
|
|
101
|
+
id: string;
|
|
102
|
+
exchange: exchangerecord;
|
|
103
|
+
at: number;
|
|
104
|
+
}): netfailureentry | null;
|
|
105
|
+
/** Decides whether a watcher detached early because the run tab navigated inside its watch window: navigation timestamps inside the window detach the watcher at the navigation time. */
|
|
106
|
+
export declare function watcherdetached(input: {
|
|
107
|
+
startedat: number;
|
|
108
|
+
lifetime: number;
|
|
109
|
+
navigations: number[];
|
|
110
|
+
}): {
|
|
111
|
+
detached: boolean;
|
|
112
|
+
at?: number;
|
|
113
|
+
};
|
|
114
|
+
/** Compares the console output of two runs and classifies every line as added, removed or repeated; repeated lines carry their repeat counts. */
|
|
115
|
+
export declare function consolediff(input: {
|
|
116
|
+
baseid: string;
|
|
117
|
+
targetid: string;
|
|
118
|
+
baselines: string[];
|
|
119
|
+
targetlines: string[];
|
|
120
|
+
now: number;
|
|
121
|
+
}): consolediff;
|
|
122
|
+
//# sourceMappingURL=runtimeline.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtimeline.d.ts","sourceRoot":"","sources":["../runtimeline.ts"],"names":[],"mappings":"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"}
|