quicker-rpc: Skill for Claude Code

.cursor/skills/quicker-agent-gui-frontend/SKILL.md

quicker-agent-gui-frontend is a skill for Claude Code, Cursor from QuickerHub/quicker-rpc. It costs 88 tokens per session (1,854 once invoked), scanned A, original, MIT.

A development rule for the agent-gui web interface, which is built with Next.js. It automatically checks affected pages and desktop interface changes after edits.

In plain words
What is it for?
Use it when changing interface components, styles, API routes, embedded browser features, or Electron window controls in agent-gui.
Why use it?
It prevents frontend work from being declared finished while errors remain. Failed checks provide issues to fix before trying again.

Skill for Claude CodeCursor

Written for Claude Code and Cursor: disable-model-invocation in frontmatter, but also installed under .cursor/. Also seen: mentions AGENTS.md.

This is QuickerHub/quicker-rpc's own configuration. It tells Claude Code and Cursor how to work on quicker-rpc itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything quicker-rpc configures →

Reuse

Borrowing it

Nothing to install: this file belongs to QuickerHub/quicker-rpc. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/QuickerHub/quicker-rpc/main/.cursor/skills/quicker-agent-gui-frontend/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/QuickerHub/quicker-rpc

Made for: Claude Code, Cursor.

Wrote 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.

agentmods badge for quicker-agent-gui-frontend

README.md
[![agentmods](https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-agent-gui-frontend/github.svg)](https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-agent-gui-frontend)
Your own site
<a href="https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-agent-gui-frontend"><img src="https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-agent-gui-frontend/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for quicker-agent-gui-frontend

Your own site · 80×15
<a href="https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-agent-gui-frontend"><img src="https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-agent-gui-frontend.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 88 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,854 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00088 $0.01854
Opus 5 $0.00044 $0.00927
Sonnet 5 $0.00018 $0.00371
Haiku 4.5 $0.00009 $0.00185

Measured 10d ago against content hash 5f097ffeeffa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

quicker-agent-gui-frontend 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 10d 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.

.cursor/skills/quicker-agent-gui-frontend/SKILL.md · 133 lines

How it starts

The opening of the file, as written. The whole thing — 133 lines — stays where its author put it; the contents beside it link to each section on GitHub.

agent-gui 前端:自动检查并修复

铁律(Agent 自执行,勿等用户提醒)

改动 agent-gui/** 中会影响页面、样式或桌面壳 UI 后,在声称「完成 / 已修复 / 通过」之前:

  1. 必须跑前端检查直到 ok: true(见下方命令)。
  2. ok: false → 按 issues[].local/*.json 修源码 → 等待 Next 重编译 → 再跑,循环。
  3. 禁止:未跑检查就声称前端无错;仅改 UI 却跑根目录 build.ps1 -t;提交 .local/*.json

verification-before-completion 一致:先证据,后结论

何时触发本 skill

改动 必探测 paths(在默认之外追加)
任意主聊天 UI 默认即可://api/llm/api/ping
app/tool-test/**components/tool-test/** "/", "/tool-test"
electron/** 影响主窗/无边框标题栏 "/", "/tool-test"(Electron 常用测试页)
components/browser/**、嵌入浏览器 "/" + 手动在 Electron 打开侧栏浏览器(检查无 desktop:invoke 抛错)
lib/action-editor/** "/";若改了设计器路由再加对应 path
lib/*.server.ts、API route 默认 + 改动的 /api/... path

默认探测路径定义于 lib/dev-frontend-smoke.server.ts["/", "/api/llm", "/api/ping"]

检查命令(按优先级)

1. QuickerAgent 聊天工具(首选)

dev_frontend_check({})
dev_frontend_check({ paths: ["/", "/tool-test"] })
dev_frontend_check({ clearCaptured: true })   # 仅在上一次 ok=true 之后

2. HTTP(Cursor 无 MCP 工具、或脚本回退)

# 默认路由
Invoke-RestMethod "http://127.0.0.1:3000/api/dev/frontend-check"

# 指定页面(逗号分隔,无空格)
Invoke-RestMethod "http://127.0.0.1:3000/api/dev/frontend-check?paths=/,/tool-test"

# 通过后清陈旧 HMR 误报
Invoke-RestMethod "http://127.0.0.1:3000/api/dev/frontend-check?clearCaptured=true"

ok: false 时 HTTP 状态为 503,body 含 issues[]

3. 仓库命令

Cursor:/frontend-check(读 .cursor/commands/frontend-check.md)。

标准收尾流程

编辑 agent-gui 源码
    → sleep 3–8s(等 webpack/turbopack 编译)
    → dev_frontend_check({ paths: [...] })
    → ok=false ? 读 issues + .local 落盘 → 修复 → 重复
    → ok=true → dev_frontend_check({ clearCaptured: true })
    → 再向用户汇报

前提pwsh ./dev.ps1pwsh ./dev.ps1 -Electron 在跑,NODE_ENV=development。dev server 未起时先启动,不要pnpm build 代替日常验证。

已内置的捕获(无需手写探针)

Read the full file on GitHub · 133 lines

Changes

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.

  1. 10d ago First seen · 133 lines · 88 tokens per session scan A 5f097ffeeffa

Subscribe to this mod's changes

quicker-agent-gui-frontend is a skill published in the GitHub repository QuickerHub/quicker-rpc (13 stars, last pushed 27d ago), licensed MIT. It adds 88 tokens to every session and 1,854 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

voiden

Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.

VoidenHQ/voiden · 28 tokens

testing

Verify a Skyvern deployment is working correctly by smoke-testing the backend API, frontend rendering, browser session provisioning, and workflow execution. Use when the user says 'is Skyvern working', 'test my deployment', 'verify the installation', 'smoke test', or needs to check that a self-hosted or local Skyvern…

Skyvern-AI/skyvern · 71 tokens

auto-verify

A frontend user-experience verification workflow built around Playwright, a tool for controlling browsers in automated tests. It checks important user flows and visual states in a frontend.

Insajin/autopus-adk · 24 tokens

trigger-realtime-and-frontend

Trigger.dev client/frontend surface: subscribe to runs in realtime (runs.subscribeToRun and the @trigger.dev/react-hooks hook useRealtimeRun), consume metadata and AI/text streams in React (useRealtimeStream), trigger tasks from the browser (useTaskTrigger, useRealtimeTaskTrigger), and mint scoped frontend credentials…

triggerdotdev/trigger.dev · 148 tokens

atmos-validation

Validate Atmos projects, components, arbitrary JSON Schema inputs, EditorConfig, and GitHub Actions; use affected-file selection and native CI annotations.

cloudposse/atmos · 31 tokens

visual-qa

MUST USE after building/changing any UI or when asked whether a page, component, or TUI looks right. Rigorous visual QA across web/page and terminal UIs. Prefer browser:control-in-app-browser for unauthenticated browser/page QA in Codex, then Playwright/agent-browser/dev-browser. Captures screenshot/TUI evidence with…

code-yeongyu/lazycodex · 140 tokens