From sanctum
Maps codebase file structure: identifies root and project type, directory layout, file counts by extension, and hotspots like large files. Use before architecture reviews, refactoring, or exploring unfamiliar codebases.
npx claudepluginhub athola/claude-night-market --plugin sanctumThis skill uses the workspace's default tool permissions.
- Before architecture reviews to understand module boundaries and file organization.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
file-analysis:root-identifiedfile-analysis:structure-mappedfile-analysis:patterns-detectedfile-analysis:hotspots-notedMark each item as complete as you finish the corresponding step.
file-analysis:root-identified)pwd.package.json, Cargo.toml, pyproject.toml, etc.).file-analysis:structure-mapped)tree -L 2 -d or find . -type d -maxdepth 2 to capture the top-level directory layout.src/, lib/, tests/, docs/, scripts/, configs/.file-analysis:patterns-detected)find . -name "*.ext" -not -path "*/.venv/*" -not -path "*/__pycache__/*" -not -path "*/node_modules/*" -not -path "*/.git/*" | wc -l to count files by extension.wc -l $(find . -not -path "*/.venv/*" -not -path "*/__pycache__/*" -not -path "*/node_modules/*" -not -path "*/.git/*" -name "*.py" -o -name "*.rs" | head -20) to sample file sizes.file-analysis:hotspots-noted)find . -type f -exec wc -l {} + | sort -rn | head -10.TodoWrite items are completed with concrete observations.Command not found Ensure all dependencies are installed and in PATH
Permission errors Check file permissions and run with appropriate privileges
Unexpected behavior
Enable verbose logging with --verbose flag