Stats
Actions
Tags
How this skill is triggered — by the user, by Claude, or both
Slash command
/token-reporter:auto-launch-onThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set `autoStart` to `true` so token-reporter starts automatically the next time Claude Code launches.
Set autoStart to true so token-reporter starts automatically the next time Claude Code launches.
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');
const p = path.join(d, 'config.json');
const c = JSON.parse(fs.readFileSync(p, 'utf8'));
c.autoStart = true;
fs.writeFileSync(p, JSON.stringify(c, null, 2));
console.log('Auto-launch enabled. Token Reporter will start automatically on next session.');
"
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.