bob-security

bob-security is a skill for Claude Code, Codex from PounceAI/bob-control. It costs 103 tokens per session (1,315 once invoked), scanned A, original, Apache-2.0.

A request route for IBM Bob’s DevSecOps mode, which reviews code for security problems such as vulnerabilities, unsafe patterns, exposed secrets, and dependency risks.

In plain words
What is it for?
Use it when you explicitly want IBM Bob to perform a security review or scan and remediate the results.
Why use it?
It brings security checks into coding work and can have Bob fix the issues it finds.

Skill for Claude CodeCodex

Part of the bob-companion plugin — 4 skills, 8 commands, 1 agent, 1 MCP server shipped together

Install

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.

agentmods
npx agentmods add skills/pounceai/bob-control/bob-security
Any agent
npx skills add PounceAI/bob-control --skill bob-security
Clone the repo
git clone --depth 1 https://github.com/PounceAI/bob-control

Made for: Claude Code, Codex.

Or install bob-companion, the plugin that ships this one along with the rest of its 4 skills, 8 commands, 1 agent, 1 MCP server.

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 bob-security

README.md
[![agentmods](https://agentmods.dev/badge/skills/pounceai/bob-control/bob-security.svg)](https://agentmods.dev/skills/pounceai/bob-control/bob-security)
Your own site
<a href="https://agentmods.dev/skills/pounceai/bob-control/bob-security"><img src="https://agentmods.dev/badge/skills/pounceai/bob-control/bob-security.svg" alt="Measured on agentmods" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,315 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 $0.00103 $0.01315
Opus 5 $0.00051 $0.00658
Sonnet 5 $0.00021 $0.00263
Haiku 4.5 $0.00010 $0.00131

Measured 4d ago against content hash e6d1151b555e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

bob-security 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 4d 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.

claude-plugin/skills/bob-security/SKILL.md · 66 lines

How it starts

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

You are the foreman. The user wants IBM Bob to do security / DevSecOps work. Bob runs this in its devsecops mode — security embedded in coding (IBM's shift-left model): it reads code, runs analysis/scan commands, and edits code to remediate the vulnerabilities it finds (standard risk, write-capable). The auto-dispatch worker's LLM judge verifies the fix diff, so phrase the task as "find and fix", not just "report".

Do this:

  1. Get board state in one call. Call board_status — it returns open_tasks (the live, non-terminal tasks) for the dedup check and worker_draining for step 4. Scan open_tasks for a near-identical pending security task; if one exists, skip creating another and point the user at it. (Ignore a blocked/needs_input near-match — it can't be pulled, so deduping against it would dead-end the request.) Only if open_tasks_truncated is true and you're unsure, fall back to list_tasks {status: 'pending'}. worker_draining is a step-1 snapshot — keep it for step 4 rather than re-calling board_status.

  2. Decide the scope — let Bob gather it itself. devsecops mode has the read + command groups (it can run git diff / scans itself), so hand it the scope, don't embed a big diff. Either a diff (recent changes) — name the files in scope and tell Bob to review them via git diff HEAD -- <files> (or an explicit git diff <range>) — or a target area (paths / subsystem). Only embed a fenced ```diff (bounded to ~12,000 chars, note truncation) when there's no git scope to point at, e.g. a diff pasted into the request.

  3. Shape the security task with create_task:

    • mode: devsecops.
    • title: specific, e.g. Security review: auth + input handling in src/api.
    • tags: ['security'] (+ a domain tag when obvious). If step-1 worker_draining shows a tag-pinned drainer serving this checkout, add its pin tag too — a worker only pulls tasks whose tags include its pin, else the task sits pending.
    • priority: high for anything the user frames as a vuln/incident, else medium.
    • description: what to inspect (injection, authz, secrets/credentials, unsafe deserialization, path traversal, dependency risk, etc.), the scope (the git command + file list, or the fenced ```diff only if embedding), and ask Bob to fix the vulnerabilities it finds highest-severity first, and summarize what it changed (noting anything it flagged but deliberately left unfixed).
  4. Wait for Bob, then surface what was fixed. Report the new task id and that it routes to {devsecops}. Use the worker_draining from step 1 (it reflects a 2.0 in-process loop as well as a 1.x worker): if worker_draining.draining is false, nothing is draining the board — say it's queued as #id and tell the user to start a drainer (open the repo in a Bob 2.0 window, whose in-process loop drains automatically, or run a 1.x worker via launch-worker.cmd), then stop. Otherwise a drainer is live and step 3 tagged the task to its pin, so don't report "queued" for a tag-pinned drainer — call await_task {task_id: id}. It blocks until the drainer runs the task and Bob settles it, so the result comes back this turn:

    • done → present what Bob fixed from the task result (highest-severity first), plus any residual risks it flagged. The diff is on the working tree for the user to review.
    • waiting (poll window elapsed) → call await_task again; keep waiting while Bob works. If it stays waiting across several calls, nothing is draining the board — say it's queued as #id; start a drainer (as above) or check /bob-board.
    • needs_input → Bob asked a question (in the response). A 1.x worker parks it on the board — surface it; once the user answers (answer_task_question) call await_task again. A 2.0 in-process Bob has no board reply channel, so surface the question for the user to steer in Bob's window (or re-file a follow-up with the answer baked in). blocked / cancelled → report Bob stopped, with the note reason.

Read the full file on GitHub · 66 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. 4d ago First seen · 66 lines · 103 tokens per session scan A e6d1151b555e

Subscribe to this mod's changes

bob-security is a skill published in the GitHub repository PounceAI/bob-control (1 stars, last pushed 21d ago), licensed Apache-2.0. It adds 103 tokens to every session and 1,315 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.

Related

Other skills, from other repositories

evolve

Research-driven multi-cycle improvement director. Forms causal hypotheses about why scores are low, validates them with scout agents before attacking, dispatches axis-parallel fleet attacks, extracts transferable patterns, and runs indefinitely within a budget envelope. Accumulates a persistent belief model and…

SethGammon/Citadel · 60 tokens

improve

Autonomous quality improvement loop. Scores a target against a rubric, selects the highest-leverage axis, attacks it, verifies, documents, and loops. No pre-planning between iterations — each loop re-scores from scratch.

SethGammon/Citadel · 48 tokens

ascii-diagram

Generate perfectly aligned ASCII diagrams — architecture, flow, sequence, box-and-arrow. Uses a programmatic character-grid approach so alignment is guaranteed by math, not token prediction. Includes post-render verification.

SethGammon/Citadel · 43 tokens

research

Focused research investigations. Converts questions into structured findings with confidence levels and source citations. Single agent by default; with --parallel (or when the question decomposes into 3+ independent angles) it spawns scout agents whose findings are compressed into a unified brief. Does not make…

SethGammon/Citadel · 67 tokens

watch

File sentinel that monitors the working directory for changes and marker comments, then auto-triggers appropriate skills. Poll-based via git diff against the last scan commit. Writes intake items for batch processing and routes marker actions through /do. Use for automatic reactions to file changes; do NOT use for…

SethGammon/Citadel · 70 tokens

pr-watch

Local PR watcher. Monitors CI status, automatically fixes failing checks by reading failure logs and applying targeted fixes, then optionally merges when all checks pass. Local CLI analog to Claude Code's cloud auto-fix feature.

SethGammon/Citadel · 46 tokens