.claude/skills/project-status/SKILL.md
Quick "where are we? what's next?" dashboard with handoffs, sessions, imports, and git activity
npx skillsauth add ajbcoding/claude-skill-eval project-statusInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Get instant project status visibility: active handoffs, recent work, import queue, and git activity.
Use when: Starting a session, returning after time away, checking project state.
Announce at start: "I'm using the project-status skill to show current project status."
Aggregates status from multiple sources:
/docs/handoffs/current/)/docs/sessions/)/docs/status/TODO-*.md)/imports/)Process:
Collect Active Handoffs
find /Users/anthonybyrnes/PycharmProjects/Python419/docs/handoffs/current -name "*.md" -type f | sort -r
For each handoff:
List Recent Sessions
find /Users/anthonybyrnes/PycharmProjects/Python419/docs/sessions -name "SESSION-*.md" -type f | sort -r | head -5
Show last 5 session files
Check TODO Files
ls /Users/anthonybyrnes/PycharmProjects/Python419/docs/status/TODO-*.md 2>/dev/null
Read and display content of TODO files
Count Import Queue
# Inbox
find /Users/anthonybyrnes/PycharmProjects/Python419/imports/inbox -type f 2>/dev/null | wc -l
# Staged by type
for type in lbhra ps-lb lbsr08e 419f program-list cota-persistence; do
find /Users/anthonybyrnes/PycharmProjects/Python419/imports/staged/$type -type f 2>/dev/null | wc -l
done
# Processing
find /Users/anthonybyrnes/PycharmProjects/Python419/imports/processing -type f 2>/dev/null | wc -l
Show Recent Git Activity
cd /Users/anthonybyrnes/PycharmProjects/Python419
git log --oneline -10
Display NEXT_STEPS if exists
cat /Users/anthonybyrnes/PycharmProjects/Python419/docs/status/NEXT_STEPS.md
## Project Status - 2025-11-14
### Active Handoffs (2)
- import-coverage-completion
Created: 2025-11-13 (1 day ago)
File: docs/handoffs/current/2025-11-13-import-coverage-completion-handoff.md
- formula-correction-audit
Created: 2025-11-13 (1 day ago)
File: docs/handoffs/current/2025-11-13-formula-correction-audit-handoff.md
### Recent Sessions (last 5)
- SESSION-2025-11-13-import-coverage-matrix-handoff.md
- SESSION-2025-11-12-import-status-dashboard-mvp.md
- SESSION-2025-11-12-delta-cost-dashboard-mvp.md
- SESSION-2025-11-12-COMPLETE-SUMMARY.md
- SESSION-2025-11-12-autonomous-development.md
### Import Queue
Inbox: 0 files
Staged: 12 files
- LBHRA: 5
- PS_LB: 4
- 419F: 3
Processing: 0 files
### Next Steps
[Content from /docs/status/NEXT_STEPS.md]
### Recent Activity (last 10 commits)
[git log --oneline -10]
Date Calculation:
from datetime import datetime
def calculate_age(created_date_str: str) -> str:
"""Calculate age in days from YYYY-MM-DD string."""
created = datetime.strptime(created_date_str, '%Y-%m-%d')
today = datetime.now()
delta = today - created
days = delta.days
if days == 0:
return "today"
elif days == 1:
return "1 day ago"
else:
return f"{days} days ago"
Parse Handoff Filename:
import re
def parse_handoff_filename(filename: str) -> tuple:
"""Extract date and title from handoff filename."""
# Pattern: YYYY-MM-DD-{title}-handoff.md
match = re.match(r'(\d{4}-\d{2}-\d{2})-(.+)-handoff\.md', filename)
if match:
date_str = match.group(1)
title = match.group(2).replace('-', ' ').title()
return (date_str, title)
return (None, filename)
Extract YAML Frontmatter:
import re
def extract_frontmatter(content: str) -> dict:
"""Extract YAML frontmatter from markdown file."""
match = re.match(r'^---\n(.*?)\n---', content, re.DOTALL)
if match:
import yaml
return yaml.safe_load(match.group(1))
return {}
User: "What's the current project status?"
Assistant: "I'm using the project-status skill to show current project status."
[Runs all collection steps]
Output:
## Project Status - 2025-11-14
### Active Handoffs (2)
- Import Coverage Completion
Created: 2025-11-13 (1 day ago)
File: docs/handoffs/current/2025-11-13-import-coverage-completion-handoff.md
- Formula Correction Audit
Created: 2025-11-13 (1 day ago)
File: docs/handoffs/current/2025-11-13-formula-correction-audit-handoff.md
### Recent Sessions (last 5)
- SESSION-2025-11-13-import-coverage-matrix-handoff.md
- SESSION-2025-11-12-import-status-dashboard-mvp.md
- SESSION-2025-11-12-delta-cost-dashboard-mvp.md
- SESSION-2025-11-12-COMPLETE-SUMMARY.md
- SESSION-2025-11-12-autonomous-development.md
### Import Queue
Inbox: 0 files
Staged: 12 files
- LBHRA: 5 files
- PS_LB: 4 files
- 419F: 3 files
Processing: 0 files
### Next Steps
[Displays content from NEXT_STEPS.md]
### Recent Activity (last 10 commits)
d5c98fc docs: add comprehensive quick start guide for web UI features
dd025d4 docs: add remaining web UI session summaries and implementation plans
5943b09 docs: add comprehensive session summary for Import Status Dashboard MVP
685f61c feat: complete Task 8 - Import Status Dashboard integration
da09d53 feat: add sortable ImportHistoryTable component
...
Used by:
Depends on:
/docs/handoffs/current/ - Active handoffs/docs/sessions/ - Session summaries/docs/status/ - TODO and NEXT_STEPS files/imports/ - Import workflow directoriesReading deleted files:
Not handling empty directories:
2>/dev/null to suppress errors, show "0 files" for emptyStale git log:
Never:
Always:
content-media
Download YouTube video transcripts when user provides a YouTube URL or asks to download/get/fetch a transcript from YouTube. Also use when user wants to transcribe or get captions/subtitles from a YouTube video.
development
Transform learning content (like YouTube transcripts, articles, tutorials) into actionable implementation plans using the Ship-Learn-Next framework. Use when user wants to turn advice, lessons, or educational content into concrete action steps, reps, or a learning quest.
tools
Toolkit for styling artifacts with a theme. These artifacts can be slides, docs, reportings, HTML landing pages, etc. There are 10 pre-set themes with colors/fonts that you can apply to any artifact that has been creating, or can generate a new theme on-the-fly.
tools
Replace with description of the skill and when Claude should use it.