ingenious: Command for Claude Code

.claude/commands/quality/py-quality/bandit.md

bandit is a command for Claude Code from Insight-Services-APAC/ingenious. It costs 0 tokens per session (574 once invoked), scanned A, original, MIT.

A procedure for using Bandit, a tool that scans Python code for common security problems, and then safely addressing its findings.

In plain words
What is it for?
Use it to scan Python files, rank findings by severity, classify risks, and replace unsafe patterns such as shell execution, insecure hashing, or unsafe deserialization.
Why use it?
It helps separate real vulnerabilities from false alarms and gives each issue a documented response instead of applying unsafe blanket fixes.

Command for Claude Code

Written for Claude Code: installed under .claude/.

This is Insight-Services-APAC/ingenious's own configuration. It tells Claude Code how to work on ingenious itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything ingenious configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Insight-Services-APAC/ingenious. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Insight-Services-APAC/ingenious/main/.claude/commands/quality/py-quality/bandit.md
Clone the repo
git clone --depth 1 https://github.com/Insight-Services-APAC/ingenious

Made for: Claude Code.

Wrote 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.

agentmods badge for bandit

README.md
[![agentmods](https://agentmods.dev/badge/commands/insight-services-apac/ingenious/bandit.svg)](https://agentmods.dev/commands/insight-services-apac/ingenious/bandit)
Your own site
<a href="https://agentmods.dev/commands/insight-services-apac/ingenious/bandit"><img src="https://agentmods.dev/badge/commands/insight-services-apac/ingenious/bandit.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 574 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00574
Opus 5 $0.00000 $0.00287
Sonnet 5 $0.00000 $0.00115
Haiku 4.5 $0.00000 $0.00057

Measured yesterday against content hash 4f53ce8d1565, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

bandit 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 yesterday.

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.

.claude/commands/quality/py-quality/bandit.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Security Hardening Using Bandit

Use Bandit to detect common Python security issues and refactor code safely.

1. Run Bandit Scan

uv run bandit -q -r . -ll        # -ll => only medium+ severity (adjust as needed)
# For full context
uv run bandit -r . -f screen

If repo large, target app dirs: uv run bandit -r ingenious ingenious_extensions.

2. Parse Findings

For each issue note:

  • File:Line
  • Test ID (e.g., B303)
  • Severity / Confidence
  • Short description

Create a working list sorted: High severity first, then Medium.

3. Classify Each Finding

For each finding, assign one classification:

  • TRUE_POSITIVE - Fix immediately
  • NEEDS_REFACTOR - Create safer abstraction then fix
  • FALSE_POSITIVE - Justify and suppress locally with comment
  • ACCEPT_RISK_TEMPORARILY - Open tracking issue (include rationale + mitigation plan)

4. Fix Patterns

Common Bandit IDs and actions:

  • B303/B304 (insecure hash) → use hashlib.sha256 / blake2b
  • B102 (exec) / B602-B607 (subprocess shell) → remove shell=True, use args list
  • B301 (pickle) → replace with json / safe serializer; if unavoidable isolate & document
  • B108 (hardcoded tmp) → use tempfile module
  • B105 (hardcoded password) → move to secret manager / env var
  • B403 (import * requests) → explicit imports
  • B410 (insecure yaml.load) → use yaml.safe_load
  • B501 (request w/ verify=False) → enable cert validation or document internal CA
  • B608 (SQL injection) → parameterize queries via driver placeholders

5. Implement Fix Incrementally

For each finding fixed:

uv run pytest -q
uv run bandit -q -r <affected_paths>

Commit if clean:

git add <files>
git commit -m "security(bandit): mitigate <TestID> in <symbol>"

6. Suppressing False Positives

Use the narrowest suppression:

# nosec B608: parameterized via execute(params)

Document reasoning in code or SECURITY_NOTES.md.

7. Final Full Scan & Quality Gate

uv run bandit -r .
uv run pytest
uv run pre-commit run --all-files
uv run mypy . --exclude venv

Read the full file on GitHub · 70 lines

Changes

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.

  1. yesterday First seen · 70 lines · 0 tokens per session scan A 4f53ce8d1565

Subscribe to this mod's changes

bandit is a command published in the GitHub repository Insight-Services-APAC/ingenious (24 stars, last pushed 7mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 574 tokens. 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-09-04.