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/javascript-sastnpx skills add vladkesler/initrunner --skill javascript-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.00031 | $0.00532 |
| Opus 5 | $0.00015 | $0.00266 |
| Sonnet 5 | $0.00006 | $0.00106 |
| Haiku 4.5 | $0.00003 | $0.00053 |
Grade A, and why
javascript-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 — 79 lines — stays where its author put it; the contents beside it link to each section on GitHub.
JavaScript and Node.js security scanning skill.
When to activate
Use this skill when the repository contains package.json or package-lock.json.
Scanner commands
Dependency audit
npm audit --json 2>/dev/null
Returns advisories with severity, module_name, title, url, and findings[].paths showing which dependencies pull in the vulnerable package.
Source pattern scan
rg -n 'eval\(|innerHTML\s*=|dangerouslySetInnerHTML|document\.write\(' \
--glob '*.{js,ts,jsx,tsx}' \
--glob '!node_modules/**' \
--glob '!*.test.*' \
--glob '!*.spec.*'
Parsing npm audit output
The JSON output contains an advisories object keyed by advisory ID.
Each advisory has:
severity-- critical, high, moderate, lowmodule_name-- the vulnerable packagetitle-- vulnerability descriptionurl-- link to the advisoryfindings[].paths-- dependency paths that include this package
Focus on production dependencies. Skip devDependency-only findings.
Verification
For source pattern matches, read 10-15 lines of surrounding context:
- Is the argument to eval() a variable or a constant string?
- Is innerHTML assigned from user input, URL params, or API response?
- Is there DOMPurify or other sanitization before the assignment?
- For prototype pollution: is there a recursive merge without hasOwnProperty check on user-supplied objects?
MUST flag
eval()with variables (not constant strings)innerHTMLassigned from user input, URL params, or API response without sanitization- Prototype pollution patterns (recursive merge without hasOwnProperty)
- Missing CSRF protection on state-changing routes
- Production dependency advisories with severity high or critical
MUST NOT flag
evalin build configs (webpack.config.js, babel.config.js, jest.config.js, vite.config.ts)innerHTMLwith DOMPurify-sanitized contentdangerouslySetInnerHTMLwith compile-time constants- devDependency-only audit findings (not in production bundle)
- Test and spec files
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 · 79 lines · 31 tokens per session scan A 43a0e8899a6a
javascript-sast is a skill published in the GitHub repository vladkesler/initrunner (41 stars, last pushed 4d ago), licensed Apache-2.0. It adds 31 tokens to every session and 532 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.