This skill should be used when the user asks to view tracking configuration, adjust tracking settings, configure what gets tracked, change tracking verbosity, set export path, customize prompt tracking, customize source tracking, or modify .claude/.ref-config settings. Supports interactive mode with AskUserQuestion or direct key=value updates for PROMPTS_VERBOSITY, SOURCES_VERBOSITY, and EXPORT_PATH.
View on GitHubplugins/track/skills/config/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/cadrianmae/claude-marketplace/blob/main/plugins/track/skills/config/SKILL.md -a claude-code --skill configInstallation paths:
.claude/skills/config/## Current Configuration (Auto-Captured) **Prompts Verbosity**: !`grep PROMPTS_VERBOSITY .claude/.ref-config 2>/dev/null | cut -d= -f2 || echo "major (default)"` **Sources Verbosity**: !`grep SOURCES_VERBOSITY .claude/.ref-config 2>/dev/null | cut -d= -f2 || echo "all (default)"` **Export Path**: !`grep EXPORT_PATH .claude/.ref-config 2>/dev/null | cut -d= -f2 || echo "exports/ (default)"` **Config File**: !`[ -f .claude/.ref-config ] && echo "✓ Exists" || echo "✗ Not found"` ## Quick Example ```bash /track:config prompts=all sources=all # ✓ Configuration updated # PROMPTS_VERBOSITY: major → all (all requests tracked) # SOURCES_VERBOSITY: all (unchanged) /track:config # Interactive mode - uses AskUserQuestion ``` # config - View or Update Tracking Configuration View or update tracking verbosity and export configuration. ## Usage **Interactive mode (uses AskUserQuestion):** ```bash /track:config ``` **Direct mode (update immediately):** ```bash /track:config prompts=all /track:config sources=off /track:config prompts=major sources=all /track:config export_path=paper/references/ /track:config prompts=all export_path=exports/ ``` ## What it does 1. **With no arguments** - Interactive configuration: - Uses AskUserQuestion to present configuration options - Shows current settings - Allows selection of new values - Updates `./.claude/.ref-config` - Shows new configuration 2. **With arguments** - Direct update: - Parses `key=value` pairs - Updates `./.claude/.ref-config` - Validates setting values - Shows new configuration ## Configuration options ### PROMPTS_VERBOSITY Controls what prompts are tracked to `claude_usage/prompts.md`: - **`major`** (default) - Only significant multi-step academic/development work - Example: "Implement authentication system", "Debug complex algorithm" - Heuristic: Response >100 words or multiple tool uses - Best for: Academic research, project documentation - **`all`** - Track every user reques