dependency-mapping
Identify and visualize dependencies across components, teams, deliverables, systems, or tasks. Produces a dependency graph with direction and type (hard/soft, blocking/enabling), detects cycles and bottlenecks, computes critical path, and identifies single points of failure. Renders Mermaid flowchart and Gantt-like dependency diagrams with optional PNG export.
What this skill does
# Dependency Mapping
You map dependencies between nodes (components, teams, deliverables, systems, or tasks) and surface cycles, bottlenecks, critical path, and single points of failure. You produce an actionable dependency graph — not just a pretty diagram.
## Core rules
- **Direction and type**: every edge has direction and type. Type includes `hard-blocking` (A cannot proceed without B done), `soft-blocking` (A is slowed without B), `enabling` (B makes A faster/better), `data` (A consumes B's output)
- **Evidence or `[Assumed]`**: every node and edge traces to supplied input, or is labeled `[Assumed]` with rationale
- **Cycle detection**: always run cycle check on the directed graph; cycles are often bugs in the mental model
- **Bottleneck surfacing**: nodes with high in-degree or out-degree are called out
- **Critical path**: if durations supplied, compute and highlight the critical path
## Input handling
Follow shared foundation §7 — interview mode. Gather at minimum:
| Dimension | Required | Default |
|---|---|---|
| **Subject** (project, system, release, process) | Yes | — |
| **Nodes** (components/teams/deliverables) | Yes (≥5) | — |
| **Known dependencies** | No | Inferred + `[Assumed]` |
| **Node type** (component / team / deliverable / system / task) | No | `deliverable` |
| **Durations** (per node) | No | Optional — required for critical path |
| **Granularity** | No | Match to subject level |
**Exit interview when**: subject + ≥5 named nodes are clear.
## Phase 1 — Setup
### 1. Collect input
Accept:
- Subject description + list of nodes + known dependencies
- A project/system document or reference
- A partial map to extend
- No / vague input → interview mode (§7)
### 2. Detect scope
- **Subject**: the thing whose dependencies we're mapping
- **Node type**: component, team, deliverable, system, task (consistent across the map)
- **Nodes**: named entities; each gets an ID (`N-01`, `N-02`, …)
- **Durations**: optional per-node estimates (days/weeks/sprints); needed for critical path
- **Dependencies**: explicit edges with direction and type where known
### 3. Confirm scope
Present:
```
**Subject**: [name]
**Node type**: [component / team / deliverable / system / task]
**Nodes identified**: [N]
**Known dependencies**: [M edges]
**Durations provided**: [yes/no — if yes, critical path will be computed]
```
Ask for confirmation. Ask render mode per `diagram-rendering` mixin and output path (default: `/documentation/[case]/dependency-mapping/`).
## Phase 2 — Node normalization
1. Assign IDs (`N-01`, …)
2. Deduplicate near-identical nodes
3. Ensure node names are nouns (not actions) for consistency
4. Preserve metadata: owner/team, duration estimate, status (if supplied), category/layer
## Phase 3 — Dependency elicitation
For each node, answer:
- **Upstream**: what must be done / exist before this can proceed?
- **Downstream**: what depends on this?
- **Type** per edge: `hard-blocking` / `soft-blocking` / `enabling` / `data`
- **Confidence**: `high` / `medium` / `low`
For inferred edges (user did not specify), label `[Assumed]` and state rationale.
Do not fabricate specific technical dependencies that aren't in the input.
## Phase 4 — Cycle detection
Run cycle detection on the directed graph.
- If cycles exist: list each cycle explicitly; for each, classify as:
- **Real cycle** (legitimately mutual — needs to be broken)
- **Modeling error** (one of the edges is wrong)
- **Scope issue** (one node is actually two conflated concepts)
- Recommend a resolution per cycle
Cycles block critical-path computation until resolved.
## Phase 5 — In/out-degree analysis
Per node:
- **In-degree** (how many things this depends on)
- **Out-degree** (how many things depend on this)
Surface:
- **Hubs / bottlenecks**: top 3 nodes by out-degree (many things depend on them)
- **Sinks**: nodes with out-degree 0 (end deliverables)
- **Sources**: nodes with in-degree 0 (starting points)
- **Single points of failure**: any node where failure cascades to ≥3 downstream nodes via hard-blocking edges
## Phase 6 — Critical path (conditional)
Triggered when durations supplied for enough nodes.
1. Topologically sort the DAG
2. Compute earliest-start / earliest-finish per node
3. Compute latest-start / latest-finish (backward pass)
4. Slack = latest-start − earliest-start
5. Critical path = nodes with slack = 0
Report:
- Total project duration (longest path)
- Critical path nodes (list + highlighted in diagram)
- Near-critical nodes (slack ≤ 20% of project duration)
- Buffer recommendations
If durations are partial: compute partial critical path with `[Assumed]` durations where missing; flag confidence.
## Phase 7 — Single points of failure (SPOFs)
A SPOF is a node whose failure blocks multiple downstream nodes with no alternative path.
For each SPOF:
- **Node** and its blast radius (downstream nodes that would be blocked)
- **Type of risk**: resource (one person/team), technical (single system), organizational (single decision-maker), external (single vendor)
- **Mitigation options**: add redundancy, split node, add alternative path, pre-compute fallback
## Phase 8 — Diagrams
### 1. Primary — dependency graph (Mermaid flowchart)
```mermaid
flowchart LR
N01["N-01: [Name]"]
N02["N-02: [Name]"]
N03["N-03: [Name]"]
N01 -->|hard| N02
N01 -. "soft" .-> N03
N02 -- "data" --> N03
```
Edge styles:
- `hard-blocking` — solid arrow, label "hard" or no label
- `soft-blocking` — dotted arrow, label "soft"
- `enabling` — dashed arrow, label "enabling"
- `data` — solid arrow with label "data"
Highlight:
- Critical path nodes: `style N01 fill:#ff6b6b`
- SPOFs: `style N02 stroke:#ffd93d,stroke-width:3px`
### 2. Optional — Gantt-style timeline (if durations)
```mermaid
gantt
title [Subject] — Critical Path
dateFormat YYYY-MM-DD
axisFormat %b %d
section Critical path
[N-01 Name] :crit, n01, 2026-05-01, 5d
[N-02 Name] :crit, n02, after n01, 3d
section Other
[N-03 Name] :n03, 2026-05-01, 2d
```
### 3. Optional — degree scatter
```mermaid
quadrantChart
title Node Degree — In vs Out
x-axis Low In-degree --> High In-degree
y-axis Low Out-degree --> High Out-degree
quadrant-1 Hubs
quadrant-2 Bottlenecks
quadrant-3 Leaves
quadrant-4 Consumers
[N-01]: [x, y]
```
## Phase 9 — Diagram rendering
Per `diagram-rendering` mixin. File names:
- `dependency-graph.mmd` / `.png`
- `critical-path-gantt.mmd` / `.png` (if durations)
- `node-degree.mmd` / `.png` (optional)
## Phase 10 — Report assembly and approval
```markdown
# Dependency Mapping: [Subject]
**Date**: [date]
**Node type**: [component / team / deliverable / system / task]
**Nodes**: [N]
**Dependencies**: [M]
**Durations supplied**: [yes / no]
## Scope
[Subject + node type + granularity]
## Nodes
[Table: ID, name, owner, duration, metadata, status]
## Dependency Graph
[Primary diagram]
## Dependencies
[Table: from ID → to ID, type, confidence, rationale / `[Assumed]`]
## Cycles
[Per cycle: nodes involved, classification, recommended resolution]
## Bottlenecks & Sources / Sinks
[Hubs, sources, sinks, degree analysis]
## Critical Path
[If durations: path nodes, total duration, near-critical nodes, buffer recommendations]
[Gantt diagram]
## Single Points of Failure
[Per SPOF: node, blast radius, risk type, mitigation options]
## Evidence & Assumptions
[All `[Assumed]` edges and durations with rationale]
## Limitations
[What is missing, how to sharpen the map]
```
Present for user approval. Save only after confirmation.
## Extraction + assessment rules
**Extraction (primary)**:
- Every node and edge traceable to supplied input or `[Assumed]` with rationale
- Source references (if provided) preserved
- Confidence labels per edge
**Assessment (secondary)** — applies to cycles, SPOFs, critical path:
- No invented dependencies to inflate risk
- No suppression of cycles to make the map cleaner
- DeterminisRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.