Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/token-reporter:startThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Start the token-reporter server (skip if already running) and print the access URL.
Start the token-reporter server (skip if already running) and print the access URL.
node "${CLAUDE_PLUGIN_ROOT}/hooks/session-start.js" && \
node -e "
const fs = require('fs'), os = require('os'), path = require('path');
const d = process.env.TOKEN_REPORTER_DATA_DIR || path.join(os.homedir(), '.claude', 'token-reporter');
try {
const c = JSON.parse(fs.readFileSync(path.join(d, 'config.json'), 'utf8'));
console.log('Token Reporter running at http://localhost:' + c.port);
} catch { console.log('Token Reporter started.'); }
"
npx claudepluginhub jjj201200/df-market --plugin token-reporterCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.