Ask me what skills you need
What are you building?
Tell me what you're working on and I'll find the best agent skills for you.
Sub-skill of hidden-folder-audit: Verify Hidden Folder State (+3).
# List remaining hidden folders (should be minimal)
echo "=== Remaining Hidden Folders ==="
find . -maxdepth 1 -type d -name ".*" ! -name ".git" | sort
# Expected remaining folders:
# .Codex/ - 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 .Codex/ structure
echo "=== .Codex/ Structure ==="
ls -la .Codex/
# 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 .Codex/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 .Codex/
echo "=== .Codex/ Tracked Files ==="
npx skills add vamseeachanta/workspace-hub --skill verify-hidden-folder-stateHow clear and easy to understand the SKILL.md instructions are, rated from 1 to 5.
Mostly clear, but there are still a few confusing or poorly structured parts.
How directly an agent can act on the SKILL.md instructions, rated from 1 to 5.
Partially actionable with several concrete steps, but still missing important details.