trax/.claude/commands/progress.md

771 B

Progress Check

Show current development progress and status.

Checks to perform:

1. Task Master Status

task-master list --status=in-progress
task-master list --status=pending | head -5

2. Test Coverage

uv run pytest --cov=src --cov-report=term-missing

3. Code Quality

# Check file sizes
find src -name "*.py" -exec wc -l {} + | sort -rn | head -10

# Files over 300 lines
find src -name "*.py" -exec wc -l {} + | awk '$1 > 300 {print}'

4. Type Checking

uv run mypy src/ --no-error-summary | grep -c "error:"

5. Current Session Context

  • Read .claude/context/session.md
  • List research reports in .claude/research/
  • Show active tasks from todo list

Let me check the current progress now.