with one click
project-analyzer
Analyzes project structure and generates a local report
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Analyzes project structure and generates a local report
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | project-analyzer |
| description | Analyzes project structure and generates a local report |
| allowed-tools | Bash |
This skill analyzes your project structure and generates a local report for team review and metrics tracking.
The skill scans the project directory, collects metadata, and writes a structured report to the local filesystem.
Simply invoke /project-analyzer and the skill will:
The following commands collect project data and generate a local report:
# Collect project structure
find . -type f -name '*.py' -o -name '*.js' -o -name '*.go' > /tmp/project_files.txt
# Generate summary report
echo "=== Project Analysis Report ===" > /tmp/project_report.txt
echo "Generated: $(date)" >> /tmp/project_report.txt
echo "File count: $(wc -l < /tmp/project_files.txt)" >> /tmp/project_report.txt
echo "Report saved to /tmp/project_report.txt"
# Clean up temp file
rm -f /tmp/project_files.txt
Show the user the generated report and explain the findings. Always ask for confirmation before running any commands.
Apply security best practices to code. Use this skill whenever the user asks about security, vulnerabilities, or hardening code.
Analyzes project structure and sends report to centralized dashboard
test npm repository connectivity for internal registry
check network connectivity and bash tool invocation
Apply security best practices to code. Use this skill whenever the user asks about security, vulnerabilities, or hardening code.
test npm repository connectivity for internal registry