GR

graph-thinking

Visualize complex relationships and solve problems using non-linear graph-based reasoning.

Install

mkdir -p .claude/skills/graph-thinking && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11800" && unzip -o skill.zip -d .claude/skills/graph-thinking && rm skill.zip

Installs to .claude/skills/graph-thinking

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Apply graph-based thinking to visualize complex relationships and solve
71 chars · catalog descriptionno explicit “when” trigger
Advanced

Key capabilities

  • Map feature dependencies in product development
  • Analyze stakeholder relationships
  • Understand system architectures
  • Design recommendation systems or knowledge graphs
  • Identify critical bottlenecks through network analysis
  • Apply First Principles Thinking to break down problems

How it works

The skill applies graph-based thinking by identifying nodes and edges to represent concepts and their relationships. It uses principles like First Principles and Second-Order Thinking to analyze the system's topology and pathways, then documents the findings.

Inputs & outputs

You give it
Complex problem or system description
You get back
A graph thinking analysis document with node maps, relationship matrices, key insights, and recommendations

When to use graph-thinking

  • Mapping feature dependencies
  • Analyzing system architecture
  • Identifying critical bottlenecks
  • Designing recommendation systems

About this skill

Graph Thinking - Non-Linear Problem Solving

Mental model for visualizing complex relationships and connections between ideas, concepts, or data points. Evolved from Graph-of-Thought (GoT) reasoning that mirrors human cognition.

When to Use This Skill

  • Mapping feature dependencies in product development
  • Analyzing stakeholder relationships
  • Understanding system architectures
  • Exploring interconnected concepts
  • Designing recommendation systems or knowledge graphs
  • Identifying opportunity areas through network analysis

Core Concepts

Graph Elements

ElementDescription
NodesIndividual elements or concepts
EdgesRelationships or connections between nodes
ClustersGroups of highly connected nodes
PathwaysRoutes through the network
CentralityMeasures identifying most important nodes
TopologyStructural arrangement of connections

Graph-of-Thought (GoT) Reasoning

Traditional (Chain-of-Thought):
A → B → C → D → Conclusion

Graph-of-Thought:
    ┌─── B ───┐
    │         │
A ──┼─── C ───┼──→ Synthesis → Conclusion
    │         │
    └─── D ───┘
         ↑
    Feedback Loop

GoT enables:

  • Combining arbitrary thoughts into synergistic outcomes
  • Distilling networks of thoughts for clarity
  • Enhancing ideas using feedback loops
  • Non-linear exploration of solution spaces

Fundamental Principles

First Principles Thinking

Break down complex problems into fundamental truths:

Surface Level:
"We need more marketing"
    ↓
Why?
    ↓
"Not enough customers"
    ↓
Why?
    ↓
Root Truth:
"Value proposition unclear to target audience"

Second-Order Thinking

Demand deeper analysis by asking "And then what?":

Decision: Reduce prices by 20%

First-order:  More sales
Second-order: Lower margins → Less R&D budget
Third-order:  Competitors catch up → Price war
Fourth-order: Race to bottom → Industry commoditization

Non-Linear Processing

Unlike sequential thinking:

SequentialGraph-Based
One path at a timeMultiple paths simultaneously
Linear information flowMulti-directional exploration
Fixed orderIterative refinement through loops
Single conclusionSynthesized insights from multiple angles

Analysis Framework

Double Diamond Model

Apply divergent and convergent thinking cycles:

    DISCOVER          DEFINE          DEVELOP          DELIVER
   (Diverge)        (Converge)       (Diverge)       (Converge)
       /\              \/              /\              \/
      /  \            /  \            /  \            /  \
     /    \          /    \          /    \          /    \
    /      \        /      \        /      \        /      \
   /        \      /        \      /        \      /        \

   Explore         Focus on         Generate         Focus on
   problem         specific         diverse          optimal
   space           challenges       solutions        implementation

Step 1: Map the Nodes

Identify all relevant elements:

Product Launch Analysis:

Nodes:
├── Stakeholders
│   ├── Customers
│   ├── Engineering
│   ├── Marketing
│   └── Leadership
├── Features
│   ├── Core functionality
│   ├── Nice-to-haves
│   └── Technical debt
├── Constraints
│   ├── Timeline
│   ├── Budget
│   └── Resources
└── Dependencies
    ├── External APIs
    ├── Infrastructure
    └── Regulatory

Step 2: Define Relationships (Edges)

Document connections between nodes:

Edge Types:
├── Dependency:    A requires B
├── Influence:     A affects B
├── Correlation:   A and B move together
├── Conflict:      A competes with B
└── Synergy:       A enhances B

Step 3: Identify Clusters and Patterns

Find highly connected groups:

High Centrality (Critical Nodes):
├── Authentication service → 12 dependencies
├── Database layer → 8 dependencies
└── API gateway → 6 dependencies

Clusters:
├── User-facing features (tightly coupled)
├── Backend services (loosely coupled)
└── Third-party integrations (isolated)

Step 4: Analyze Pathways

Trace routes through the network:

User Journey Graph:

Landing Page
    ↓
[Sign Up] ←→ [Social Login]
    ↓
Onboarding
    ↓           ↓
Quick Start   Full Setup
    ↓           ↓
    └─────┬─────┘
          ↓
    First Value
          ↓
    ↙    ↓    ↘
Churn  Retain  Upgrade

Output Template

After completing analysis, document as:

## Graph Thinking Analysis

**Subject:** [What you're analyzing]

**Analysis Date:** [Date]

### Node Map

| Category | Nodes   | Centrality     |
| -------- | ------- | -------------- |
| [Cat 1]  | [Nodes] | [High/Med/Low] |
| [Cat 2]  | [Nodes] | [High/Med/Low] |

### Relationship Matrix

| From | To  | Relationship | Strength |
| ---- | --- | ------------ | -------- |
| [A]  | [B] | [Type]       | [1-5]    |

### Key Insights

1. **Clusters identified:** [Description]
2. **Critical paths:** [Description]
3. **Bottlenecks:** [Description]
4. **Opportunities:** [Description]

### Recommendations

| Priority | Action   | Rationale |
| -------- | -------- | --------- |
| High     | [Action] | [Why]     |
| Medium   | [Action] | [Why]     |

Application Examples

Feature Dependency Mapping

Feature: Real-time Collaboration

Dependencies:
├── WebSocket infrastructure
│   ├── Connection management
│   └── Message queuing
├── Conflict resolution
│   ├── Operational transforms
│   └── CRDT implementation
├── Presence indicators
│   └── User state sync
└── Permissions
    ├── Document access
    └── Cursor visibility

Stakeholder Analysis

                    HIGH INFLUENCE
                          │
    Keep Satisfied        │        Manage Closely
    ┌─────────────────────┼─────────────────────┐
    │                     │                     │
    │   Executives        │    Product Owner    │
    │   Compliance        │    Key Customers    │
    │                     │                     │
LOW ──────────────────────┼────────────────────── HIGH
INTEREST                  │                      INTEREST
    │                     │                     │
    │   General Users     │    Power Users      │
    │   IT Support        │    Dev Team         │
    │                     │                     │
    └─────────────────────┼─────────────────────┘
    Monitor               │        Keep Informed
                          │
                   LOW INFLUENCE

System Architecture Analysis

Microservice Graph:

API Gateway [Centrality: 0.95]
    │
    ├── Auth Service [0.82]
    │   └── User DB
    │
    ├── Product Service [0.71]
    │   ├── Catalog DB
    │   └── Search Index
    │
    ├── Order Service [0.68]
    │   ├── Order DB
    │   └── Payment Gateway (external)
    │
    └── Notification Service [0.45]
        └── Email Provider (external)

Critical Path: Gateway → Auth → Product → Order
Bottleneck: Auth Service (single point of failure)

Best Practices

Do

  • Visualize relationships - Draw the graph, don't just describe it
  • Iterate continuously - Graphs evolve as understanding deepens
  • Measure centrality - Identify the most critical nodes
  • Look for clusters - Natural groupings reveal system structure
  • Trace pathways - Understand how information/value flows

Avoid

  • Over-connecting - Not everything relates to everything
  • Ignoring edge types - Different relationships have different meanings
  • Static thinking - Graphs change over time
  • Missing feedback loops - Circular dependencies are significant
  • Forgetting weights - Some relationships are stronger than others

Integration with Other Methods

MethodCombined Use
Five WhysTrace causal chains through the graph
Business CanvasMap relationships between canvas elements
Jobs-to-be-DoneConnect user needs to feature nodes
Hypothesis TreeStructure experiments as branching graphs
Stakeholder MapVisualize influence and interest relationships

Tools

Visualization

  • Mermaid - Code-based diagrams in markdown
  • Graphviz - Programmatic graph generation
  • Excalidraw - Hand-drawn style diagrams
  • Miro/FigJam - Collaborative whiteboarding

Analysis

  • Gephi - Network analysis and visualization
  • Neo4j - Graph database for complex queries
  • NetworkX - Python library for graph algorithms

Resources

When not to use it

  • When the problem is simple and linear
  • When the task does not involve complex relationships or interconnected concepts
  • When the goal is to perform sequential thinking

Limitations

  • Requires visualization of relationships
  • Graphs evolve as understanding deepens
  • Avoids over-connecting unrelated elements

How it compares

This skill provides a structured, non-linear approach to problem-solving by visualizing complex relationships as graphs, which contrasts with traditional linear thought processes.

Compared to similar skills

graph-thinking side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
graph-thinking (this skill)03moNo flagsAdvanced
tech-decision17moNo flagsIntermediate
tech-stack-evaluator03moReviewBeginner
ito-research02moReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

tech-decision

team-attention

This skill should be used when the user asks to "기술 의사결정", "뭐 쓸지 고민", "A vs B", "비교 분석", "라이브러리 선택", "아키텍처 결정", "어떤 걸 써야 할지", "트레이드오프", "기술 선택", "구현 방식 고민", or needs deep analysis for technical decisions. Provides systematic multi-source research and synthesized recommendations.

13

tech-stack-evaluator

alirezarezvani

Technology stack evaluation and comparison with TCO analysis, security assessment, and ecosystem health scoring. Use when comparing frameworks, evaluating technology stacks, calculating total cost of ownership, assessing migration paths, or analyzing ecosystem viability.

01

ito-research

withakay

Conduct structured research for feature development, technology evaluation, or problem investigation. Use when the user needs to explore options, analyze trade-offs, or investigate technical approaches.

00

openspec-explore

studyzy

进入探索模式 - 一个用于探索想法、调查问题和澄清需求的思考伙伴。当用户想要在进行更改之前或期间深入思考某事时使用。

4117

thought-patterns

markpitt

Orchestrates comprehensive cognitive thinking patterns including sequential, systems, lateral, divergent/convergent, abductive, analogical, first-principles, double-loop learning, gestalt, metacognitive, and neurodivergent patterns (ADHD hyperfocus, autistic detail-orientation, dyslexic spatial reasoning). Analyzes tasks to select optimal pattern(s), chains multiple patterns when needed, and validates outputs before responding. Use for complex problem-solving, creative tasks, analytical challenges, or when diverse cognitive approaches enhance solution quality.

697

startup-analyst

sickn33

Expert startup business analyst specializing in market sizing, financial modeling, competitive analysis, and strategic planning for early-stage companies. Use PROACTIVELY when the user asks about market opportunity, TAM/SAM/SOM, financial projections, unit economics, competitive landscape, team planning, startup metrics, or business strategy for pre-seed through Series A startups.

827

Search skills

Search the agent skills registry