ship-safe-deep

ship-safe-deep is a skill for Claude Code from asamassekou10/ship-safe. It costs 52 tokens per session (743 once invoked), scanned A, original, MIT.

A more thorough security scan that uses an AI model to check whether suspected data flows can actually reach an exploitable problem. Taint analysis traces potentially unsafe input through code.

In plain words
What is it for?
Use it when a normal audit needs deeper verification, with a remote AI provider or a local Ollama model.
Why use it?
It can confirm which findings are reachable and exploitable, reducing false alarms compared with pattern matching alone.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: mentions Claude Code.

Part of the ship-safe plugin — 9 skills shipped together

Good fit Use it when a normal audit needs deeper verification, with a remote AI provider or a local Ollama model.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/asamassekou10/ship-safe/ship-safe-deep
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.

Any agent
npx skills add asamassekou10/ship-safe --skill ship-safe-deep
Clone the repo
git clone --depth 1 https://github.com/asamassekou10/ship-safe

Made for: Claude Code.

Or install ship-safe, the plugin that ships this one along with the rest of its 9 skills.

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 ship-safe-deep

README.md
[![agentmods](https://agentmods.dev/badge/skills/asamassekou10/ship-safe/ship-safe-deep/github.svg)](https://agentmods.dev/skills/asamassekou10/ship-safe/ship-safe-deep)
Your own site
<a href="https://agentmods.dev/skills/asamassekou10/ship-safe/ship-safe-deep"><img src="https://agentmods.dev/badge/skills/asamassekou10/ship-safe/ship-safe-deep/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.

agentmods 80×15 button for ship-safe-deep

Your own site · 80×15
<a href="https://agentmods.dev/skills/asamassekou10/ship-safe/ship-safe-deep"><img src="https://agentmods.dev/badge/skills/asamassekou10/ship-safe/ship-safe-deep.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 743 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 28
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 33
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 38
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00052 $0.00743
Opus 5 $0.00026 $0.00371
Sonnet 5 $0.00010 $0.00149
Haiku 4.5 $0.00005 $0.00074

Measured 11d ago against content hash 330231d61bf1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

ship-safe-deep 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 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.

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-code-plugin/skills/ship-safe-deep/SKILL.md · 85 lines

How it starts

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

Ship Safe — Deep Analysis (LLM-Powered)

You are a senior security engineer running Ship Safe's deep analysis mode, which combines regex-based scanning with LLM-powered taint verification.

Step 1: Check for LLM provider

Deep analysis requires either:

  • An API key: ANTHROPIC_API_KEY, OPENAI_API_KEY, or GOOGLE_API_KEY
  • Ollama running locally (use --local flag)

Check if the user has a provider available:

echo "ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:+set}" "OPENAI_API_KEY=${OPENAI_API_KEY:+set}" "GOOGLE_API_KEY=${GOOGLE_API_KEY:+set}"

If no key is set, ask the user if they want to use --local (requires Ollama) or set an API key.

Step 2: Run the deep audit

npx ship-safe@latest audit $ARGUMENTS --deep --json --no-ai 2>/dev/null

For local Ollama:

npx ship-safe@latest audit $ARGUMENTS --deep --local --json --no-ai 2>/dev/null

With budget control:

npx ship-safe@latest audit $ARGUMENTS --deep --budget 100 --json --no-ai 2>/dev/null

Step 3: Interpret deep analysis results

Findings with deepAnalysis have LLM-verified taint information:

{
  "deepAnalysis": {
    "tainted": true,
    "sanitized": false,
    "exploitability": "confirmed",
    "reasoning": "User input from req.body flows to SQL query without parameterization"
  }
}

Exploitability levels:

  • confirmed: Clear, unsanitized path from user input to dangerous sink — fix immediately
  • likely: Probable taint path but LLM could not fully trace it — investigate
  • unlikely: Taint path exists but sanitization or context makes exploitation difficult
  • false_positive: No real vulnerability — static value, test code, or properly sanitized

Step 4: Present results

For each finding with deep analysis:

  1. Show the exploitability verdict prominently
  2. Include the LLM's reasoning
  3. For "confirmed" findings, read the source file and offer a specific fix
  4. For "false_positive" findings, note they can be baselined

Group findings by exploitability (confirmed first, then likely, then unlikely).

Read the full file on GitHub · 85 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. 11d ago First seen · 85 lines · 52 tokens per session scan A 330231d61bf1

Subscribe to this mod's changes

ship-safe-deep is a skill published in the GitHub repository asamassekou10/ship-safe (842 stars, last pushed 3d ago), licensed MIT. It adds 52 tokens to every session and 743 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-30.

Related

Other skills, from other repositories