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 instructions/quickerhub/quicker-rpc/agents-mdgit 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/instructions/quickerhub/quicker-rpc/agents-md)<a href="https://agentmods.dev/instructions/quickerhub/quicker-rpc/agents-md"><img src="https://agentmods.dev/badge/instructions/quickerhub/quicker-rpc/agents-md.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.04131 | $0.04131 |
| Opus 5 | $0.02065 | $0.02065 |
| Sonnet 5 | $0.00826 | $0.00826 |
| Haiku 4.5 | $0.00413 | $0.00413 |
Grade A, and why
quicker-rpc AGENTS.md scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- **shell_exec**:删除/写入类命令需用户确认;拒绝 `format`、`diskpart`、`curl | iex` 等危险模式(agent-gui 侧)。 How it starts
The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.
遵循 AGENTS.md 开放格式:面向 coding agent 的操作说明;人类贡献者请读 README.md。
Quicker 插件 + qkrpc.exe CLI,通过 命名管道 + StreamJsonRpc 让外部命令行调用 Quicker 内能力。
接 Agent/GUI/qkrpc 功能任务时,先按 docs/agents/README.md 的关键词定位功能域,再进入代码;产品状态以 docs/product/README.md 为准。
Quick routing(改什么 → 做什么)
| 改了什么 | Agent 必做 | 不要 |
|---|---|---|
QuickerRpc/src/**、QuickerRpc/build.yaml、QuickerRpc/version.json |
根目录 pwsh -NoProfile -File ./build.ps1 -t(或 /hot-update);必须等构建日志出现 plugin runaction + CLI Installed |
只改代码不构建、让用户代跑、未重载就声称 Plugin 已修好 |
docs/action-authoring-src/**、build.ps1、build.yaml、publish/publish-rpc.ps1 |
同上 -t |
— |
仅 agent-gui/** |
自动 dev_frontend_check 直到 ok: true(或 /frontend-check);见 quicker-agent-gui-frontend |
跑 build.ps1 -t;未检查就声称无错 |
agent-gui/llm-publish.config.json 或用户说 发布 publish config |
publish/Sync-LlmPublishConfig.ps1 → BUNDLED_LLM_CONFIG + Bitiful 加密 OSS;skill quicker-agent-llm-apikey-config / /publish-llm-config |
commit 该文件;勿 -t |
voice-asr-runtime/** 发布 / 用户说 voice runtime 发布 |
quicker-voice-runtime-publish / /publish-voice-runtime;tag vX.Y.Z → 同步两处 voice-plugin-channel.json |
勿改 version.json;勿仅用 -t |
仅 README.md、AGENTS.md、.cursor/**(未动 C#) |
无构建 | — |
docs/agent-mcp-integration.md 等纯文档 |
无构建 | — |
| 第三方 Agent 接入(MCP/skills) | Agent 自执行 docs/agent-mcp-self-install.md;Cursor qkrpc agent setup --workspace <root>(项目级);全局插件仅 --cursor-plugin;Codex --codex --project |
只把命令丢给用户 |
| 公开发布 / getquicker 正式包 | /publish;第三段 +1,见 quicker-qkbuild-version-publish |
仅用 -t revision 代替发布 |
热更新后验证:Invoke-RestMethod http://127.0.0.1:9477/health 或 qkrpc action list --limit 1 --json。
Dev environment tips
- 前置:Quicker 已运行且已加载 QuickerRpc 插件;勿先
ping探活。 - Shell 调 qkrpc / rg:QuickerAgent 的
shell_exec会在 spawn 时自动把qkrpc与rg(ripgrep)目录 prepend 到 PATH(agent-gui/lib/qkrpc-toolchain-env.mjs、agent-gui/lib/rg-bin.mjs);qkrpc mcp install也会写入工作区.vscode/settings.json的terminal.integrated.env。仍优先 qkrpc MCP 工具。 - qkrpc 连不上时:先
qkrpc_wait/qkrpc wait --json(或 MCPqkrpc_wait)轮询等待;仍失败则告知用户检查 Quicker / 插件。禁止 shell 连环探活,除非用户明确要求修复环境。详见 skillquicker-rpc-knowledge(docs/skills/quicker-rpc-knowledge/)。 - Cursor / MCP:用
qkrpc_health或 qkrpc 工具;勿用 shell 代替 qkrpc CLI。 qkrpc是本机 CLI(qkrpc/%LOCALAPPDATA%\Programs\qkrpc\qkrpc.exe)。在终端 直接调用qkrpc <子命令>,不要当成只能由用户手动的文档。- 自描述优先:
qkrpc help --json;写动作:qkrpc guide get --topic authoring-workflow --json。人类可读:docs/cli-commands.md。 - 高频 / agent-gui:优先
qkrpc serve(http://127.0.0.1:9477,GET /health);未启动时 agent-gui 回退为 CLI 子进程。 - SDK:.NET 10(CLI);Plugin 为 net472。
agent-gui需 Node 20+、pnpm。启动开发环境:pwsh ./dev.ps1(见 agent-gui/AGENTS.md、docs/dev-supervisor-design.md)。 - 管道:
QuickerRpc_Server_QRPC2026(QuickerRpcPipeNames.ServerPipe);插件 host server,CLI client connect。
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 · 179 lines · 4,131 tokens per session scan A 416bbce5a38b
quicker-rpc AGENTS.md is an instructions file published in the GitHub repository QuickerHub/quicker-rpc (13 stars, last pushed 20d ago), licensed MIT. It adds 4,131 tokens to every session, about $0.0207 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
RG_IDE disposable.instructions.md
Guidelines for writing code using IDisposable.
vscode tree-widgets.instructions.md
Use when asked to consume workbench tree widgets in VS Code.
vscode accessibility.instructions.md
Use when implementing accessibility features, ARIA labels, screen reader support, accessible help dialogs, or keybinding scoping for accessibility. Covers AccessibleContentProvider, CONTEXTACCESSIBILITYMODEENABLED, verbosity settings, and announcement patterns.
vscode design-philosophy.instructions.md
VS Code design philosophy — the shared Values→Principles→Moves vocabulary for reasoning about UI in design terms rather than raw pixels. Use when creating, editing, or reviewing any visual surface (CSS, DOM, theming, icons, motion). Name the value/principle before reaching for a token.
mediago AGENTS.md
AGENTS.md instructions for mediago-dev/mediago, covering repository guidelines, project structure & module organization, tooling and script placement, documentation site safety and build, test, and development commands.
openscreen AGENTS.md
AGENTS.md instructions for getopenscreen/openscreen, covering agents.md, setup commands, development principles, project layout and code style.