بنقرة واحدة
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.