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/artttj/rapid-stack/project-recipesnpx skills add artttj/rapid-stack --skill project-recipesgit clone --depth 1 https://github.com/artttj/rapid-stackWrote 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/skills/artttj/rapid-stack/project-recipes)<a href="https://agentmods.dev/skills/artttj/rapid-stack/project-recipes"><img src="https://agentmods.dev/badge/skills/artttj/rapid-stack/project-recipes.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.00047 | $0.00518 |
| Opus 5 | $0.00023 | $0.00259 |
| Sonnet 5 | $0.00009 | $0.00104 |
| Haiku 4.5 | $0.00005 | $0.00052 |
Grade A, and why
project-recipes 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.
"cache_check": "curl -s \"$URL?v=$BUST\" | grep <marker>", What it actually says
Project recipes
Per-repo ops live in .claude/op.json, committed, never secret. SSH aliases (e.g. myhost) are fine; tokens and passwords never enter this file.
Schema
All keys optional. A command that needs a missing key runs Discovery; gated actions (deploy, publish) refuse rather than guess.
{
"serve": "python3 -m http.server 8080",
"build": "./build.sh",
"test": "python3 -m pytest -q",
"deploy": "ssh myhost 'cd /srv/www/<proj> && git pull && ./build.sh'",
"sync": { "db": "<cmd>", "images": "<cmd>", "feed": "<cmd>" },
"release": { "versions": ["package.json"], "publish": "npm publish", "verify": "<url>" },
"live_url": "https://example.com",
"cache_check": "curl -s \"$URL?v=$BUST\" | grep <marker>",
"smoke": ["<url1>", "<url2>"],
"rollback": "<cmd>"
}
$URL and $BUST are the only substitutions: the caller replaces them with live_url and a fresh cache-buster value at run time.
Discovery (on missing file or key)
- Read AGENTS.md / CLAUDE.md,
scripts/,package.json, Makefile, and any existing.claude/skills/in the repo (per-repo ops skills often already document deploy and serve). - Draft the key(s) and present them as an arrow-choice: proposed value / edit / skip.
- Write the confirmed keys to
.claude/op.json(create the file if absent, merge if present). Show the diff.
Self-heal (on a failing recipe command)
- Show the failing command and its error.
- Rediscover that key (step 1 above), propose the fix as an arrow-choice.
- Update the file on confirm, then retry once.
Hard stop: never invent a deploy, publish, or sync target that is not in the file or explicitly confirmed by the user this session.
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 · 44 lines · 47 tokens per session scan A 3b7b90157932
project-recipes is a skill published in the GitHub repository artttj/rapid-stack (2 stars, last pushed 1mo ago), licensed MIT. It adds 47 tokens to every session and 518 once invoked, about $0.0002 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-31.
Other skills, from other repositories
plannotator-annotate
Open Plannotator's annotation UI for a file, folder, or URL, then address the returned annotations.
statistical-power
Sample-size and statistical power calculations for planning studies. Use whenever someone asks "how many subjects/samples/replicates do I need", wants an a priori power analysis, a minimum detectable effect (MDE), a power curve, or needs to justify a sample size for a grant, IRB protocol, or pre-registration. Covers…
review-work
Post-implementation review orchestrator. Launches 5 parallel background sub-agents: Oracle (goal/constraint verification), Oracle (code quality), Oracle (security), unspecified-high (hands-on QA execution), unspecified-high (context mining from GitHub/git/Slack/Notion). All must pass for review to pass. MUST USE…
points-valuations
Cents-per-point (cpp) valuations across major loyalty programs from four publications. Floor/ceiling rules for deciding if a redemption is good or exceptional.
awardwallet
Query AwardWallet for loyalty program balances, elite status, and transaction history. Use when checking points inventory, airline status, or planning trips on points.
cmux-architecture
Skill "cmux-architecture" from manaflow-ai/cmux, covering cmux architecture, package architecture, layers, file organization and documentation.