Stats
Actions
Tags
Help us improve
Share bugs, ideas, or general feedback.
From interstat
Show API-equivalent cost analysis with model-specific pricing and subscription leverage
npx claudepluginhub mistakeknot/interagency-marketplace --plugin interstatHow this skill is triggered — by the user, by Claude, or both
Slash command
/interstat:costThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Calculate API-equivalent costs from interstat token data using model-specific Anthropic pricing.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Calculate API-equivalent costs from interstat token data using model-specific Anthropic pricing.
Invoke when the user wants to:
Arguments:
0 for all-time.--json for machine-readable output/interstat:analyze recently, suggest it first.DAYS="${args:-30}"
if [ "$DAYS" = "0" ]; then DAYS_FLAG="--days 0"; else DAYS_FLAG="--days $DAYS"; fi
cd ${CLAUDE_PLUGIN_ROOT} && uv run scripts/cost.py $DAYS_FLAG --subscription 600
Note: --subscription 600 assumes 3x Claude Max ($200 each). Adjust if the user specifies differently.--json is in args, add --format json to the command./interstat:analyze first.