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 skills add Wishmakingfairy/vibecheck --skill secure-keysgit clone --depth 1 https://github.com/Wishmakingfairy/vibecheckWrote 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/wishmakingfairy/vibecheck/secure-keys)<a href="https://agentmods.dev/skills/wishmakingfairy/vibecheck/secure-keys"><img src="https://agentmods.dev/badge/skills/wishmakingfairy/vibecheck/secure-keys/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/wishmakingfairy/vibecheck/secure-keys"><img src="https://agentmods.dev/badge/skills/wishmakingfairy/vibecheck/secure-keys.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.00050 | $0.00447 |
| Opus 5 | $0.00025 | $0.00224 |
| Sonnet 5 | $0.00010 | $0.00089 |
| Haiku 4.5 | $0.00005 | $0.00045 |
Grade A, and why
secure-keys 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 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.
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.
What it actually says
Secure Keys: API Key & Secret Management
The Rule
Never put secrets in code. Never put secrets in frontend bundles. Never commit secrets to git.
Framework-Specific Patterns
Next.js
- Server-only:
process.env.SECRET_KEY(no prefix, only accessible in API routes / getServerSideProps) - Client-safe:
NEXT_PUBLIC_prefix (embedded in bundle, visible to everyone) - Never:
NEXT_PUBLIC_SECRET_KEY,NEXT_PUBLIC_DATABASE_URL
Vite
- Server-only: Not accessible in client code by default
- Client-safe:
VITE_prefix (embedded in bundle) - Never:
VITE_SECRET_KEY,VITE_DB_PASSWORD
Express / Node.js
- Use
dotenv:require('dotenv').config()thenprocess.env.KEY - Production: Set env vars in hosting platform (Vercel, Railway, Render)
Supabase
- Frontend OK:
SUPABASE_ANON_KEY(public, limited by RLS) - Server ONLY:
SUPABASE_SERVICE_ROLE_KEY(bypasses ALL RLS)
Secret Rotation Checklist
- Generate new secret on the provider dashboard
- Update environment variables in production
- Deploy with new secret
- Revoke old secret
- If committed to git: consider the secret permanently compromised
.gitignore Template
.env
.env.local
.env.production
.env.*.local
*.pem
*.key
*-credentials.json
service-account.json
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 · 58 lines · 50 tokens per session scan A 81c35f9a74be
secure-keys is a skill published in the GitHub repository Wishmakingfairy/vibecheck (4 stars, last pushed 5mo ago), licensed MIT. It adds 50 tokens to every session and 447 once invoked, about $0.0003 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-31.
Other skills, from other repositories
security-sweep
Scan codebase for security vulnerabilities, hardcoded secrets, injection flaws, misconfigurations, and attack surfaces. Use when user wants a security audit, vulnerability scan, or to find security issues.
adr-skill
Create and maintain Architecture Decision Records (ADRs) optimized for agentic coding workflows. Use when you need to propose, write, update, accept/reject, deprecate, or supersede an ADR; bootstrap an adr folder and index; consult existing ADRs before implementing changes; or enforce ADR conventions. This skill uses…
terraform-skill
Terraform infrastructure as code best practices.
linear-claude-skill
Manage Linear issues, projects, and teams.
swiftui-expert-skill
Write, review, or improve SwiftUI code following best practices for state management, view composition, performance, macOS-specific APIs, and iOS 26+ Liquid Glass adoption. Use when building new SwiftUI features, refactoring existing views, reviewing code quality, or adopting modern SwiftUI patterns.
varlock-claude-skill
Secure environment variable management ensuring secrets are never exposed in Claude sessions, terminals, logs, or git commits.