quicker-rpc: Skill for Cursor

.cursor/skills/quicker-agent-session-review/SKILL.md

quicker-agent-session-review is a skill for Cursor from QuickerHub/quicker-rpc. It costs 61 tokens per session (977 once invoked), scanned A, original, MIT.

A skill for reviewing exported QuickerAgent chat threads and assessing their prompts, tool calls, schemas, and workflow.

In plain words
What is it for?
Use it after a failed or inefficient session to validate the export, inspect the tool timeline, score the authoring flow, match benchmark tasks, and produce optimization suggestions.
Why use it?
It turns a completed agent session into concrete findings, so developers can understand why a run was slow or incorrect and what to improve.

Skill for Cursor

Written for Cursor: installed under .cursor/.

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 →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is pwsh -NoProfile -File ./scripts/Invoke-AgentSessionAnalysis.ps1 -Latest.

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-session-review/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-agent-session-review

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/quickerhub/quicker-rpc/quicker-agent-session-review"><img src="https://agentmods.dev/badge/skills/quickerhub/quicker-rpc/quicker-agent-session-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 61 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 977 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.00061 $0.00977
Opus 5 $0.00030 $0.00489
Sonnet 5 $0.00012 $0.00195
Haiku 4.5 $0.00006 $0.00098

Measured 10d ago against content hash 4b5b7c973661, 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-session-review 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-session-review/SKILL.md · 97 lines

How it starts

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

QuickerAgent Session Review

Offline analysis of exported chat threads to improve prompts, skills, tools, and agent flow.

When to use

  • User attaches or paths to quicker-agent-*.json under QuickerAgent exports
  • User asks to optimize agent-gui after a failed or inefficient authoring session
  • After manual benchmark runs — explain why the trace was slow or wrong

Input format

Exports use format: "quicker-agent-chat-export" (see agent-gui/lib/chat-thread-export.ts).

Required fields: thread, stats, messages[] with assistant tool-* parts and optional metadata.contextReport / agentTurnState.

Workflow

  1. Validate export format/version.
  2. Extract user prompt, tool timeline (with errors), token metrics, runtime metadata.
  3. Run rules
    • Session rules: agent-gui/lib/agent-session-analysis/session-rules.ts
    • E-axis trace rubric: agent-gui/lib/agent-eval/trace-rubric.ts
  4. Match user prompt to authoring-tasks.json when possible.
  5. Report markdown + optimization hints mapped to repo paths.
  6. Optional F-axis: if an action id is known, run it through the real Quicker host with qkrpc action run --id <guid> --debug --wait --json and inspect the trace/output.

CLI (deterministic)

From repo root:

pwsh -NoProfile -File ./scripts/Invoke-AgentSessionAnalysis.ps1 -Latest
pwsh -NoProfile -File ./scripts/Invoke-AgentSessionAnalysis.ps1 -ExportPath "C:\...\quicker-agent-*.json"

From agent-gui/:

pnpm agent-session -- --latest
pnpm agent-session -- "C:\Users\...\exports\quicker-agent-*.json"
pnpm agent-session -- export.json --json

Cursor slash command: /session-analysis

Exit code 1 when trace rubric fails or severity=error findings exist.

Report sections

Section Content
Summary tokens, tool count, intent, matched benchmark task
Tool timeline ordered calls, ERROR markers
Findings session rules + E-axis violations
Optimization hints ranked targets (instructions, skills, tools, Plugin)

Read the full file on GitHub · 97 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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 · 97 lines · 61 tokens per session scan A 4b5b7c973661

Subscribe to this mod's changes

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