autokap 1.1.8 → 1.3.1
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/assets/skill/OPCODE-REFERENCE.md +18 -1
- package/assets/skill/SKILL.md +54 -11
- package/dist/browser.js +23 -1
- package/dist/capture-strategy.d.ts +14 -0
- package/dist/capture-strategy.js +28 -0
- package/dist/cli-contract.d.ts +61 -0
- package/dist/cli-runner.d.ts +10 -1
- package/dist/cli-runner.js +415 -20
- package/dist/cli.js +80 -0
- package/dist/clip-capture-loop.js +11 -2
- package/dist/cookie-dismiss.d.ts +1 -0
- package/dist/cookie-dismiss.js +13 -1
- package/dist/execution-schema.d.ts +303 -2
- package/dist/execution-schema.js +77 -4
- package/dist/execution-types.d.ts +114 -5
- package/dist/execution-types.js +2 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +2 -0
- package/dist/mouse-animation.d.ts +12 -2
- package/dist/mouse-animation.js +36 -6
- package/dist/opcode-actions.d.ts +2 -0
- package/dist/opcode-actions.js +39 -5
- package/dist/opcode-runner.d.ts +2 -0
- package/dist/opcode-runner.js +139 -17
- package/dist/openrouter-tts.d.ts +74 -0
- package/dist/openrouter-tts.js +218 -0
- package/dist/postcondition.js +36 -26
- package/dist/program-signing.d.ts +67 -0
- package/dist/recovery-chain.js +26 -12
- package/dist/server-credit-usage.d.ts +1 -1
- package/dist/video-narration-schema.d.ts +1165 -0
- package/dist/video-narration-schema.js +137 -0
- package/dist/web-playwright-local.d.ts +16 -0
- package/dist/web-playwright-local.js +204 -18
- package/package.json +9 -1
package/dist/cookie-dismiss.js
CHANGED
|
@@ -98,8 +98,20 @@ const DEV_TOOL_SELECTORS = [
|
|
|
98
98
|
'nuxt-devtools-frame',
|
|
99
99
|
'#nuxt-devtools-anchor',
|
|
100
100
|
'#nuxt-devtools-container',
|
|
101
|
+
// Common coding-agent / prototype builder chrome
|
|
102
|
+
'[data-testid="v0-toolbar"]',
|
|
103
|
+
'#v0-toolbar',
|
|
104
|
+
'[data-v0-devtools]',
|
|
105
|
+
'[data-lovable-badge]',
|
|
106
|
+
'#lovable-badge',
|
|
107
|
+
'[class*="lovable-badge"]',
|
|
108
|
+
'[data-bolt-toolbar]',
|
|
109
|
+
'#bolt-toolbar',
|
|
110
|
+
'[class*="bolt-toolbar"]',
|
|
111
|
+
'[data-replit-devtools]',
|
|
112
|
+
'#replit-devtools',
|
|
101
113
|
];
|
|
102
|
-
const CAPTURE_HIDE_STYLE_ID = 'autokap-capture-hide-style';
|
|
114
|
+
export const CAPTURE_HIDE_STYLE_ID = 'autokap-capture-hide-style';
|
|
103
115
|
export function getCaptureHideCSS() {
|
|
104
116
|
return [...HIDE_SELECTORS, ...DEV_TOOL_SELECTORS].map(selector => `${selector} { display: none !important; visibility: hidden !important; pointer-events: none !important; }`).join('\n');
|
|
105
117
|
}
|