Borrowing it
Nothing to install: this file belongs to senda-labs/DQIII8. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/senda-labs/DQIII8/main/.claude/skills/blue-team/SKILL.mdgit clone --depth 1 https://github.com/senda-labs/DQIII8Wrote 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/senda-labs/dqiii8/blue-team)<a href="https://agentmods.dev/skills/senda-labs/dqiii8/blue-team"><img src="https://agentmods.dev/badge/skills/senda-labs/dqiii8/blue-team/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/senda-labs/dqiii8/blue-team"><img src="https://agentmods.dev/badge/skills/senda-labs/dqiii8/blue-team.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.00041 | $0.00784 |
| Opus 5 | $0.00020 | $0.00392 |
| Sonnet 5 | $0.00008 | $0.00157 |
| Haiku 4.5 | $0.00004 | $0.00078 |
Grade A, and why
blue-team 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 11d 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.
Asks for rootlowPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
| File permissions | `chmod 600` on `.env`, `.db`, `.pem`, `.key` files | Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/blue-team — Defensive Security Hardening
Read the latest red-team report and systematically fix every finding.
Usage
/blue-team # Fix all findings from latest report
/blue-team $ARGUMENTS # Fix specific finding (e.g. RT-001)
Pipeline
Step 1: Load latest red-team report
ls -t tasks/audit/red-team-*.md | head -1
Read and parse all findings.
Step 2: Prioritize fixes
Order: CRITICAL → HIGH → MEDIUM → LOW
Within same severity: kill chain findings first (they have multiplied impact).
Step 3: For each finding, apply fix pattern
| Finding type | Fix pattern |
|---|---|
| SQL injection | Replace f-strings with parameterized queries (?) |
| Command injection | Use shlex.quote() on user input, whitelist commands |
| Path traversal | Use pathlib.resolve() + check prefix matches allowed dir |
| XSS | Escape HTML output with html.escape() or template engine |
| Auth bypass | Add auth decorator/middleware to unprotected routes |
| Hardcoded secrets | Move to .env, use os.environ.get() |
| Debug exposure | Remove print(error), use logging with appropriate level |
| File permissions | chmod 600 on .env, .db, .pem, .key files |
| Missing validation | Add type checks, range checks, sanitization |
| Dependency vuln | pip install --upgrade {package} |
| Vibe-coding pattern | Rewrite the specific pattern with secure alternative |
Step 4: Verify each fix
After applying a fix:
- Run the original proof-of-concept from the red-team report
- It should now FAIL (vulnerability patched)
- Run tests to ensure the fix didn't break functionality
- Document: "Finding RT-XXX: PATCHED, verified, tests pass"
python3 -m pytest tests/ -q
Step 5: Generate blue-team report
Generate: tasks/audit/blue-team-{date}.md
# Blue Team Report — {date}
Source: {red-team report filename}
## Fixes Applied
| ID | Finding | Severity | Fix | Verified | Tests |
|----|---------|----------|-----|----------|-------|
| RT-001 | SQL injection in db.py | CRITICAL | Parameterized queries | ✅ | ✅ |
| RT-002 | .env readable | HIGH | chmod 600 | ✅ | N/A |
## Kill Chains Broken
### Kill Chain 1: {name}
- Step broken at: {step N}
- Fix applied: {description}
- Chain now terminates at: {safe state}
## Remaining Risks
{Any findings that could not be fully fixed, with justification}
## Security Score
Before: {red-team score}/100
After: {blue-team score}/100
Improvement: +{delta} points
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.
- 11d ago First seen · 102 lines · 41 tokens per session scan A 672e69f570f1
blue-team is a skill published in the GitHub repository senda-labs/DQIII8 (11 stars, last pushed 23d ago), licensed MIT. It adds 41 tokens to every session and 784 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
using-adaptive-harness
Auto-mode bootstrap for adaptive-harness. Intercepts tasks, routes to optimal harness, evaluates results. Use on every task when adaptive-harness auto-mode is active.
task-taxonomy
Reference for the 6-axis task taxonomy used by adaptive-harness routing. Use when user asks how tasks are classified.
harness-registry
Manage the adaptive-harness pool: list, inspect, promote, demote harnesses. Use when user asks about harness status or wants to manage the pool.
skill-review-response
Use when a reviewer, CI bot, or another AI leaves feedback to address.
sys-configure
Configure Claude Octopus — redirects to /octo:setup interactive wizard.
continuum-tools-mcp
Connect MCP servers (Stdio/SSE/StreamableHTTP) to a Continuum agent, configure tool filtering, set up tool-context capture/injection (e.g. sessionid), and read run artifacts (UI widgets, structured tool data). Invoke when the user asks "connect MCP", "filesystem tool", "remote API tool", "auto-capture sessionid"…