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/makigjuro/cloudstack-ai-plugins/code-reviewnpx skills add makigjuro/cloudstack-ai-plugins --skill code-reviewgit clone --depth 1 https://github.com/makigjuro/cloudstack-ai-pluginsWhat 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.00053 | $0.01849 |
| Opus 5 | $0.00026 | $0.00924 |
| Sonnet 5 | $0.00011 | $0.00370 |
| Haiku 4.5 | $0.00005 | $0.00185 |
Grade A, and why
code-review 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 yesterday.
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 — 254 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Code Review
Perform a comprehensive code review of changes on the current branch compared to main. This skill can be invoked standalone or used as part of /complete-task.
Arguments
--security-only-- Focus only on security issues--architecture-only-- Focus only on architecture violations--diff {base}-- Compare against a specific base (default: origin/main){files}-- Review only specific files (space-separated)
Configuration
Read cloudstack.json from the project root if it exists. Extract:
SOLUTION=backend.solutionPathSERVICES=backend.services[]
If cloudstack.json does not exist, auto-detect by scanning the project structure.
Process
Step 1: Gather Changes
# Get list of changed files
git diff origin/main...HEAD --name-only
# Get full diff for analysis
git diff origin/main...HEAD
# Get commit messages for context
git log origin/main..HEAD --oneline
Step 2: Security Review
Check for OWASP Top 10 vulnerabilities:
Injection (A03:2021)
- SQL: Look for string concatenation in queries, raw SQL without parameters
- Command: Look for
Process.Start,Bashwith user input - Search patterns:
FromSqlRaw,ExecuteSqlRaw, string interpolation in queries
Broken Authentication (A07:2021)
- Hardcoded credentials, API keys, connection strings
- Missing authorization attributes on endpoints
- Weak password validation
Sensitive Data Exposure (A02:2021)
- Logging sensitive data (passwords, tokens, PII)
- Returning sensitive fields in API responses
- Missing encryption for sensitive storage
Security Misconfiguration (A05:2021)
- Debug mode enabled in non-dev code
- Overly permissive CORS
- Missing security headers
- Default credentials
XSS (A03:2021)
- React:
dangerouslySetInnerHTMLwithout sanitization - Unescaped user input in responses
Step 3: Architecture Review
Use bash-based checks for automated validation, then supplement with manual review.
Hexagonal Architecture -- validate layer dependencies:
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.
- yesterday First seen · 254 lines · 53 tokens per session scan A 613fcc120bb6
code-review is a skill published in the GitHub repository makigjuro/cloudstack-ai-plugins (1 stars, last pushed 1mo ago), licensed MIT. It adds 53 tokens to every session and 1,849 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-31.
Other skills, from other repositories
azure-mgmt-botservice-dotnet
Azure Resource Manager SDK for Bot Service in .NET. Management plane operations for creating and managing Azure Bot resources, channels (Teams, DirectLine, Slack), and connection settings. Triggers: "Bot Service", "BotResource", "Azure Bot", "DirectLine channel", "Teams channel", "bot management .NET", "create bot".
golden-rss
Use when testing the rss golden build.
refresh-arm-sdk-release
WORKFLOW SKILL — Prepares Azure.ResourceManager SDK refresh pull requests in azure-sdk-for-net. WHEN: "prepare sdk refresh", "refresh Azure.ResourceManager package", "update ARM SDK from autorest tag", "refresh changelog dependencies". INVOKES: git and GitHub pull request tools for branch, commit, push, and PR…
azsdk-common-pipeline-analysis
Analyze Azure SDK CI/CD pipeline failures into a structured diagnosis, and define the required output format. Load this skill before calling azsdkanalyzepipeline, which returns raw failure data that this skill interprets and formats. USE FOR: "pipeline failed", "build failure", "CI check failing", "tests failing in…
run-tests
Run project tests using Maven (mvn). Use when the user asks to run tests.
omh-code-review
This is a Hermes-native code-review workflow skill.