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.
npx agentmods add skills/vladkesler/initrunner/python-sastnpx skills add vladkesler/initrunner --skill python-sastgit clone --depth 1 https://github.com/vladkesler/initrunnerWhat 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 | $0.00034 | $0.00589 |
| Opus 5 | $0.00017 | $0.00295 |
| Sonnet 5 | $0.00007 | $0.00118 |
| Haiku 4.5 | $0.00003 | $0.00059 |
Grade A, and why
python-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 2d 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.
How it starts
The opening of the file, as written. The whole thing — 73 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Python static analysis skill using bandit.
When to activate
Use this skill when the repository contains Python code: pyproject.toml, setup.py, requirements.txt, or .py files in the source tree.
Scanner command
bandit -r . -f json -ll --exclude .venv,tests,node_modules
The -ll flag filters to medium and higher confidence. The -f json flag
returns structured output for parsing.
Parsing output
Bandit JSON output has a results array. Each result contains:
filename-- path to the fileline_number-- line of the findingissue_severity-- HIGH, MEDIUM, LOWissue_confidence-- HIGH, MEDIUM, LOWissue_text-- description of the issuetest_id-- bandit test identifier (e.g. B301)
Key test IDs
| Test ID | Category |
|---|---|
| B101 | assert used (usually test-only) |
| B102 | exec() used |
| B301-B324 | Deserialization, SQL injection, unsafe YAML |
| B501-B507 | SSL/TLS issues |
| B601-B612 | Shell injection, subprocess |
Verification steps
For each finding:
- Read 10 lines of context around the flagged line using read_file.
- Trace backwards: where does the input come from? Follow the variable to its source (function parameter, request object, file read, etc.).
- If the input comes from user/network input (request.args, sys.argv, file read, socket, etc.), classify as HIGH confidence.
- If the input comes from a constant, config file, or environment variable, classify as MEDIUM or skip.
MUST flag
eval()orexec()with non-constant argumentspickle.loads()on network or file inputyaml.load()withoutLoader=SafeLoadersubprocesswithshell=Trueand string formatting (f"",.format(),%)- SQL queries with f-strings or
.format()using external input
MUST NOT flag
assertstatements in test files (B101)- Binding to
0.0.0.0in development configs hashlibused for checksums (not security hashing)subprocesswithshell=Trueand hardcoded constant stringsrandommodule used for non-security purposes (shuffling, sampling)
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.
- 2d ago First seen · 73 lines · 34 tokens per session scan A 6a337a6ad38d
python-sast is a skill published in the GitHub repository vladkesler/initrunner (41 stars, last pushed 4d ago), licensed Apache-2.0. It adds 34 tokens to every session and 589 once invoked, about $0.0002 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.
Other skills, from other repositories
Vizra ADK Evaluation Framework
Test and evaluate AI agents with automated evaluations, assertions, and LLM-as-a-Judge patterns.
Vizra ADK Tool Creation
Build custom tools for Vizra ADK agents - includes patterns for database, API, file, and email tools.
Vizra ADK Memory System
Implement persistent memory, session context, and vector memory (RAG) for AI agents.
Vizra ADK Workflows
Orchestrate complex multi-agent workflows - sequential, parallel, conditional, and loop patterns.
Vizra ADK Agent Creation
Create AI agents with Vizra ADK - includes patterns for customer service, data analysis, and content generation agents.
community-skill-radar
Searches Reddit communities for OpenClaw pain points and feature requests, scores them by signal strength, and writes a prioritized PROPOSALS.md for you to review and act on.