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 commands/fvckprth/remediate/releasegit clone --depth 1 https://github.com/fvckprth/remediateWhat 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.00016 | $0.00819 |
| Opus 5 | $0.00008 | $0.00409 |
| Sonnet 5 | $0.00003 | $0.00164 |
| Haiku 4.5 | $0.00002 | $0.00082 |
Grade A, and why
release 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 — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release
publish a new version of remediate.
steps
-
determine version bump
- if
$ARGUMENTSispatch,minor, ormajor, use that - if
$ARGUMENTSis a specific version like0.2.0, use that exactly - if
$ARGUMENTSis empty, default topatch - if
package/package.jsonis already at the target version (e.g. an earlier session bumped it), skip step 2
- if
-
bump version in
package/package.json -
build the package
pnpm run buildfrom the repo root- if it fails, stop and report
-
publish to npm
npm publishfrompackage/- if it fails, stop and report
- capture the integrity hash and tarball URL for step 6:
npm view [email protected] dist.integrity dist.tarball
-
commit + push the widget repo
- if the working tree has uncommitted source changes that belong in this release, commit them first as a separate
fix:/feat:/refactor:commit (mirrors the project's history pattern: feature commit, then version-bump commit) - then commit the version bump alone with:
chore: bump to vX.Y.Z - if you're on a worktree branch, push with
git push origin HEAD:main(fast-forwardsorigin/mainfrom the worktree HEAD)
- if the working tree has uncommitted source changes that belong in this release, commit them first as a separate
-
update the marketing site (single commit, three file edits)
- file 1:
/Users/parthpatel/Desktop/Projects/remediate-mktg/src/components/nav-config.tsx- update the
VERSIONconstant
- update the
- file 2:
/Users/parthpatel/Desktop/Projects/remediate-mktg/package.json- bump
"remediate": "^X.Y.Z"
- bump
- file 3:
/Users/parthpatel/Desktop/Projects/remediate-mktg/package-lock.json— hand-edit only, do NOT run npm install- top-level dep range:
packages."".dependencies.remediate→^X.Y.Z - lockfile block:
node_modules/remediate→ updateversion,resolved,integrity(use the integrity from step 4)
- top-level dep range:
- CRITICAL — DO NOT run
npm install remediate@latest(or similar) on macOS. npm strips cross-platformoptionalDependencies(e.g.lightningcss-linux-x64-gnu) frompackage-lock.jsonwhen run on a single platform, and Vercel's Linux build fails with a native binary load error. Hand-editing keeps the rest of the lockfile intact. - validate before committing:
node -e "JSON.parse(require('fs').readFileSync('/Users/parthpatel/Desktop/Projects/remediate-mktg/package-lock.json'))"exits 0grep -c "node_modules/lightningcss-linux" /Users/parthpatel/Desktop/Projects/remediate-mktg/package-lock.jsonreturns ≥ 2 (cross-platform deps still present)
- commit message:
chore: bump version display + upgrade remediate to vX.Y.Z - push to origin (Vercel auto-deploys)
- file 1:
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 · 53 lines · 16 tokens per session scan A 428b3aa8c76b
release is a command published in the GitHub repository fvckprth/remediate (11 stars, last pushed 3mo ago), licensed MIT. It adds 16 tokens to every session and 819 once invoked, about $0.0001 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 commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.