quicker-rpc: Skill for Cursor

.cursor/skills/quicker-exe-type-probing/SKILL.md

quicker-exe-type-probing is a skill for Cursor from QuickerHub/quicker-rpc. It costs 64 tokens per session (1,968 once invoked), scanned A, original, MIT.

A guide for finding internal types and methods in Quicker.exe when a quicker-rpc plugin must interact with Quicker through reflection, meaning runtime inspection of code.

In plain words
What is it for?
Use it when implementing or debugging action editing, program or variable persistence, designer APIs, step-runner catalogs, or service access in the Quicker plugin.
Why use it?
Quicker's internal code may be renamed or hidden in release builds, so guessing type names can cause fragile implementations. The guide gives an order for checking existing wrappers, scans, and installed files.

Skill for Cursor

Written for Cursor: installed under .cursor/. Also seen: mentions AGENTS.md.

This is QuickerHub/quicker-rpc's own configuration. It tells 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-exe-type-probing/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/QuickerHub/quicker-rpc

Made for: 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-exe-type-probing

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-exe-type-probing"><img src="https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-exe-type-probing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,968 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.00064 $0.01968
Opus 5 $0.00032 $0.00984
Sonnet 5 $0.00013 $0.00394
Haiku 4.5 $0.00006 $0.00197

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

Security

Grade A, and why

quicker-exe-type-probing 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-exe-type-probing/SKILL.md · 151 lines

How it starts

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

Quicker.exe Type Probing

When To Use

Use this skill before changing QuickerRpc/QuickerRpc.Plugin.V1 code that reflects into Quicker internals: action editing, program persistence, variable editing, designer APIs, step-runner catalog, or service access from the injected plugin.

Where To Find Code

Read this section before guessing type names or adding reflection.

Default order: existing QuickerRpc.Plugin.V1 wrappers → QuickerRpc.Plugin.Test exe scans → installed Quicker.exe (Release, obfuscated). Optional maintainer-local source under .ref/Quicker/ (gitignore) only when that directory already exists on disk.

A. quicker-rpc — code you edit

Area Path Notes
Reflection helpers QuickerRpc/QuickerRpc.Plugin.V1/Reflection/ QuickerInternalAccess, QuickerAssemblyReflection, QuickerActionEditReflection
RPC-facing services QuickerRpc/QuickerRpc.Plugin.V1/Services/ One file per capability; V1 host adapters in Adapters/
RPC orchestration QuickerRpc/QuickerRpc.Runtime/QuickerRpcService.cs Wire → IQuickerRpcHost + handlers(无 Quicker 反射)
Contracts QuickerRpc.Contracts/Rpc/IQuickerRpcService.cs Public RPC API
XAction compress/patch (no Quicker.exe) QuickerRpc.AgentModel/ Agent models; not runtime reflection
Action authoring docs for agents docs/action-authoring-src/ + manifest/*.json Generate → cli/ (qkrpc) / single skill docs/skills/quicker-authoring/ (QuickerAgent)
Offline exe scans QuickerRpc.Plugin.Test/ Debug/Release Quicker.exe signature probes
Quicker DLL references qkref.props Default Release: C:/Program Files/Quicker

First step: search QuickerRpc.Plugin.V1 for an existing wrapper (rg ActionEditMgr QuickerRpc/QuickerRpc.Plugin.V1).

B. Optional local Quicker source (maintainer only)

.ref/Quicker/ is gitignored and not part of this repository. Clone/setup is out of scope for agents; do not document or assume a public upstream.

Read the full file on GitHub · 151 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 · 151 lines · 64 tokens per session scan A 8bcbf43863f8

Subscribe to this mod's changes

quicker-exe-type-probing is a skill published in the GitHub repository QuickerHub/quicker-rpc (13 stars, last pushed 27d ago), licensed MIT. It adds 64 tokens to every session and 1,968 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.

Related

Other skills, from other repositories