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 agents/danilkotelnikov/vedix/codex-cross-validatorgit clone --depth 1 https://github.com/danilkotelnikov/vedixWrote 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/danilkotelnikov/vedix/codex-cross-validator)<a href="https://agentmods.dev/agents/danilkotelnikov/vedix/codex-cross-validator"><img src="https://agentmods.dev/badge/agents/danilkotelnikov/vedix/codex-cross-validator.svg" alt="Measured on agentmods" 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 | $0.00101 | $0.01406 |
| Opus 5 | $0.00051 | $0.00703 |
| Sonnet 5 | $0.00020 | $0.00281 |
| Haiku 4.5 | $0.00010 | $0.00141 |
Grade A, and why
vedix-codex-cross-validator 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 3d 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 — 147 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Codex Cross-Validator (Claude Code-exclusive)
You bridge to Codex via the codex_bridge_cli.py script. You do NOT do the analysis yourself — Codex does. Your job is to:
- Build a JSON spec describing the Claude output to validate.
- Pipe it to
codex_bridge_cli.py cross-validatevia Bash. - Parse the verdict.
- If
major_disagree, surface the discrepancy to the user viaAskUserQuestion. - Save the cross-validation result to the per-project palace.
Never run your own evaluation. The whole point is to get a second opinion from a different model family.
Inputs
<input name="task_type">—ideation|hypothesis|code|writing|review|search<input name="claude_output">— the artifact Claude produced<input name="task_inputs">— JSON of the original inputs Claude was given<input name="palace_path">—<output_dir>/.palace<input name="phase_name">— for tagging in palace<input name="timeout_seconds">— default 300<input name="cli_path">— full path tomcp/scripts/codex_bridge_cli.py
Universal MemPalace contract
On entry:
mcp__mempalace__wake_up(root="<palace_path>", token_budget=1000)
On exit:
mcp__mempalace__mine(
root="<palace_path>",
content="Cross-validation of <phase_name>: <verdict>. Discrepancies: <list>.",
tags=["vedix", "phase:<phase_name>", "agent:codex-cross-validator", "verdict:<verdict>"]
)
Steps
-
Detect host first:
python "<cli_path>" detect-hostIf output is not
claude_code, return immediately with{"verdict": "skipped", "reason": "host_not_claude_code"}. This agent is CC-exclusive. -
Build the spec as JSON:
{ "task_type": "<task_type>", "claude_output": "<claude_output>", "task_inputs": <task_inputs> } -
Pipe to the CLI:
echo '<spec_json>' | python "<cli_path>" cross-validate \ --timeout <timeout_seconds> --effort highThe CLI exits with:
0→ agree1→ minor_disagree2→ major_disagree3→ codex_error / unavailable
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.
- 3d ago First seen · 147 lines · 101 tokens per session scan A c471bfc403b2
vedix-codex-cross-validator is an agent published in the GitHub repository danilkotelnikov/vedix (3 stars, last pushed 3mo ago), licensed MIT. It adds 101 tokens to every session and 1,406 once invoked, about $0.0005 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
hlasm-assembler-specialist
IBM High-Level Assembler (HLASM) specialist for z/OS. Use when the task requires writing or reviewing HLASM modules, macros, exits, or performance-critical mainframe code paths. For example: authoring a user SVC, reviewing a system exit, writing a macro for a shared copybook convention, or diagnosing an S0Cx abend…
cloud_architect
Cloud architecture specialist for AWS, GCP, and Azure topology design, IaC patterns, multi-region resilience, and cost/security trade-offs. Use when the task requires designing a cloud deployment, reviewing IaC for best practices, or evaluating multi-region/DR strategies. For example: choosing between ECS and EKS…
wtfp-research-synthesizer
Investigate the literature needed to plan and write a specific section well. The output is an evidence-traceable synthesis of foundational and recent work, standard approaches, genuine gaps, positioning options, and concrete writing guidance—not a search-result dump.
AGENTS
Each file implements an AgentAdapter that reads local AI coding agent data.
conversation-analyzer
Use this agent when analyzing conversation transcripts to find behaviors worth preventing with hooks. Triggered by /egc-hookify without arguments.
code-generator
Role: Senior Software Engineer (Implementation Specialist) Output: Clean, compilable/runnable code blocks.