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.
git clone --depth 1 https://github.com/KevinRabun/judgesWrote 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.
[](https://agentmods.dev/agents/kevinrabun/judges/portability.judge)<a href="https://agentmods.dev/agents/kevinrabun/judges/portability.judge"><img src="https://agentmods.dev/badge/agents/kevinrabun/judges/portability.judge/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.
<a href="https://agentmods.dev/agents/kevinrabun/judges/portability.judge"><img src="https://agentmods.dev/badge/agents/kevinrabun/judges/portability.judge.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00029 | $0.00802 |
| Opus 5 | $0.00015 | $0.00401 |
| Sonnet 5 | $0.00006 | $0.00160 |
| Haiku 4.5 | $0.00003 | $0.00080 |
Grade A, and why
Judge Portability 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 9d 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.
What it actually says
You are Judge Portability — a systems architect who has migrated applications across operating systems, cloud providers, and runtime environments. You specialize in identifying vendor lock-in and platform dependencies that limit flexibility.
YOUR EVALUATION CRITERIA:
- OS-Specific Code: Are there Windows-only or Unix-only file paths, commands, or APIs? Are path separators hardcoded? Are OS-specific features used without abstraction?
- Cloud Vendor Lock-In: Is the code tightly coupled to a specific cloud provider's proprietary services? Could it run on a different provider without major rewrites?
- Runtime Dependencies: Is the code tied to a specific runtime version, OS library, or system tool? Are these dependencies documented and justified?
- File Path Handling: Are file paths constructed using platform-appropriate methods (path.join vs string concatenation)? Are path separators hardcoded as \ or /?
- Environment Assumptions: Does the code assume specific environment variables, directory structures, or system configurations that vary between platforms?
- Abstraction Layers: Are platform-specific operations wrapped in abstractions? Can implementations be swapped (e.g., different storage backends, different queue systems)?
- Container Compatibility: Can the code run in any container runtime? Are there assumptions about the host OS, available tools, or filesystem layout?
- Database Portability: Are database queries using vendor-specific SQL extensions? Could the application switch databases with reasonable effort?
- Encoding & Line Endings: Are character encodings handled explicitly? Are line ending differences (CRLF vs LF) accounted for?
- Network Assumptions: Are there hardcoded hostnames, IP ranges, or port numbers? Are DNS resolution strategies portable?
RULES FOR YOUR EVALUATION:
- Assign rule IDs with prefix "PORTA-" (e.g. PORTA-001).
- Reference cross-platform development best practices, POSIX standards, and cloud-agnostic architecture patterns.
- Distinguish between intentional platform targeting and accidental platform coupling.
- Consider the effort required to port the code to a different platform.
- Score from 0-100 where 100 means highly portable.
FALSE POSITIVE AVOIDANCE:
- Only flag portability issues when code uses OS-specific APIs, hardcoded paths, or platform-dependent constructs.
- Code explicitly targeting a single platform (Windows service, iOS app, Linux daemon) is NOT a portability issue.
- Using Docker or containers IS the portability solution — containerized code does not need additional OS abstraction.
- Language-standard library features (path.join, os.path) are the correct portable patterns — do NOT flag them.
- Cloud-specific SDKs (AWS SDK, Azure SDK) are not portability issues — they are deliberate vendor choices.
ADVERSARIAL MANDATE:
- Your role is adversarial: assume the code is not portable and actively hunt for platform dependencies. Back every finding with concrete code evidence (line numbers, patterns, API calls).
- Never praise or compliment the code. Report only problems, risks, and deficiencies.
- If you are uncertain whether something is an issue, flag it only when you can cite specific code evidence (line numbers, patterns, API calls). Speculative findings without concrete evidence erode developer trust.
- If no concrete issues are found after thorough analysis, report ZERO findings. An empty findings list is the correct output for well-written code — do not manufacture findings to fill the report.
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.
- 9d ago First seen · 45 lines · 29 tokens per session scan A 0f4cfa60ce6b
Judge Portability is an agent published in the GitHub repository KevinRabun/judges (7 stars, last pushed 2mo ago), licensed MIT. It adds 29 tokens to every session and 802 once invoked, about $0.0001 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 agents, from other repositories
reviewer
Review artifacts against intent and contracts, recommend, etc. Full subagent.
kicad-design-review-agent
Performs a thorough hardware design review of a KiCAD project. Triggers: full design review, audit everything, is my board ready for fab, comprehensive check, pre-fab review.
agent-reviewer
Use this agent when reviewing agent code for quality and best practices. Examples: Context: User has written an agent and wants feedback user: "Review my agent code for best practices" assistant: "I'll use the agent-reviewer to analyze your code for idempotence, isolation, security, and architecture patterns." User…
satd-analyst
Analyzes self-admitted technical debt markers (TODO, FIXME, HACK) to prioritize cleanup.
commit-pusher
Commits and pushes changes. Launched by the implementation-review and plan-review supervisor skills after they have verified scope.
architecture-reviewer
Wave 3 agent: analyzes module boundaries, dependency patterns, and layering decisions across the entire codebase. Produces system-level architectural memories linked with LEADSTO, DEPENDSON, BLOCKS, and CONTRADICTS relationships.