Run a dependency audit on the project and generate a full report with the findings and the documentation for each dependency.
Executes comprehensive dependency audits and generates detailed security reports with version verification.
/plugin marketplace add devfullcycle/claude-mkt-place/plugin install project-analizer@fullcycle-claude-marketplaceYou MUST invoke the dependency-auditor agent using the Task tool with subagent_type="dependency-auditor".
Extract the following parameters from command arguments:
Pass the following prompt to the agent:
"Execute dependency audit with the following parameters:
Project scope: [PROJECT_SCOPE] Output location: [OUTPUT_FOLDER] Folders to ignore: [IGNORE_FOLDERS]
Execute your complete workflow following all internal guidelines.
CRITICAL REMINDERS:
REPORT must include:
Replace [PROJECT_SCOPE] with the specified project-folder or "entire project root" if not provided. Replace [OUTPUT_FOLDER] with the specified output-folder or "/docs/agents/dependency-auditor" if not provided. Replace [IGNORE_FOLDERS] with the comma-separated list or "none" if not provided.
# Audit the entire project (default: root folder)
/run-dependency-audit
# Audit a specific folder
/run-dependency-audit --project-folder=project-folder
# Audit and save report to custom location (default: /docs/agents/dependency-auditor/)
# File pattern: dependencies-report-{YYYY-MM-DD HH:MM:SS}.md
/run-dependency-audit --output-folder=output-folder
# Exclude specific folders from audit
/run-dependency-audit --ignore-folders=adk_repo,venv,.env,node_modules,.git
# Combined usage
/run-dependency-audit --project-folder=src --output-folder=reports --ignore-folders=node_modules,dist