From security-auditor
Use when the user wants to deregister a machine from the fleet.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin security-auditorThis skill uses the workspace's default tool permissions.
Deregister a machine from the fleet. The profile and audit reports are archived (not deleted) for compliance and historical reference.
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.
Deregister a machine from the fleet. The profile and audit reports are archived (not deleted) for compliance and historical reference.
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>"
TRASH_DIR="$DATA_DIR/.trash"
Verify the machine exists:
[ -d "$MACHINE_DIR" ] || { echo "Machine not found"; exit 1; }
Prompt for confirmation. If the user declines, abort.
Archive the profile:
mkdir -p "$TRASH_DIR"
TIMESTAMP=$(date -u +%Y-%m-%dT%H:%M:%SZ)
mv "$MACHINE_DIR" "$TRASH_DIR/<machine_name>-$TIMESTAMP"
Confirm removal to the user and show the archive path.
${CLAUDE_USER_DATA}/security-auditor/data/.trash/<machine_name>-<timestamp>/