Agent skill
hidden-folder-audit-verify-hidden-folder-state
Sub-skill of hidden-folder-audit: Verify Hidden Folder State (+3).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_internal/meta/hidden-folder-audit/verify-hidden-folder-state
SKILL.md
Verify Hidden Folder State (+3)
Verify Hidden Folder State
# List remaining hidden folders (should be minimal)
echo "=== Remaining Hidden Folders ==="
find . -maxdepth 1 -type d -name ".*" ! -name ".git" | sort
# Expected remaining folders:
# .claude/ - AI configuration (authoritative)
# .github/ - GitHub workflows
# .githooks/ - Git hooks
# .vscode/ - VS Code settings (if tracked)
*See sub-skills for full details.*
## Verify Consolidation Targets
```bash
# Verify .claude/ structure
echo "=== .claude/ Structure ==="
ls -la .claude/
# Verify scripts/git/ exists if .git-commands was consolidated
echo "=== scripts/git/ ==="
ls -la scripts/git/ 2>/dev/null || echo "scripts/git/ does not exist"
# Verify .claude/docs/commands/ if .slash-commands was consolidated
*See sub-skills for full details.*
## Verify Git Status
```bash
# Check for untracked hidden folders
echo "=== Untracked Hidden Folders ==="
git status --porcelain | grep "^??" | grep "^\./\." || echo "None found"
# Verify .gitignore includes runtime folders
echo "=== .gitignore Hidden Folder Entries ==="
# Count tracked files in .claude/
echo "=== .claude/ Tracked Files ==="
git ls-files .claude/ | wc -l
Final State Checklist
# Run all verification checks
echo "=== Final State Verification ==="
# 1. Only expected hidden folders exist
if [ "$hidden_count" -eq 0 ]; then
echo "[OK] No unexpected hidden folders"
else
echo "[WARN] $hidden_count unexpected hidden folders found"
fi
*See sub-skills for full details.*
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?