Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills Aโ€“Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Osint Graph Analyzer

ASecurity

Build knowledge graphs from OSINT data and discover hidden patterns

14 stars
0 votes
0 copies
2 views
Added 9/7/2026
datapythongobashnodedockerapi

Works with

api

Security Analysis

A100/100

Scanned 9/7/2026

Install to Claude Code

$npx -y skills add modbender/skill-library-mcp --skill osint-graph-analyzer --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Osint Graph Analyzer?

Add the live security badge to your README โ€” it updates automatically with every re-scan.

Security grade badge for Osint Graph Analyzer
[![Security: A โ€” Skills Directory](https://www.skillsdirectory.com/api/skills/modbender-osint-graph-analyzer/badge)](https://www.skillsdirectory.com/skills/modbender-osint-graph-analyzer)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: OSINT Graph Analyzer ๐Ÿ•ต๏ธ
description: Build knowledge graphs from OSINT data and discover hidden patterns
  using Neo4j graph algorithms.
---

# OSINT Graph Analyzer ๐Ÿ•ต๏ธ

Build knowledge graphs from OSINT data and discover hidden patterns using Neo4j graph algorithms.

## What It Does

Ingests OSINT data from multiple sources and creates a Neo4j knowledge graph for:
- **Entity linking** โ€” Connect same person across platforms
- **Community detection** โ€” Find clusters of related entities
- **Centrality analysis** โ€” Identify key influencers in networks
- **Path analysis** โ€” Trace connections between entities
- **Pattern recognition** โ€” Detect anomalies and hidden relationships

## Use Cases

- **Investigation workflows** โ€” Map relationships in complex cases
- **Threat intelligence** โ€” Identify central nodes in attack networks
- **Social network analysis** โ€” Discover communities and influence patterns
- **Counter-OSINT** โ€” Understand your own exposure surface

## Requirements

- Neo4j 5.x (local or remote)
- Python 3.9+
- neo4j-driver package

## Usage

```bash
# Start Neo4j instance (local)
docker run -d \
  --name neo4j \
  -p 7474:7474 -p 7687:7687 \
  -e NEO4J_AUTH=neo4j/password \
  neo4j:5.23

# Ingest data
python3 scripts/osint-graph.py --ingest data/sources.csv

# Run community detection
python3 scripts/osint-graph.py --community-detection

# Find most central entities
python3 scripts/osint-graph.py --centrality --top 10

# Trace path between two entities
python3 scripts/osint-graph.py --path "Entity A" "Entity B"

# Export graph as visualization
python3 scripts/osint-graph.py --export graph.json
```

## Data Format

Supported formats:
- CSV (node + edge files)
- JSON (Cypher queries)
- Direct API ingestion (Telegram, Twitter, etc.)

CSV example:
```csv
nodes.csv:
id,name,type,properties
1,@target_account,person,"{country:US,verified:true}"
2,@associated_handle,person,"{country:RU}"

edges.csv:
source,target,relationship,timestamp
1,2,MENTIONED,2026-01-31
```

## Graph Algorithms

| Algorithm | What It Finds | Use Case |
|------------|----------------|-----------|
| **Louvain** | Community clusters | Find groups working together |
| **PageRank** | Influence centrality | Identify key influencers |
| **Betweenness** | Bridge nodes | Find connection points between communities |
| **Shortest Path** | Connection chains | Trace indirect relationships |
| **Weakly Connected** | Disconnected subgraphs | Find isolated clusters |

## Architecture

```
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  Ingestion      โ”‚  โ† CSV/JSON/API sources
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚
         โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  Neo4j Graph    โ”‚  โ† Nodes + Relationships
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚
         โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  Algorithms     โ”‚  โ† GraphX / Neo4j Graph Algorithms
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
         โ”‚
         โ–ผ
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚  Visualization  โ”‚  โ† JSON export + D3.js / Cytoscape
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
```

## Inspiration

- **CRIS** โ€” Multi-agent criminal intelligence system with Neo4j
- **Context Graphs** โ€” Semantic search + structural analysis
- **osint-analyser** โ€” LLM-powered OSINT automation

## Local-Only Promise

- Data stays local (Neo4j instance)
- No external API calls for analysis
- Optional offline mode

## Version History

- **v0.1** โ€” MVP: CSV ingest, basic algorithms, JSON export
- Roadmap: API integration, ML anomaly detection, real-time updates

Attribution

modbendermodbender
View sourceMore from modbender โ†’
SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots ยท $299/mo ยท GSC-verified traffic ยท sponsors can never buy grades.

See placements

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Your tool, in front of Claude Code builders.

3 founder slots ยท $299/mo ยท GSC-verified traffic ยท sponsors can never buy grades.

See placements

Related Skills

Rank Tracker

This skill helps you track, analyze, and report on keyword ranking positions over time. It monitors both traditional SERP rankings and AI/GEO visibility to provide comprehensive search performance insights.

1821 votes

Youtube Competitor Analyzer

Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...

31 votes

Twitter Algorithm Optimizer

Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.

742580 votes

Weather Fetcher

Instructions for fetching current weather temperature data for Karachi, Pakistan from wttr.in API

663290 votes

Weather

Get current weather and forecasts (no API key required).

484900 votes
View all in data โ†’