Agent_skills skill-dependency-resolver
name: skill-dependency-resolver
install
source · Clone the upstream repo
git clone https://github.com/jorgealves/agent_skills
manifest:
skill-dependency-resolver/skill.yamlsource content
name: skill-dependency-resolver version: 1.0.0 description: Identifies and manages execution dependencies between agent skills by analyzing their inputs and outputs. Use when building multi-step agent workflows to ensure skills are executed in the correct order and that all required data is available. inputs: skills_directory: type: string description: Root directory containing the agent skills to map. default: "." target_goal: type: string description: The final output or state desired (e.g., 'compliant deployable artifact'). outputs: dependency_graph: type: object properties: execution_order: type: array items: type: string missing_inputs: type: array items: type: string capabilities:
- Directed Acyclic Graph (DAG) construction based on skill inputs/outputs.
- Identification of circular dependencies between skills.
- Suggestion of "missing link" skills needed to complete a workflow. constraints:
- Requires skills to have well-defined, typed inputs and outputs in their YAML. security:
- Operates on metadata only. examples:
- input: target_goal: "Redacted log file" output: dependency_graph: execution_order: ["log-aggregator", "pii-sanitizer"]