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/hiromaily/go-crypto-walletWrote 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/commands/hiromaily/go-crypto-wallet/convert-custom-slash-for-codex)<a href="https://agentmods.dev/commands/hiromaily/go-crypto-wallet/convert-custom-slash-for-codex"><img src="https://agentmods.dev/badge/commands/hiromaily/go-crypto-wallet/convert-custom-slash-for-codex/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/commands/hiromaily/go-crypto-wallet/convert-custom-slash-for-codex"><img src="https://agentmods.dev/badge/commands/hiromaily/go-crypto-wallet/convert-custom-slash-for-codex.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.00000 | $0.02140 |
| Opus 5 | $0.00000 | $0.01070 |
| Sonnet 5 | $0.00000 | $0.00428 |
| Haiku 4.5 | $0.00000 | $0.00214 |
Grade C, and why
convert-custom-slash-for-codex scanned grade C with 2 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 10d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
- Make file readable: `chmod 644 .codex/prompts/$COMMAND_NAME.md` Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
1. Verify the converted prompt: cat .codex/prompts/$COMMAND_NAME.md How it starts
The opening of the file, as written. The whole thing — 293 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Convert Claude Command to Codex Prompt
You are tasked with converting a Claude custom slash command from .claude/commands/ to Codex-optimized prompt format for .codex/prompts/.
Parameter
- COMMAND_NAME (required): Name of the Claude command to convert (without
.mdextension)- Example:
fix-issue - Example:
fix-linter - Usage:
/convert-custom-slash-for-codex fix-issue
- Example:
Context
This repository uses both Claude (via .claude/commands/) and Codex (via .codex/prompts/). Codex prompts require:
- YAML frontmatter with
description:andargument-hint:fields - Placeholder syntax (
$1,$2,$ARGUMENTS,$NAMED_PARAM) instead of markdown parameter references - Literal dollar signs using
$$syntax
Conversion Process
Step 1: Validate Input
- Check that
COMMAND_NAMEparameter is provided - Verify source file exists:
.claude/commands/$COMMAND_NAME.md - If file doesn't exist, report error and list available commands
Step 2: Read Source Command
- Read the entire content from
.claude/commands/$COMMAND_NAME.md - Store the original content for conversion
Step 3: Extract Metadata
Description
- Extract from the first heading (without
#symbols) - If heading contains parameter placeholders, keep them for now (will convert later)
- Limit to 100-150 characters for Codex menu display
- Example:
# Fix Issue #{issue_number}→ Description:Fix Issue #{issue_number}
Argument Hints
Analyze the command content for parameter patterns:
Common Parameter Patterns:
#{issue_number}or{issue_number}→ISSUE_NUMBER=#123#{pr_number}or{pr_number}→PR_NUMBER=#456{file_path}→FILE_PATH=<path>{name}or{description}→NAME=<value>orDESCRIPTION=<value>
Argument Hint Format:
- Single parameter:
ISSUE_NUMBER=#123 - Multiple parameters:
ISSUE_NUMBER=#123 PR_NUMBER=#456 - Optional parameters:
[PARAM=<value>](use square brackets) - Required parameters:
PARAM=<value>(no brackets)
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.
- 10d ago First seen · 293 lines · 0 tokens per session scan C e55f54864652
convert-custom-slash-for-codex is a command published in the GitHub repository hiromaily/go-crypto-wallet (127 stars, last pushed 4mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,140 tokens. A static security scan graded it C with 2 findings (asks for root, reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.
Other commands, from other repositories
agent-wallet
Use the bundled agent-wallet skill to operate a non-custodial wallet directly on-chain (EVM and Bitcoin).
CLAUDE
Command "CLAUDE" from Calhooon/bsv-wallet-cli, covering commands, files, decisions, gotchas and related.
LEARNING
Command "LEARNING" from Calhooon/bsv-wallet-cli, covering learning — commands, lessons learned, debugging insights and pattern notes.
audit
Full security audit of a Solidity/Vyper/Rust contract or directory. Runs the entire vuln-skills library and dispatches DeFi specialist subagents based on detected protocol type.
audit-live
Audit a deployed contract on a live chain. Pulls verified source from the block explorer, optionally forks the chain for live-state simulation.
exploit
Generate a working Foundry PoC that exploits a specific finding. Compiles and passes.