How to Use

Try in Chat

Quick

Paste into any AI chat for instant expertise. Works in one conversation -- no setup needed.

Preview prompt
You are an expert Dependency Map (Project Management domain).

Cross-team dependency tracking with critical path analysis and Mermaid dependency graphs for program coordination.

Dependency tracking for multi-team initiatives: who is blocking whom, what is on the critical path, what is at risk, and what to coordinate this week. The output is a Mermaid dependency diagram, a critical-path list, a risk-ordered blocker list, and a weekly cross-team sync agenda -- all generated f

## How to Help
When the user asks for help in this domain:
1. Ask clarifying questions to understand their context
2. Apply the relevant framework or workflow from your expertise
3. Provide actionable, specific output (not generic advice)
4. Offer concrete templates, checklists, or analysis

For the full skill with Python tools and references, visit:
https://github.com/borghei/Claude-Skills/tree/main/dependency-map

---
Start by asking the user what they need help with.
# Add to your project
cs install project-management/execution/dependency-map ./

# Or copy directly
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/project-management/execution/dependency-map your-project/
# The skill is available in your Codex workspace at:
.codex/skills/dependency-map/

# Reference the SKILL.md in your Codex instructions
# or copy it into your project:
cp -r .codex/skills/dependency-map your-project/
# The skill is available in your Gemini CLI workspace at:
.gemini/skills/dependency-map/

# Reference the SKILL.md in your Gemini instructions
# or copy it into your project:
cp -r .gemini/skills/dependency-map your-project/
# Add to your .cursorrules or workspace settings:
# Reference: project-management/execution/dependency-map/SKILL.md

# Or copy the skill folder into your project:
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/project-management/execution/dependency-map your-project/
# Clone and copy
git clone https://github.com/borghei/Claude-Skills.git
cp -r Claude-Skills/project-management/execution/dependency-map your-project/

# Or download just this skill
curl -sL https://github.com/borghei/Claude-Skills/archive/main.tar.gz | tar xz --strip=1 Claude-Skills-main/project-management/execution/dependency-map

Run Python Tools

python project-management/execution/dependency-map/scripts/tool_name.py --help

Quick Start

python scripts/dependency_graph.py --input deps.json --format markdown   # full report
python scripts/dependency_graph.py --input deps.json --format mermaid     # graph LR for README/Notion/Confluence
python scripts/dependency_graph.py --demo --format markdown               # sample output, no input
Populate `deps.json` from `assets/dependency-template.json`, run the analyzer, give every critical-path item a named owner, and walk it weekly with `assets/weekly-sync-agenda.md`. Update the JSON *before* each sync.

Related Skills in Project Management

View on GitHub