Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/tahirraufkeeyu/software-development-agent-stack--sdasnpx agentmods add skills/tahirraufkeeyu/software-development-agent-stack--sdas/secret-remediationWrote 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/tahirraufkeeyu/software-development-agent-stack--sdas/secret-remediation)<a href="https://agentmods.dev/skills/tahirraufkeeyu/software-development-agent-stack--sdas/secret-remediation"><img src="https://agentmods.dev/badge/skills/tahirraufkeeyu/software-development-agent-stack--sdas/secret-remediation/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.
<a href="https://agentmods.dev/skills/tahirraufkeeyu/software-development-agent-stack--sdas/secret-remediation"><img src="https://agentmods.dev/badge/skills/tahirraufkeeyu/software-development-agent-stack--sdas/secret-remediation.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00065 | $0.03255 |
| Opus 5 | $0.00032 | $0.01628 |
| Sonnet 5 | $0.00013 | $0.00651 |
| Haiku 4.5 | $0.00006 | $0.00326 |
Grade A, and why
secret-remediation 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 8d 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.
- GitHub: `curl -H "Authorization: token <old-pat>" https://api.github.com/user` → must return 401. How it starts
The opening of the file, as written. The whole thing — 280 lines — stays where its author put it; the contents beside it link to each section on GitHub.
When to use
secret-scannerhas producedsecurity/findings/secrets.jsoncontaining one or more findings.- A collaborator has opened a ticket "leaked credential found in commit X".
- A secret-rotation deadline is approaching and you need a structured remediation pass.
- A vendor (GitHub secret scanning, AWS Trusted Advisor) has notified you of a leaked credential.
Do not use this skill to re-scan the repo — that's secret-scanner. Do not use it to triage non-secret high-entropy strings — treat those as false positives and document the allowlist decision here.
Inputs
security/findings/secrets.jsonfromsecret-scanner, or an equivalent list of findings.- Provider console access for every credential type in the findings (AWS, GitHub, Stripe, etc.). Without rotation access this skill cannot complete its primary step.
- Repo write access and
git filter-repoor BFG installed locally. - Collaborator list so notification of the forced-push can be scoped.
Outputs
security/remediation/secrets-<date>.md— the audit-trail report for this remediation cycle.- A rewritten git history on all affected branches (force-pushed) with secret values replaced.
.gitleaksignoreupdates for confirmed false positives only.- New prevention controls: pre-commit hook config, CI workflow, secret-manager entry.
Tool dependencies
gitwithgit-filter-repo(pip install git-filter-repo) or BFG Repo-Cleaner.gitleaksfor pre-commit + CI hooks.- Cloud / SaaS provider CLIs:
aws,gh,stripe,twilio,gcloud, etc. kubectlif secrets are consumed by Kubernetes workloads.- A secret manager: AWS Secrets Manager, HashiCorp Vault, Doppler, 1Password, or similar.
Procedure
- Triage. Load
security/findings/secrets.jsonand classify each finding:aws-access-key— starts withAKIA, 20 chars.github-pat— starts withghp_,gho_, orghs_.stripe-key— starts withsk_live_orsk_test_.gcp-service-account— JSON with"type": "service_account".db-connection-string—postgres://user:pass@host,mysql://…, etc.generic-high-entropy— needs a provenance check.false-positive— SRI hash, JWT in a test fixture, etc. Requires explicit evidence in the report.
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.
- 8d ago First seen · 280 lines · 65 tokens per session scan A 9e39afb3e603
secret-remediation is a skill published in the GitHub repository tahirraufkeeyu/software-development-agent-stack--sdas (18 stars, last pushed 4mo ago), licensed MIT. It adds 65 tokens to every session and 3,255 once invoked, about $0.0003 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-09-03.
Other skills, from other repositories
create-pr
Creates a GitHub PR with a Linear-ticket-prefixed title and a decision-led, narrative description for prisma-next. Use when the user wants to create a pull request, open a PR, or submit changes for review.
git-commit
Generate well-formatted git commit messages following conventional commit standards.
repo-sync
Manage repo-sync on macOS for shared documents and team context. Use when asked what repo-sync does, to automatically sync a repo, add a repo to repo-sync, stop syncing or un-sync a repo, check sync health, configure repo-sync, uninstall it, or install and maintain its bundled agent skill. Ordinary one-time Git pulls…
mcore-split-pr
Split a PR into multiple PRs to reduce the number of required CODEOWNERS reviewer groups.
contributing
How to contribute to evlog, covering commit and PR conventions, changesets, the Definition of Done, testing rules, and the authored skills that walk through building a new adapter, enricher, framework integration, or map rule. Load this for any question about contributing, opening a PR, or adding something to the…
strict-tdd
Strict RED->GREEN->REFACTOR test-driven development with enforcement. Never write production code before a failing test. Atomic commits per TDD cycle.