Agent skill

dependency-tracking

Map, track, and manage project dependencies across teams, systems, and organizations. Identify critical path items and prevent blocking issues through proactive dependency management.

Stars 151
Forks 20

Install this agent skill to your Project

npx add-skill https://github.com/aj-geddes/useful-ai-prompts/tree/main/skills/dependency-tracking

SKILL.md

Dependency Tracking

Table of Contents

  • Overview
  • When to Use
  • Quick Start
  • Reference Guides
  • Best Practices

Overview

Dependency tracking ensures visibility of task relationships, identifies blocking issues early, and enables better resource planning and risk mitigation.

When to Use

  • Multi-team projects and programs
  • Complex technical integrations
  • Cross-organizational initiatives
  • Identifying critical path items
  • Resource allocation planning
  • Preventing schedule delays
  • Onboarding new team members

Quick Start

Minimal working example:

python
# Dependency mapping and tracking

class DependencyTracker:
    DEPENDENCY_TYPES = {
        'Finish-to-Start': 'Task B cannot start until Task A is complete',
        'Start-to-Start': 'Task B cannot start until Task A starts',
        'Finish-to-Finish': 'Task B cannot finish until Task A is complete',
        'Start-to-Finish': 'Task B cannot finish until Task A starts'
    }

    def __init__(self):
        self.tasks = []
        self.dependencies = []
        self.critical_path = []

    def create_dependency_map(self, tasks):
        """Create visual dependency network"""
        dependency_graph = {
            'nodes': [],
            'edges': [],
            'critical_items': []
        }

        for task in tasks:
            dependency_graph['nodes'].append({
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
Dependency Mapping Dependency Mapping
Dependency Management Board Dependency Management Board
Dependency Resolution Dependency Resolution
Dependency Dashboard Metrics Dependency Dashboard Metrics

Best Practices

✅ DO

  • Map dependencies early in planning
  • Update dependency tracking weekly
  • Identify and monitor critical path items
  • Proactively communicate blockers
  • Have contingency plans for key dependencies
  • Break complex dependencies into smaller pieces
  • Track external dependencies separately
  • Escalate blocked critical path items immediately
  • Remove unnecessary dependencies
  • Build in buffer time for risky dependencies

❌ DON'T

  • Ignore external dependencies
  • Leave circular dependencies unresolved
  • Assume dependencies will "work out"
  • Skip daily monitoring of critical path
  • Communicate issues only in status meetings
  • Create too many dependencies (couples systems)
  • Forget to document dependency rationale
  • Avoid escalating blocked critical work
  • Plan at 100% utilization (no buffer for dependencies)
  • Treat all dependencies as equal priority

Expand your agent's capabilities with these related and highly-rated skills.

aj-geddes/useful-ai-prompts

websocket-implementation

Implement real-time bidirectional communication with WebSockets including connection management, message routing, and scaling. Use when building real-time features, chat systems, live notifications, or collaborative applications.

151 20
Explore
aj-geddes/useful-ai-prompts

refactor-legacy-code

Modernize and improve legacy codebases while maintaining functionality. Use when you need to refactor old code, reduce technical debt, modernize deprecated patterns, or improve code maintainability without breaking existing behavior.

151 20
Explore
aj-geddes/useful-ai-prompts

Sentiment Analysis

Classify text sentiment using NLP techniques, lexicon-based analysis, and machine learning for opinion mining, brand monitoring, and customer feedback analysis

151 20
Explore
aj-geddes/useful-ai-prompts

flask-api-development

Develop lightweight Flask APIs with routing, blueprints, database integration, authentication, and request/response handling. Use when building RESTful APIs, microservices, or lightweight web services with Flask.

151 20
Explore
aj-geddes/useful-ai-prompts

ML Model Explanation

Interpret machine learning models using SHAP, LIME, feature importance, partial dependence, and attention visualization for explainability

151 20
Explore
aj-geddes/useful-ai-prompts

Statistical Hypothesis Testing

Conduct statistical tests including t-tests, chi-square, ANOVA, and p-value analysis for statistical significance, hypothesis validation, and A/B testing

151 20
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results