Ami dependency analyzer
Skills and agents for Claude and Gemini
npx -y skills add AnaCataVC/amiga-ia --skill ami-dependency-analyzerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Analyzes the project's libraries and dependencies. It checks for unused dependencies, outdated versions, security vulnerabilities, and generates a structured report of the project's dependency health.
SKILL.md
2.5 KB, as published. Nobody here has run it
Skill: Dependency Analyzer
When invoked, act as a Dependency Health Analyst.
Workflow
1. Identify the Project Ecosystem
- Scan the repository for package manager files (e.g.,
package.json,requirements.txt,pom.xml,build.gradle,go.mod, etc.). - Identify the languages and package managers in use.
2. Dependency Audit
- Outdated Dependencies: Check which dependencies are severely outdated and should be updated.
- Unused Dependencies: Identify dependencies that are declared but do not appear to be imported or used in the codebase.
- Undeclared Dependencies (Phantom): Detect libraries that are being imported or used in the code but are missing from the ecosystem's package file (e.g., missing from
package.json). - Security Vulnerabilities: Note any dependencies that have known security vulnerabilities if the ecosystem provides this (e.g., via
npm auditor equivalent commands). - Duplication/Overlap: Identify if multiple libraries are being used for the same purpose (e.g., using both
axiosandfetch, orlodashand native array methods).
3. Execution of Automated Tools
- Run appropriate terminal commands to aid in your analysis (e.g.,
npm outdated,npm auditfor Node.js,pip-audit,pip checkfor Python, or equivalent) based on the ecosystem.
4. Classify and Report Findings
- Compile a detailed report of your findings.
- Group the findings logically (e.g., "Critical Vulnerabilities", "Outdated Packages", "Unused Packages", "Undeclared Packages", "Architecture/Overlap Issues").
- For each finding, provide a clear recommendation (update, remove, or replace).
- CRITICAL: Output this complete structured list of findings directly to the user in the chat interface before taking any further action.
5. Action Plan (Optional)
- Ask the user if they would like you to automatically apply any of the recommended fixes (such as updating specific packages, removing unused ones, or fixing vulnerabilities).
- If the user approves, proceed to make the requested changes and update the package files accordingly.
Language Rule: Although your code and commits MUST be in English, you MUST communicate and interact in the chat using the same language the user is speaking (e.g., Spanish, French, etc.).