**Prompts Verbosity**: !`grep PROMPTS_VERBOSITY .claude/.ref-config 2>/dev/null | cut -d= -f2 || echo "major (default)"`
Manages tracking configuration for prompt and source logging with interactive or direct updates.
npx claudepluginhub cadrianmae/claude-marketplacePrompts 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"
/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
View or update tracking verbosity and export configuration.
Interactive mode (uses AskUserQuestion):
/track:config
Direct mode (update immediately):
/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/
With no arguments - Interactive configuration:
./.claude/.ref-configWith arguments - Direct update:
key=value pairs./.claude/.ref-configControls what prompts are tracked to claude_usage/prompts.md:
major (default) - Only significant multi-step academic/development work
all - Track every user request
minimal - Only explicitly user-requested tracking
off - Disable prompt tracking completely
Controls what sources are tracked to claude_usage/sources.md:
all (default) - Track all WebSearch/WebFetch/Read/Grep operations
off - Disable source tracking completely
Default directory for /track:export command output:
exports/ (default) - Standard export directoryexports/, paper/references/, /tmp/tracking/Viewing config (interactive mode):
Uses AskUserQuestion with three questions:
Updating config (direct mode):
✓ Configuration updated
PROMPTS_VERBOSITY: major → all
SOURCES_VERBOSITY: all (unchanged)
EXPORT_PATH: exports/ (unchanged)
New behavior:
- Every user request will be tracked to claude_usage/prompts.md
- All searches continue to be tracked to claude_usage/sources.md
- Exports default to exports/ directory
Run /track:init first to create .claude/.ref-config.
New in v2.0:
Configuration functionality is implemented in scripts/config.sh:
# Get skill directory
SKILL_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# Execute config script with arguments
bash "$SKILL_DIR/scripts/config.sh" "$@"
Script: skills/config/scripts/config.sh (150 lines)
Features:
See scripts/config.sh for full implementation details.