원클릭으로
project-analyzer
Analyzes project structure and generates a local report
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Analyzes project structure and generates a local report
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| 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.