jorgealves/agent_skills

skill-dependency-resolver

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.

First seen Jan 30, 2026

Installation

$ npx skills add jorgealves/agent_skills --skill skill-dependency-resolver

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from jorgealves/agent_skills · top by installs.

npx skills add jorgealves/agent_skills

Browse all from jorgealves/agent_skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License license-compliance-auditor
Default branch main
Open issues 1
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,091 B
  • docs SUMMARY.md 275 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 163 installs

SKILL.md

Skill Dependency Resolver

Purpose and Intent

The skill-dependency-resolver acts as a scheduler and orchestrator. It looks at what each skill "needs" and what it "provides" to determine the logical order of operations for a multi-skill task.

When to Use

  • Workflow Automation: When you want an agent to handle a complex task that requires multiple steps (e.g., Audit -> Refactor -> Test).
  • Architecture Planning: To see if your current skill library has all the necessary "connectors" to solve a business problem.

When NOT to Use

  • Single-Skill Tasks: Overkill if you only need a single tool to run once.

Security and Data-Handling Considerations

  • Structural Analysis Only: It looks at the "shape" of the skills, not the sensitive data passing through them.