Agent skill
cfn-dependency-management
Task dependency extraction and context ingestion. Use when you need to parse task criteria, identify dependencies, generate execution order, or inject context for complex multi-step tasks.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/cfn-dependency-management
SKILL.md
Dependency Management Skill (Mega-Skill)
Version: 1.1.0 Purpose: Task dependency extraction and context ingestion Status: Production Consolidates: cfn-dependency-extractor, cfn-dependency-ingestion Confidence: 9.5/10 (with orchestration layer)
Overview
This mega-skill provides complete dependency handling:
- Extractor - Parse task criteria, identify dependencies, generate execution order
- Ingestion - Consume manifests, inject context, coordinate dependencies
- Orchestration - Unified interface coordinating extraction and ingestion
Directory Structure
dependency-management/
├── SKILL.md
├── execute.sh # Main orchestration script
├── cfn-dependency-management.sh # Skill wrapper entry point
└── lib/
├── extractor/ # From cfn-dependency-extractor
└── ingestion/ # From cfn-dependency-ingestion
Usage
Main Entry Point
# Basic usage
./cfn-dependency-management.sh --task-description "Implement OAuth2 auth"
# Save to file
./cfn-dependency-management.sh --task-description "Build admin dashboard" --output-file deps.txt
# Mode-specific execution
./cfn-dependency-management.sh --task-description "Add user profiles" --mode mvp
./cfn-dependency-management.sh --task-description "Full system audit" --mode enterprise --verbose
Modes
- MVP: Only P0 critical dependencies (fastest)
- Standard: P0 and P1 dependencies (balanced)
- Enterprise: All dependencies including deprecated (comprehensive)
Pipeline Flow
- Extraction - Analyze task description → produce dependency graph
- Mode Configuration - Apply mode-specific filters (P0, P1, P2)
- Ingestion - Consume dependency graph → inject context for execution
- Summary - Generate execution report with critical path and parallel opportunities
Migration Paths
| Old Path | New Path |
|---|---|
| cfn-dependency-extractor/ | dependency-management/lib/extractor/ |
| cfn-dependency-ingestion/ | dependency-management/lib/ingestion/ |
Version History
1.1.0 (2025-12-08)
- Added execute.sh orchestration script
- Added cfn-dependency-management.sh wrapper entry point
- Implemented mode-based execution (mvp/standard/enterprise)
- Added comprehensive help and error handling
- Fixed coordination between extraction and ingestion
1.0.0 (2025-12-02)
- Consolidated extractor + ingestion into unified dependency pipeline
Pipeline Flow
- Extractor analyzes task → produces dependency graph
- Ingestion consumes graph → injects context for execution
Migration Paths
| Old Path | New Path |
|---|---|
| cfn-dependency-extractor/ | dependency-management/lib/extractor/ |
| cfn-dependency-ingestion/ | dependency-management/lib/ingestion/ |
Version History
1.0.0 (2025-12-02)
- Consolidated extractor + ingestion into unified dependency pipeline
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?