ワンクリックで
dependency-tree-mapping
Generate comprehensive dependency graphs to identify "single-points-of-failure" and impact analysis chains.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Generate comprehensive dependency graphs to identify "single-points-of-failure" and impact analysis chains.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
A QA gate that validates potentially destructive or irreversible actions before execution.
Detect and prevent state-visibility violations across execution contexts within a single transaction.
Convert mixed terminal output and instructions into safe, paste-ready command blocks.
Prepares isolated sub-workspaces for parallel agent execution. Copies context and generates specific mission instructions for "Worker" agents.
Structured logging and analysis of execution failures to prevent recurrence.
Detects when the agent is stuck in a reasoning loop or unproductive state by analyzing tool usage and sentiment patterns.
| name | Dependency Tree Mapping |
| description | Generate comprehensive dependency graphs to identify "single-points-of-failure" and impact analysis chains. |
| version | 1.0.0 |
| author | Antigravity Skills Library |
| created | "2026-01-16T00:00:00.000Z" |
| leverage_score | 5/5 |
Executes "Structural Awareness" by building a map of how different parts of the project rely on each other. It uses language-specific tools (nuget, pip, npm, cargo) to extract the graph and visualize it.
map dependenciesshow dependency treecheck impact of <library>find point of failure| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
--workspace-path | string | No | Current directory | Root of the project |
--depth | int | No | 3 | Depth of dependency recursion |
--format | string | No | mermaid | Output format: mermaid, json, text |
Visual graph ready for rendering:
graph TD
A[Core.Engine] --> B[Utils.Math]
A --> C[Utils.Logging]
B --> D[External.NumPy]
C --> E[External.Serilog]
Analysis of the graph:
npm list works).WORKSPACE_PROFILE.json if available).npm list --jsondotnet list package --include-transitive (parsed)pipdeptree --json (if installed)