Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/quickerhub/quicker-rpc/quicker-browser-scriptnpx skills add QuickerHub/quicker-rpc --skill quicker-browser-scriptgit clone --depth 1 https://github.com/QuickerHub/quicker-rpcWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-browser-script)<a href="https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-browser-script"><img src="https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-browser-script.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00068 | $0.01052 |
| Opus 5 | $0.00034 | $0.00526 |
| Sonnet 5 | $0.00014 | $0.00210 |
| Haiku 4.5 | $0.00007 | $0.00105 |
Grade A, and why
quicker-browser-script scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 72 lines — stays where its author put it; the contents beside it link to each section on GitHub.
quicker-browser-script
Pipeline: prototype script live → save as action → wire a trigger so the script runs automatically on matching pages/events.
Requires the Quicker browser extension (Quicker Connector) connected; uses the user's logged-in browser.
P1 — Prototype the script live
user_browser({ action: "tabs" })— confirm extension connected; picktabIduser_browser({ action: "run", operation: "RunScript", parameters: { tabId, script } })— script runs in page context; return a JSON-serializable value as the result- Iterate until output is correct; reuse
sessionId,tabIdis auto-carried when omitted - Other operations (OpenUrl, GetTabInfo, GetElementInfo, …): schema via
qkrpc_step_runner_getkey=sys:chromecontrol+controlField= operation
CLI / MCP equivalents: qkrpc chrome tabs|run / qkrpc_chrome_tabs / qkrpc_chrome_control.
P2 — Save as a Quicker action
qkrpc_action_create→ edit body withworkspace_program(authoring-workflow P1–P7)- Steps use
sys:chromecontrol— alwaysqkrpc_step_runner_get key=sys:chromecontrol --control-field RunScriptfirst; never guessinputParams - Full module doc:
docs({ action: "get", topic: "chromecontrol-authoring" }); patch withreference: "examples/chromecontrol" - Verify with
qkrpc_action_debug(step outputs), not plain run
P3 — Trigger setup (auto-run)
Full workflow: docs({ action: "get", topic: "trigger-workflow" }) (Tr0–Tr5). Summary:
quicker_trigger({ action: "events" })— get exacteventType,fields[].key/helpText, andvariables[].key. Always before add/update.- Add the rule:
quicker_trigger({
action: "add",
eventType: "BrowserUrlChanged",
params: { UrlPattern: "https://github.com" },
actionIdOrName: "<action guid>",
note: "run page script on GitHub",
})
UrlPattern is a URL-prefix match (semicolon-separated for multiple); use a regex: prefix for regular expressions — not bare regex.
- Manage:
list(query keyword) /update/enable/disable;deleteonly on explicit user ask. - Optional:
filter($=bool on variables);delayMsto wait before running.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 72 lines · 68 tokens per session scan A 07ff9ab8af37
quicker-browser-script is a skill published in the GitHub repository QuickerHub/quicker-rpc (13 stars, last pushed 21d ago), licensed MIT. It adds 68 tokens to every session and 1,052 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
accessibility
Primary accessibility skill for VS Code. REQUIRED for new feature and contribution work, and also applies to updates of existing UI. Covers accessibility help dialogs, accessible views, verbosity settings, signals, ARIA announcements, keyboard navigation, and ARIA labels/roles.
integrated-browser
Use this when working on the VS Code integrated browser ("browserView") to understand its architecture and mental model. Covers the embedded Chromium browser, its editor tab, navigation, overlay/layout, sessions, and agent browser tools under src/vs/platform/browserView and src/vs/workbench/contrib/browserView.
browserwing-executor
Control browser automation through HTTP API. Supports page navigation, element interaction (click, type, select), data extraction, accessibility snapshot analysis, screenshot, JavaScript execution, and batch operations.
chrome-cdp
Drive a headless Chrome over the Chrome DevTools Protocol (CDP) for browser QA — navigate, click, fill forms, read the DOM/accessibility tree, screenshot, and assert. Use whenever a task requires loading a web page and interacting with it like a user. Chrome is launched by a bash step (recipe below); this skill…
openscreen-design
Use this skill to generate well-branded interfaces and assets for OpenScreen (an AI-native screen-recording studio & video editor), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.