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/sma1lboy/rove/pstacknpx skills add Sma1lboy/rove --skill pstackgit clone --depth 1 https://github.com/Sma1lboy/roveWhat 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.00093 | $0.01855 |
| Opus 5 | $0.00046 | $0.00928 |
| Sonnet 5 | $0.00019 | $0.00371 |
| Haiku 4.5 | $0.00009 | $0.00186 |
Grade A, and why
pstack 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 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.
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.
How it starts
The opening of the file, as written. The whole thing — 109 lines — stays where its author put it; the contents beside it link to each section on GitHub.
pstack
Rigor over throughput. The point is to write less code, and to be able to prove the code you wrote works.
Original by Lauren Tan (poteto), MIT, from the Cursor plugin marketplace. This is a port: the principles and general skills are upstream's, the orchestration around them is rewritten for Claude Code and this repo. What changed and why: ATTRIBUTION.md.
How to use it
Read the principles below. Name the ones that shaped a decision, and say which choice each one changed. A citation with no decision behind it means you did not actually apply it — that is worse than not citing, because it reads as rigor without being rigor.
For any principle you actually apply, read its leaf skill in full
(skills/principle-<name>/SKILL.md). The one-liners here are an index, not
the content.
Principles
Core
- Laziness Protocol (
principle-laziness-protocol). Refactoring, sizing a diff, or tempted to add abstractions, layers, or signal threading. Bias to deletion and the smallest change that solves the problem. - Foundational Thinking (
principle-foundational-thinking). Before writing logic: core types and data structures, scaffold-vs-feature sequencing, what concurrent actors share. - Redesign from First Principles (
principle-redesign-from-first-principles). Integrating a new requirement into an existing design. Redesign as if it had been foundational from day one. - Subtract Before You Add (
principle-subtract-before-you-add). Sequencing an addition, refactor, or rewrite. Remove dead weight first, then build on the simpler base. - Minimize Reader Load (
principle-minimize-reader-load). Reviewing or shaping code that's hard to trace. Count layers and hidden state, collapse one-caller wrappers, shrink mutable scope. - Outcome-Oriented Execution (
principle-outcome-oriented-execution). Planned rewrites and migrations with explicit phase boundaries. Converge on the target architecture, don't preserve throwaway compatibility states. - Experience First (
principle-experience-first). Product, UX, or feature-scope tradeoffs. Choose user delight over implementation convenience. - Exhaust the Design Space (
principle-exhaust-the-design-space). A novel interaction or architectural decision with no precedent. Build 2-3 competing prototypes and compare before committing. - Build the Lever (
principle-build-the-lever). Any non-trivial work. Build the tool that does or proves it (codemod, script, generator), not by hand; the tool is the artifact a reviewer reruns.
What ships with it
60 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.
- ATTRIBUTION.md 4.6 KB
- LICENSE 1.0 KB
- skills/architect/references/design-red-flags.md 1.9 KB
- skills/architect/references/rationale-template.md 3.0 KB
- skills/architect/references/runner-prompt.md 3.0 KB
- skills/architect/SKILL.md 5.9 KB
- skills/arena/SKILL.md 5.0 KB
- skills/blast-radius/SKILL.md 4.0 KB
- skills/figure-it-out/SKILL.md 5.1 KB
- skills/how/references/critic-prompt.md 2.2 KB
- skills/how/references/critique-rubric.md 2.8 KB
- skills/how/references/explainer-prompt.md 3.0 KB
- skills/how/references/explorer-prompt.md 2.6 KB
- skills/how/SKILL.md 7.1 KB
- skills/interrogate/references/code-quality-review.md 5.2 KB
- skills/interrogate/references/lead-judgment.md 3.4 KB
- skills/interrogate/references/reviewer-prompt.md 2.7 KB
- skills/interrogate/references/rubric.md 5.0 KB
- skills/interrogate/SKILL.md 5.5 KB
- skills/no-comments/SKILL.md 2.6 KB
- skills/principle-boundary-discipline/SKILL.md 1.9 KB
- skills/principle-build-the-lever/SKILL.md 2.6 KB
- skills/principle-encode-lessons-in-structure/SKILL.md 2.2 KB
- skills/principle-exhaust-the-design-space/SKILL.md 1.1 KB
- skills/principle-experience-first/SKILL.md 1.3 KB
- skills/principle-fix-root-causes/SKILL.md 1.3 KB
- skills/principle-foundational-thinking/SKILL.md 1.8 KB
- skills/principle-guard-the-context-window/SKILL.md 1.1 KB
- skills/principle-laziness-protocol/SKILL.md 1.5 KB
- skills/principle-make-operations-idempotent/SKILL.md 1.4 KB
- skills/principle-migrate-callers-then-delete-legacy-apis/SKILL.md 1.1 KB
- skills/principle-minimize-reader-load/SKILL.md 2.1 KB
- skills/principle-model-the-domain/SKILL.md 2.1 KB
- skills/principle-never-block-on-the-human/SKILL.md 1.6 KB
- skills/principle-outcome-oriented-execution/SKILL.md 1.1 KB
- skills/principle-prove-it-works/SKILL.md 2.0 KB
- skills/principle-redesign-from-first-principles/SKILL.md 958 B
- skills/principle-separate-before-serializing-shared-state/SKILL.md 1.6 KB
- skills/principle-sequence-verifiable-units/SKILL.md 2.3 KB
- skills/principle-subtract-before-you-add/SKILL.md 1.3 KB
- skills/principle-type-system-discipline/SKILL.md 5.0 KB
- skills/show-me-your-work/references/decision-log-template.tsv 38 B
- skills/show-me-your-work/scripts/log.sh 1.2 KB runs code
- skills/show-me-your-work/SKILL.md 6.6 KB
- skills/swarm/SKILL.md 2.2 KB
- skills/tdd/SKILL.md 3.5 KB
- skills/teach/SKILL.md 6.1 KB
- skills/technical-writing/SKILL.md 11 KB
- skills/typescript-best-practices/references/patterns.md 8.5 KB
- skills/typescript-best-practices/SKILL.md 2.5 KB
- skills/unslop/SKILL.md 6.4 KB
- skills/why/references/epistemics.md 7.6 KB
- skills/why/references/investigator-prompt.md 6.8 KB
- skills/why/references/source-playbook.md 1.6 KB
- skills/why/references/sources/code-archaeology.md 3.4 KB
- skills/why/references/sources/databricks.md 6.8 KB
- skills/why/references/sources/datadog.md 5.2 KB
- skills/why/references/sources/incident-postmortem.md 1.9 KB
- skills/why/references/sources/linear.md 2.9 KB
- skills/why/references/sources/notion.md 2.8 KB
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 · 109 lines · 93 tokens per session scan A 9a16f67f2692
pstack is a skill published in the GitHub repository Sma1lboy/rove (114 stars, last pushed 2d ago), licensed MIT. It adds 93 tokens to every session and 1,855 once invoked, about $0.0005 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.
Other skills, from other repositories
token-saver-config
Configure and diagnose token-saver compression settings. Use when the user asks about adjusting compression levels, checking processor status, debugging hook issues, or reviewing savings statistics.
omd-grill
锁 plan/SDD 前的对抗式审问:沿决策树走、先给推荐答案、事实自查·技术 Decision 自裁·真 owner 岔口才阻塞问、对标外部实现逼问「为何偏离」;宽解岔口就地开 council;产决策记录表喂 /omd-contract。审议纪律:只讨论不动手。Trigger:/omd-grill、审问、盘问这个方案、把这事讨论清楚、压测计划、stress-test。.
omd-note
把定型的决策/参考资料轻量记进持久台账 docs/plan/NOTES.md,供 /omd-contract 收割。记 why 不复制内容、遮敏感信息、追加不覆盖。含 ref 职能。Trigger:/omd-note、记下来、这个决定记一下、留个引用。.
omd-recall
主动召回 omd 自记忆:推理/写作/决策卡住时主动查既有事实,不等被动触发。经 memoryrecall 语义+词法混合检索,回带 confidence + source。Trigger:/omd-recall、查历史、以前怎么做的、翻一下记忆、有没有先例。.
vf-ext-development
Use when creating, modifying, testing, or publishing a Veryfront extension under extensions/ — covers manifest/factory parity, capability types, contract registration, teardown hygiene, and CI lint checks.
vf-error-handling
Use when creating new errors, migrating error classes to registry, catching/handling errors, or working with the VeryfrontError system.