mit einem Klick
dependency-map
Cross-team dependency tracking with critical path analysis and Mermaid dependency graphs for program coordination.
Menü
Cross-team dependency tracking with critical path analysis and Mermaid dependency graphs for program coordination.
Basierend auf der SOC-Berufsklassifikation
Expert agile coaching: framework selection, maturity assessment, retrospective facilitation, transformation roadmaps. Use when selecting an agile framework, coaching teams, facilitating retrospectives, or designing a transformation.
Administer the Atlassian suite (Jira/Confluence): user provisioning, groups, SSO/SAML, permissions, security policies, marketplace apps, backups, and org-wide governance. Use for admin config, access management, and system optimization.
Structured PM 1:1 templates by partner type — manager, engineering-manager partner, designer, IC reports, cross-functional — grounded in Radical Candor, the GROW coaching model, and the Manager Tools 1:1 framework.
PM career ladder rubrics from APM through VP/CPO across product sense, execution, leadership, strategy, and communication. Includes gap analysis, growth planning, and promotion packet templates.
Structured PM interview preparation across product sense, execution, strategy, behavioral, and technical rounds, using CIRCLES, AARM, STAR, and the estimation framework. Calibrated to APM, PM, Senior PM, and Group PM rubrics.
30-60-90 day plan for a new PM joining a company or team, grounded in Michael Watkins' First 90 Days framework and the STARS situational diagnosis. Includes week-by-week plan, stakeholder map, 1:1 question bank, and first-PRD template.
| name | dependency-map |
| description | Cross-team dependency tracking with critical path analysis and Mermaid dependency graphs for program coordination. |
| license | MIT + Commons Clause |
| metadata | {"version":"1.0.1","author":"borghei","category":"project-management","domain":"pm-execution","updated":"2026-06-15T00:00:00.000Z","python-tools":"dependency_graph.py","tech-stack":"dependencies, critical-path, dsm, conway, mermaid"} |
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 from a single JSON file you maintain instead of a sprawling spreadsheet.
Most cross-team programs fail at dependency management, not execution. The teams individually do good work; the gaps are at the seams. This skill makes those seams visible, prioritizes them by criticality, and produces the communication artifacts that keep them visible week over week. The underlying model uses the Critical Path Method (CPM, Kelley and Walker, 1959) for sequencing, optional DSM (Design Structure Matrix) thinking for cluster identification, and Conway's Law (Conway, 1968) framing for the organizational source of recurring dependency patterns. All outputs follow the six standard PM formats per SHARED_OUTPUT_SCHEMA.md.
graph LR rendering plus a weekly cross-team sync agenda.program-manager/).When NOT to use: single-team backlogs (use wwas/ or job-stories/), pure technical dependencies inside one codebase (use Git), or stakeholder relationships (use senior-pm/stakeholder_mapper.py).
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.
assets/dependency-template.json — starter JSON with the full schema and one worked example per status.assets/weekly-sync-agenda.md — standard agenda for the cross-team weekly sync.In Scope: cross-team dependency capture and visualization, Critical Path Method analysis, risk-ordered blocker list, Mermaid graph LR rendering, Conway's Law-aware quarterly review, all six formats per SHARED_OUTPUT_SCHEMA.md.
Out of Scope: resource capacity planning (senior-pm/resource_capacity_planner.py), stakeholder mapping (senior-pm/stakeholder_mapper.py), sprint-level backlog ordering (prioritization-frameworks/), detailed Gantt charting, risk register beyond dependency blockers (pre-mortem/).
Important Caveats: dependency maps degrade fast without weekly updates (a 4-week-old map is harmful); the critical path identifies the currently longest chain and can shift when a single dependency is added (re-run on every change); this skill surfaces what to talk about but does not replace the conversation.
| Integration | Direction | What Flows |
|---|---|---|
program-manager/ | Used by | Program managers maintain the dependency JSON across teams |
senior-pm/ | Feeds into | Critical-path risks flow into portfolio risk reporting |
senior-pm/risk_matrix_analyzer.py | Complementary | Dependency risks plot alongside other program risks |
pre-mortem/ | Complementary | Pre-mortem-identified "tigers" often map to specific dependencies |
cycle-time-analyzer/ | Complementary | Long cycle times often correlate with cross-team blocks |
launch-playbook/ | Feeds into | Launch RACI references the dependency map for cross-team owners |
status-update-generator/ | Feeds into | Weekly status pulls critical-path summary |
summarize-meeting/ | Feeds into | Weekly sync notes become structured summaries |