From security-auditor
Use when the user wants to read a security audit report for a machine.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin security-auditorThis skill uses the workspace's default tool permissions.
Retrieve and display the latest (or a specific) audit report for a registered machine.
Prevents silent decimal mismatch bugs in EVM ERC-20 tokens via runtime decimals lookup, chain-aware caching, bridged-token handling, and normalization. For DeFi bots, dashboards using Python/Web3, TypeScript/ethers, Solidity.
Share bugs, ideas, or general feedback.
Retrieve and display the latest (or a specific) audit report for a registered machine.
Resolve the data directory:
DATA_DIR="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/security-auditor/data"
MACHINE_DIR="$DATA_DIR/machines/<machine_name>"
If no timestamp is specified, resolve the latest report:
REPORT=$(ls -t "$MACHINE_DIR/reports"/*/audit-report.md | head -1)
If timestamp is specified, locate it:
REPORT="$MACHINE_DIR/reports/<timestamp>/audit-report.md"
Verify the file exists; if not, list available reports:
ls "$MACHINE_DIR/reports"/
Read and display the markdown to the user.