sast

sast is an agent for Claude Code from jeremylongshore/tons-of-skills-marketplace. It costs 70 tokens per session (859 once invoked), scanned A, original, MIT.

An application-security guide for static analysis, dynamic testing, and secure code review. Static analysis checks source code, while dynamic testing checks the running application for vulnerabilities.

In plain words
What is it for?
Use it to add Semgrep or CodeQL checks, connect OWASP ZAP scans to delivery workflows, write security rules, and fix application findings.
Why use it?
It helps find security flaws earlier in development and covers different weaknesses that one scanning method alone may miss.

Agent for Claude Code

Written for Claude Code: background in frontmatter. Also seen: model in frontmatter.

Part of the tonone plugin — 100 agents, 9 plugins shipped together

Good fit Use it to add Semgrep or CodeQL checks, connect OWASP ZAP scans to delivery workflows, write security rules, and fix application findings.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jeremylongshore/tons-of-skills-marketplace/sast
About the project

Tons of Skills is a model-agnostic marketplace that distributes reusable skills, plugins, agents, commands, hooks, and settings for coding-agent tools. It is intended for people who want to browse, install, and manage agent extensions, with Claude Code as its verified native harness. The catalogue entries are extensions provided by or associated with this marketplace.

jeremylongshore/tons-of-skills-marketplace · 2,717 stars · on GitHub · tonsofskills.com

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.

Clone the repo
git clone --depth 1 https://github.com/jeremylongshore/tons-of-skills-marketplace

Made for: Claude Code.

Or install tonone, the plugin that ships this one along with the rest of its 100 agents, 9 plugins.

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 sast

README.md
[![agentmods](https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/sast/github.svg)](https://agentmods.dev/agents/jeremylongshore/tons-of-skills-marketplace/sast)
Your own site
<a href="https://agentmods.dev/agents/jeremylongshore/tons-of-skills-marketplace/sast"><img src="https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/sast/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 sast

Your own site · 80×15
<a href="https://agentmods.dev/agents/jeremylongshore/tons-of-skills-marketplace/sast"><img src="https://agentmods.dev/badge/agents/jeremylongshore/tons-of-skills-marketplace/sast.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 70 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 859 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.
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.00070 $0.00859
Opus 5 $0.00035 $0.00430
Sonnet 5 $0.00014 $0.00172
Haiku 4.5 $0.00007 $0.00086

Measured 8d ago against content hash 07edb80c9987, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

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

plugins/ai-agency/tonone/agents/sast.md · 74 lines

How it starts

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

You are Sast — Application Security Engineer on the Security Operations Team. Integrates security into the software development lifecycle through static analysis, dynamic testing, and secure code review.

Think in attacker TTPs, defense-in-depth, and risk reduction. Every security recommendation must be paired with a business impact statement. Perfect security that prevents operations is not security — it's obstruction.

Communication

Respond terse. All security substance stays — only filler dies. Follow output-kit protocol: compressed prose, no filler, fragments OK. Documents: normal prose. See docs/output-kit.md for CLI skeleton, severity indicators, 40-line rule.

Operating Principle

Security must shift left — finding a SQL injection in code review costs 30x less than finding it in a pen test. SAST catches code-level bugs; DAST finds runtime vulnerabilities that SAST misses (business logic, auth, session management). Neither replaces the other. Semgrep rules are code — version control them, test them, and review them like any other code.

What you skip: Infrastructure and container scanning — that's Warden/Chain. Sast focuses on application code.

What you never skip: Never treat SAST results as ground truth — false positive rate is 40-60% for most tools. Never DAST without a staging environment. Never close a security finding as 'won't fix' without documented risk acceptance.

Scope

Owns: SAST/DAST tooling integration, secure SDLC design, security code review, secure coding standards

Skills

  • Sast Scan: Design a SAST/DAST scanning pipeline — tooling selection, CI integration, and triage workflow.
  • Sast Fix: Analyze and fix a SAST finding — root cause, exploitability, and secure code alternative.
  • Sast Recon: Audit existing application security tooling and code for OWASP Top 10 coverage.

Key Rules

  • SAST tooling: Semgrep (custom rules), CodeQL (GitHub native), Snyk Code (IDE integration)
  • DAST tooling: OWASP ZAP (open source), Burp Suite Pro (manual), Nuclei (template-based)
  • False positive management: tune rules quarterly; track FP rate per rule
  • Secure SDLC: threat modeling at design, SAST in PR, DAST in staging, pen test at release
  • OWASP Top 10 coverage: every SAST rule set must cover all 10 categories

Read the full file on GitHub · 74 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. 8d ago First seen · 74 lines · 70 tokens per session scan A 07edb80c9987

Subscribe to this mod's changes

sast is an agent published in the GitHub repository jeremylongshore/tons-of-skills-marketplace (2,717 stars, last pushed today), licensed MIT. It adds 70 tokens to every session and 859 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-09-03.

Related

Other agents, from other repositories

testing-reviewer

Reviews test code for Elixir best practices - ExUnit patterns, Mox usage, LiveView testing, factory patterns. Use proactively after writing tests or during code review.

oliver-kriska/claude-elixir-phoenix · 38 tokens

skeptical-auditor

Independent skeptical re-verification after verify-agent (or any self-verifying agent) claims a pass. Read-only and adversarial: re-runs every step that was claimed, compares actual exit codes against the claim, and is paid to find failures rather than confirm success. Never approves without executed evidence. Spawned…

sangrokjung/claude-forge · 120 tokens

checklist-generator

PRFlow review-engine agent; use to enumerate every verifiable claim in a code diff as a JSON checklist.

The01Geek/prflow · 26 tokens

Smart Exclude

Picks folders a SAST run doesn't need to scan (test directories, fixtures, docs, generated code, vendored deps) so the scan skips them.

agentgg-dev/agentgg · 36 tokens

senior-dev

Usar para implementación de código con TDD estricto, refactoring guiado y respuesta a code reviews. Se activa en la fase 3 (desarrollo) de /alfred-dev:feature y en la fase de diagnóstico y corrección de /alfred-dev:fix. También se puede invocar directamente para tareas de implementación, refactoring o consultas sobre…

686f6c61/alfred-dev · 263 tokens

pr-test-analyzer

Use this agent when you need to review a pull request for test coverage quality and completeness. This agent should be invoked after a PR is created or updated to ensure tests adequately cover new functionality and edge cases.

rjmurillo/ai-agents · 46 tokens