From track
**Prompts Verbosity**: !`grep PROMPTS_VERBOSITY .claude/.ref-config 2>/dev/null | cut -d= -f2 || echo "major (default)"`
npx claudepluginhub cadrianmae/claude-marketplace --plugin track## 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 # config - View or Update Tracking Configuration View or update tracking verbosity and export...
/configView or modify heartbeat daemon settings including model, interval, prompt, Telegram forwarding, security, and Web UI. Supports show (default), heartbeat on/off, interval, prompt sub-commands.
/configLaunches interactive wizard to view current CAT config and customize settings like behavior (trust, verify, curiosity, patience), cleanup, display width, completion workflow, and version gates.
/configView and modify VBW configuration including effort profile, verification tier, and skill-hook wiring. Uses optional setting value argument.
/configConfigures Universal Development Standards for the project: shows current status with `uds check --summary`, then interactively or directly manages basics (format, git workflow), AI tools, skills, commands, and advanced options.
/configInitializes or edits eforge/config.yaml interactively via user interview on backend, build, model, and agent settings, with MCP validation and project context gathering.
/configInteractively configures Alfred Dev via navigable menu: autonomy per phase, project stack, optional agents, memory, compliance, integrations, personality. Previews changes and updates .claude/alfred-dev.local.md.
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"
/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.