quicker-rpc: Skill for Claude Code

.cursor/skills/quicker-rpc-build-test/SKILL.md

quicker-rpc-build-test is a skill for Claude Code, Cursor from QuickerHub/quicker-rpc. It costs 119 tokens per session (2,582 once invoked), scanned A, original, MIT.

A documented test-build procedure for the quicker-rpc project, which connects an agent interface to Quicker through a command-line service and plugin. It explains when to run a hot-reload build after source changes.

In plain words
What is it for?
Use it after changing quicker-rpc plugins, the command-line service, contracts, agent model, build scripts, or related documentation. It tells you which build command and reload behavior apply.
Why use it?
It prevents developers from assuming that edited code is already being used by a running service or interface. It also distinguishes a test refresh from a release build.

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-rpc-build-test/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-rpc-build-test

README.md
[![agentmods](https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-rpc-build-test/github.svg)](https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-rpc-build-test)
Your own site
<a href="https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-rpc-build-test"><img src="https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-rpc-build-test/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-rpc-build-test

Your own site · 80×15
<a href="https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-rpc-build-test"><img src="https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-rpc-build-test.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 119 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,582 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.00119 $0.02582
Opus 5 $0.00060 $0.01291
Sonnet 5 $0.00024 $0.00516
Haiku 4.5 $0.00012 $0.00258

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

Security

Grade A, and why

quicker-rpc-build-test 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-rpc-build-test/SKILL.md · 132 lines

How it starts

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

quicker-rpc 改代码后测试构建

-t 不是正式发布:只 revision +1。对外交付或改 QuickerRpc_Run / QExpr launch_code 依赖新 DLL 时,必须 第三段 -Publish。见 .cursor/skills/quicker-qkbuild-version-publish/SKILL.md

热更新(agent-gui 可保持运行)

qkrpc(CLI/serve)QuickerRpc 插件 后,必须在仓库根目录执行热更新构建;不要只改源码就假定 agent-gui / 已打开的 qkrpc serve 会自动吃到新逻辑。

# 另开终端;不必关闭 dev.ps1
pwsh -NoProfile -File ./build.ps1 -t
改了什么 热更新做什么 agent-gui
QuickerRpc/src/QuickerRpc.Plugin.V1/**QuickerRpc/src/QuickerRpc.Runtime/** -t → 测试包 + 更新 QuickerRpc_Run version → 1s 后 quicker:runaction 重载 DLL 保持打开;RPC 经 serve 重连管道
QuickerRpc/src/QuickerRpc.Console/**QuickerRpc/src/QuickerRpc.Contracts/**(影响 RPC/CLI) -t → 发布 publish/cli + 停旧 serve → 启新 serve(默认 9477 保持打开;必要时 UI 重新检测
QuickerRpc/src/QuickerRpc.AgentModel/** 同上(CLI 与插件均可能依赖) 同上
agent-gui/** 无需 build.ps1 -t;Next HMR + dev_frontend_check 直到 ok .cursor/skills/quicker-agent-gui-frontend/SKILL.md
docs/action-authoring-src/** 需要 -t 或对应生成步骤,嵌入 CLI/agent 文档 视是否改到 UI

要点:

  1. 不必重启 agent-guistart.mjs 通过 http://127.0.0.1:9477 调 serve;build.ps1 -t 会替换二进制并重启 serve,端口不变。
  2. serve 副本:开发时 serve 常跑在 agent-gui/.runtime/qkrpc,避免锁住 publish/cli-t 仍会先 Stop-QkrpcServe 再启动 publish/cli 下的新进程。
  3. 验证GET http://127.0.0.1:9477/healthqkrpc action list --limit 1 --jsonqkrpc --version 应与 QuickerRpc/version.json 一致(-t 默认安装到用户 PATH)。
  4. 跳过用户安装(仅当用户明确要求):pwsh ./build.ps1 -t -SkipInstall — CLI 仅在 publish/cli,PATH 可能仍是旧版。
  5. 跳过 serve 重启(仅当用户明确要求):pwsh ./build.ps1 -t -SkipQkrpcServe — 只换插件/包,换正在跑的 qkrpc.exe

前置:Quicker 已启动;-t 失败或 RPC 报方法不存在时,确认构建日志在 qkbuild 更新 version 变量后出现 Started: quicker:runaction:…?plugin(脚本会 等待 1s 再触发)。未重载时 Plugin 改动不会生效。

何时执行

完成 会改变插件或 CLI 行为 的代码修改后,默认自动在仓库根目录执行:

pwsh -NoProfile -File ./build.ps1 -t

Read the full file on GitHub · 132 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 · 132 lines · 119 tokens per session scan A e079e4a5550e

Subscribe to this mod's changes

quicker-rpc-build-test is a skill published in the GitHub repository QuickerHub/quicker-rpc (13 stars, last pushed 27d ago), licensed MIT. It adds 119 tokens to every session and 2,582 once invoked, about $0.0006 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