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 yuri-semenenko/ai-engineering-workspace --skill web-security-checklistgit clone --depth 1 https://github.com/yuri-semenenko/ai-engineering-workspaceWrote 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/yuri-semenenko/ai-engineering-workspace/web-security-checklist)<a href="https://agentmods.dev/skills/yuri-semenenko/ai-engineering-workspace/web-security-checklist"><img src="https://agentmods.dev/badge/skills/yuri-semenenko/ai-engineering-workspace/web-security-checklist.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.1 | $0.00093 | $0.02050 |
| Opus 5 | $0.00046 | $0.01025 |
| Sonnet 5 | $0.00019 | $0.00410 |
| Haiku 4.5 | $0.00009 | $0.00205 |
Grade A, and why
web-security-checklist 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.
How it starts
The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Web Security Checklist
A fast, concrete checklist for reviewing and hardening web applications. Read the relevant section for the change at hand rather than the whole file. Treat each unchecked box as a question to answer, not a box to tick blindly.
Rationalizations (read first)
Pre-written rebuttals to the excuses that precede a skipped control. If you catch yourself thinking the left column, the right column is the answer.
| Rationalization | Rebuttal |
|---|---|
| "This endpoint is internal, no auth needed." | "Internal" is a network assumption, not a guarantee. Authn + authz still apply. |
| "It's just an MVP, we'll harden later." | Auth, secrets, and injection are table stakes, not later-work. Later rarely comes. |
| "Input comes from our own frontend." | The frontend is not a trust boundary. The API is. Validate at the boundary. |
| "It's behind a login, so it's safe." | Authn ≠ authz. IDOR lives exactly here — check owner/role on every resource. |
| "The framework auto-escapes output." | Verify the sink. dangerouslySetInnerHTML, raw SQL, and template bypasses exist. |
Threat modeling (start here)
Before picking defenses, spend five minutes thinking like an attacker:
- Trust boundaries mapped (requests, file uploads, webhooks, third-party APIs, LLM output).
- Sensitive assets identified (credentials, PII, payment data, admin actions, financial transactions).
- STRIDE pass per boundary (Spoofing, Tampering, Repudiation, Information disclosure, Denial of service, Elevation of privilege).
- Abuse cases written next to use cases: "how could I misuse this?"
Pre-commit
- No secrets in the diff (
git diff --cached | grep -iE "password|secret|api_key|token"). -
.gitignorecovers.env,.env.local,*.pem,*.key. -
.env.exampleuses placeholder values only (no real secrets).
Authentication
- Passwords hashed with bcrypt (≥12 rounds), scrypt, or argon2.
- Session cookies set
httpOnly,secure,sameSite: 'lax'. - Session lifetime bounded (reasonable max-age).
- Rate limiting on the login endpoint (e.g. ≤10 attempts / 15 min).
- Password reset tokens time-bounded (≤1 hour) and single-use.
- Account lockout after repeated failures (optional, with user notice).
- MFA available for sensitive operations (recommended).
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 · 179 lines · 93 tokens per session scan A 3e6e0bc7d26c
web-security-checklist is a skill published in the GitHub repository yuri-semenenko/ai-engineering-workspace (1 stars, last pushed 8d ago), licensed MIT. It adds 93 tokens to every session and 2,050 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-31.
Other skills, from other repositories
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.
My Skill
Content here.
task-generation
Reference material with the canonical task-format grammar and decomposition rules for plan-to-tasks expansion. Loaded on demand by generate-tasks; not directly invokable.
implementation-standards
Reference material with coding standards (defensive coding, error handling, testing patterns). Loaded on demand by the Developer sub-agent (.github/agents/developer.md); not directly invokable.
spec-authoring
Reference material for writing product, technical, and operational specifications (work-item priorities, requirement families, success criteria). Loaded on demand by specify-feature; not directly invokable.
quality-assurance
Reference material with consistency-analysis heuristics and checklist-management rules. Loaded on demand by analyze-compliance and quality-control; not directly invokable.