Claude Skills
CollectionsCompareWorkflowsNominate
Sign inSign up
© 2026 Curated Agent Skills·Learn more about Agent Skills
Back to repository

config

verified

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 GitHub

Marketplace

cadrianmae-claude-marketplace

cadrianmae/claude-marketplace

Plugin

track

Repository

cadrianmae/claude-marketplace

plugins/track/skills/config/SKILL.md

Last Verified

February 1, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/cadrianmae/claude-marketplace/blob/main/plugins/track/skills/config/SKILL.md -a claude-code --skill config

Installation paths:

Claude
.claude/skills/config/
Powered by add-skill CLI

Instructions

## 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

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
4765 chars