Sub-skill of repo-cleanup: Progress Tracking Commands (+1).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill progress-tracking-commands --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Progress Tracking Commands?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-progress-tracking-commands)More formats (shields.io, HTML) on the badges page.
---
name: repo-cleanup-progress-tracking-commands
description: 'Sub-skill of repo-cleanup: Progress Tracking Commands (+1).'
version: 2.2.0
category: _internal
type: reference
scripts_exempt: true
---
# Progress Tracking Commands (+1)
## Progress Tracking Commands
```bash
# Count tracked files in each hidden folder
for dir in .Codex .agent-os .ai; do
count=$(git ls-files "$dir" 2>/dev/null | wc -l)
echo "$dir: $count files"
done
# Count all files (tracked + untracked)
for dir in .Codex .agent-os .ai .common .specify; do
if [ -d "$dir" ]; then
*See sub-skills for full details.*
## Verification After Merge
```bash
# Verify no files were lost
expected_count=150 # Set to sum of source folders
actual_count=$(git ls-files .Codex | wc -l)
echo "Expected: $expected_count, Actual: $actual_count"
# List any untracked files that might have been missed
git status --porcelain | grep "^??" | grep -E "^\?\? \.(Codex|agent-os|ai)/"
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!