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 skills/corridortech/posecap/ad-spikenpx skills add CorridorTech/PoseCap --skill ad-spikegit clone --depth 1 https://github.com/CorridorTech/PoseCapWhat 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.00128 | $0.01379 |
| Opus 5 | $0.00064 | $0.00690 |
| Sonnet 5 | $0.00026 | $0.00276 |
| Haiku 4.5 | $0.00013 | $0.00138 |
Grade C, and why
ad-spike scanned grade C 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 2d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- Delete the spike directory: `rm -rf spikes/NNNN-<slug>/`. How it starts
The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
<background_information> Implements WORKFLOW.md §14 (Staged Spikes With Golden Fixtures) end-to-end. The skill is for cases where the spec is clear but the technique is uncertain across multiple plausible approaches. WORKFLOW §9 (TDG) assumes the path is known and validates end-to-end; §14 assumes the path is unknown and validates per stage.
The skill creates spikes/NNNN-<slug>/ and fills it stage-by-stage. The directory is throwaway by design — when the spike concludes, an ADR records the decision and the spike directory is deleted (promote-or-delete lifecycle' '
Codex auto-trigger on description keywords is less mature than Claude Code's. If auto-invocation does not fire when the user mentions an uncertain technique or asks to evaluate approaches, invoke this skill manually. </background_information>
Tests:
- Could
ad-ground's four-source research surface a single happy path with a defensible deviation gate? If yes, run that instead. - Are there ≥2 candidate techniques with materially different trade-offs that no source resolves? If no, this is not a spike.
- Is end-to-end validation feasible without per-stage debug? If yes, this is
ad-task+ad-philosophyGoal-Driven Execution territory.
If spike warranted, confirm the recortte with the user and proceed.
Step 1 — discovery. List canonical approaches grounded in official docs and real examples. Pick one (or ≤3) by an explicit criterion.
Process:
- Search official documentation. Cite URL + version.
- Search public implementation references (open-source repos, Stack Overflow / forum answers, blog posts, gists) for solutions to the same recortte. Cite
<source>:<locator>—<repo>:<path>:<line-range>for repos,<URL>for Stack Overflow / blog / gist — and fetch via tools; never paraphrase from training memory. - Survey in-repo for analogous patterns. Cite
<file>:<line>or "no analog found". - Survey git history for prior attempts. Cite
<commit-sha>or "no prior attempt".
Output: candidate-list markdown with techniques, sources, trade-offs, selection criterion, picked technique. NO code yet. User reviews before Step 2.
Step 2 — golden fixture. Curate inputs with rich expected outputs. JSON keyed by input path (recommended). Include edge cases (low light, partial occlusion, malformed inputs, large inputs, empty inputs) and difficulty tags.
Create the spike directory:
mkdir -p spikes/NNNN-<slug>/{fixtures,debug,eval}
NNNN = next 4-digit number after highest existing under spikes/.
The fixture is the contract the pipeline validates against. Treat like spec text — should not change once the spike runs unless ground truth changes.
Step 3 — pipeline with gates. One technique per stage. Each stage emits a debug artifact making its output inspectable.
Layout:
spikes/NNNN-<slug>/
├── README.md # spike framing (Step 1 output)
├── fixtures/ # golden inputs + expected outputs
├── pipeline/ # one file per stage (01-preprocess, 02-detect, etc)
├── debug/ # per-stage debug artifacts (image / JSON / log row)
└── eval/ # evaluation results (Step 4)
Each stage takes (input, context), returns (output, debug-record). Debug-record written to debug/NN-<stage>/. Pipeline halts and reports stage on first divergence.
Step 4 — two-layer evaluation:
- End-to-end: pass rate against fixture inputs.
- Per-stage: for each input, where did pipeline diverge?
Output to spikes/NNNN-<slug>/eval/results.json:
{
"fixture": "fixtures/golden.json",
"end_to_end": { "total": 10, "passed": 7, "failed": 3 },
"per_stage": { "01-preprocess": { "passed": 10, "failed": 0 }, ... },
"failures": [{ "input": "...", "diverged_at": "02-detect", "debug_artifact": "..." }]
}
Per-stage layer is what makes the spike actionable.
What ships with it
1 file 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.
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.
- 2d ago First seen · 91 lines · 128 tokens per session scan C 0be06466fe3d
ad-spike is a skill published in the GitHub repository CorridorTech/PoseCap (190 stars, last pushed 10d ago), licensed Apache-2.0. It adds 128 tokens to every session and 1,379 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
brainstorming
You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…
agent-host-chat-contributions
Build and review cross-cutting agent-host chat behavior through lifecycle contributions. Use when adding turn lifecycle side effects, prompt or context injection, restored-history transformation, protocol-action observation, or when reviewing changes that add code to AgentSideEffects or AgentService.
auto-perf-optimize
Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.