OpenClaw
Deploy a managed OpenClaw agent in 60 seconds
Launch on Hostinger →
Hermes Agent
Run your Hermes agent, fully managed
Launch on Hostinger →
Apify
6,000+ web scrapers for your agent, free to start
Try Apify free →
Firecrawl
Crawl and scrape any site into clean data
Try Firecrawl free →
Context.dev
One API to scrape, enrich, and extract the web
Start building free →
SetupClaw
Done-for-you OpenClaw for founders and teams
Get it set up for you →
DataForSEO
SEO data APIs for your agent, $1 free credit
Try DataForSEO free →
Your product here
Reach thousands of AI builders a month
Learn more →
Claude Market
Menu
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market
SkillsMCPPluginsSubmit MCPSkillPluginMCPMCP, plugin, or skillAdvertise
Claude Market/OpenClaw Skills/Graphify-Labs/Graphify
Graphify logo

Graphify

Graphify-Labs/graphify
Run it on Hostinger, 20% off →Your friend gets 20% off too, using this linkFree API →|Coding & Engineering|View on GitHub|Create your own skill →

Installation

npx -y graphify init

Summary

Builds a knowledge graph out of a codebase (code, docs, SQL schemas, configs) so an agent can query relationships directly instead of repeatedly re-reading raw files for context.

SKILL.md

graphify

![CI](https://github.com/safishamsi/graphify/actions/workflows/ci.yml)

A Claude Code skill. Type /graphify in Claude Code - it reads your files, builds a knowledge graph, and gives you back structure you didn't know was there.

Fully multimodal. Drop in code, PDFs, markdown, screenshots, diagrams, whiteboard photos, even images in other languages - graphify uses Claude vision to extract concepts and relationships from all of it and connects them into one graph.

Andrej Karpathy keeps a /raw folder where he drops papers, tweets, screenshots, and notes. graphify is the answer to that problem - 71.5x fewer tokens per query vs reading the raw files, persistent across sessions, honest about what it found vs guessed.

/graphify .                        # works on any folder - your codebase, notes, papers, anything
graphify-out/
├── graph.html       interactive graph - click nodes, search, filter by community
├── obsidian/        open as Obsidian vault
├── wiki/            Wikipedia-style articles for agent navigation (--wiki)
├── GRAPH_REPORT.md  god nodes, surprising connections, suggested questions
├── graph.json       persistent graph - query weeks later without re-reading
└── cache/           SHA256 cache - re-runs only process changed files

Install

Requires: Claude Code and Python 3.10+

pip install graphifyy && graphify install

The PyPI package is temporarily named graphifyy while the graphify name is being reclaimed. The CLI and skill command are still graphify.

Windows: If graphify is not recognized after install, add the Python Scripts folder to your PATH: %APPDATA%\Python\Python3xx\Scripts (replace 3xx with your Python version, e.g. 313). Or use pipx install graphifyy which handles PATH automatically. macOS (externally managed): Use pipx install graphifyy if pip install fails with an "externally-managed-environment" error.

Then open Claude Code in any directory and type:

/graphify .

<details> <summary>Manual install (curl)</summary>

mkdir -p ~/.claude/skills/graphify
curl -fsSL https://raw.githubusercontent.com/safishamsi/graphify/v1/skills/graphify/skill.md \
  > ~/.claude/skills/graphify/SKILL.md

Add to ~/.claude/CLAUDE.md:

- **graphify** (`~/.claude/skills/graphify/SKILL.md`) - any input to knowledge graph. Trigger: `/graphify`
When the user types `/graphify`, invoke the Skill tool with `skill: "graphify"` before doing anything else.

</details>

Usage

/graphify                          # run on current directory
/graphify ./raw                    # run on a specific folder
/graphify ./raw --mode deep        # more aggressive INFERRED edge extraction
/graphify ./raw --update           # re-extract only changed files, merge into existing graph

/graphify add https://arxiv.org/abs/1706.03762        # fetch a paper, save, update graph
/graphify add https://x.com/karpathy/status/...       # fetch a tweet

/graphify query "what connects attention to the optimizer?"
/graphify path "DigestAuth" "Response"
/graphify explain "SwinTransformer"

/graphify ./raw --watch            # auto-sync graph as files change (code: instant, docs: notifies you)
/graphify ./raw --wiki             # build agent-crawlable wiki (index.md + article per community)
/graphify ./raw --svg              # export graph.svg
/graphify ./raw --graphml          # export graph.graphml (Gephi, yEd)
/graphify ./raw --neo4j            # generate cypher.txt for Neo4j
/graphify ./raw --mcp              # start MCP stdio server

graphify hook install              # post-commit git hook - rebuilds graph on every commit automatically

Works with any mix of file types:

| Type | Extensions | Extraction | |------|-----------|------------| | Code | .py .ts .js .go .rs .java .c .cpp .rb .cs .kt .scala .php | AST via tree-sitter + call-graph pass | | Docs | .md .txt .rst | Concepts + relationships via Claude | | Papers | .pdf | Citation mining + concept extraction | | Images | .png .jpg .webp .gif | Claude vision - screenshots, diagrams, any language |

What you get

God nodes - highest-degree concepts (what everything connects through)

Surprising connections - ranked by composite score. Code-paper edges rank higher than code-code. Each result includes a plain-English why.

Suggested questions - 4-5 questions the graph is uniquely positioned to answer

Token benchmark - printed automatically after every run. On a mixed corpus (Karpathy repos + papers + images): 71.5x fewer tokens per query vs reading raw files.

Auto-sync (--watch) - run in a background terminal and the graph updates itself as your codebase changes. Code file saves trigger an instant rebuild (AST only, no LLM). Doc/image changes notify you to run --update for the LLM re-pass. Useful for agentic workflows where multiple agents are writing code in parallel - the graph stays current between waves automatically.

Git commit hook (graphify hook install) - installs a post-commit hook that rebuilds the graph after every commit. No background process needed. Triggers once per commit, works with any editor, safe to add alongside existing hooks.

Wiki (--wiki) - Wikipedia-style markdown articles per community and god node, with an index.md entry point. Point any agent at index.md and it can navigate the knowledge base by reading files instead of parsing JSON.

Every edge is tagged EXTRACTED, INFERRED, or AMBIGUOUS - you always know what was found vs guessed.

Worked examples

| Corpus | Files | Reduction | Output | |--------|-------|-----------|--------| | Karpathy repos + 5 papers + 4 images | 52 | 71.5x | worked/karpathy-repos/ | | graphify source + Transformer paper | 4 | 5.4x | worked/mixed-corpus/ | | httpx (synthetic Python library) | 6 | ~1x | worked/httpx/ |

Token reduction scales with corpus size. 6 files fits in a context window anyway, so graph value there is structural clarity, not compression. At 52 files (code + papers + images) you get 71x+. Each worked/ folder has the raw input files and the actual output (GRAPH_REPORT.md, graph.json) so you can run it yourself and verify the numbers.

Tech stack

NetworkX + Leiden (graspologic) + tree-sitter + Claude + vis.js. No Neo4j required, no server, runs entirely locally.

<details> <summary>Contributing</summary>

Worked examples are the most trust-building contribution. Run /graphify on a real corpus, save output to worked/{slug}/, write an honest review.md evaluating what the graph got right and wrong, submit a PR.

Extraction bugs - open an issue with the input file, the cache entry (graphify-out/cache/), and what was missed or invented.

See ARCHITECTURE.md for module responsibilities and how to add a language.

</details>

Score

0–100
88/ 100

Grade

A

Popularity28/30

102,533 GitHub stars on the source repo — top-tier adoption. Install counts are not tracked for this skill.

Completeness30/30

Complete listing: SKILL.md body, description, install command, and metadata.

Trust15/25

Community skill with a public GitHub source repository you can review.

Freshness15/15

Updated within the last 90 days.

Scored automatically from popularity, completeness, trust, and freshness — computed only from data in our catalog, never fabricated.

Proud of your score? Add this badge to your README.

Paste a snippet into your GitHub README. The badge updates automatically and links back to this page.

Graphify skill score badge previewScore badge

Markdown

[![Graphify skill](https://www.claudemarket.ai/skills/Graphify-Labs/graphify/badges/score.svg)](https://www.claudemarket.ai/skills/Graphify-Labs/graphify)

HTML

<a href="https://www.claudemarket.ai/skills/Graphify-Labs/graphify"><img src="https://www.claudemarket.ai/skills/Graphify-Labs/graphify/badges/score.svg" alt="Graphify skill"/></a>

Graphify FAQ

How do I install the Graphify skill?

Run “npx -y graphify init” in your terminal. The skill is added to your agent's skills directory and picked up automatically on the next run — no restart or extra configuration needed.

What does the Graphify skill do?

Builds a knowledge graph out of a codebase (code, docs, SQL schemas, configs) so an agent can query relationships directly instead of repeatedly re-reading raw files for context. The SKILL.md section on this page shows the exact instructions the skill gives your agent.

Is the Graphify skill free?

Yes. Graphify is a free, open-source skill published under the Apache-2.0 license by Graphify-Labs. As with any third-party skill, review the source repository before installing it into an agent with sensitive access.

Does Graphify work with Claude Code and OpenClaw?

Yes. Skills use the portable SKILL.md format, so Graphify works with Claude Code, OpenClaw, Codex, Hermes, and any other agent that reads SKILL.md skills.

Recommended skills

Browse all →
DeusData logo

Codebase Memory MCP

DeusData

0 installsInstall
DietrichGebert logo

Ponytail

DietrichGebert

0 installsInstall
uditgoenka logo

Autoresearch

uditgoenka

0 installsInstall
mattpocock logo

A Prototype

mattpocock

0 installsInstall
mattpocock logo

Ask Matt

mattpocock

0 installsInstall
mattpocock logo

Codebase Design

mattpocock

0 installsInstall

Related guides

Hand-picked reading to help you choose, install, and use agent skills.

GuideBest Documentation Skills For AI AgentsGuideOpenclaw Bazaar Persistent Memory SkillsGuide10 Openclaw Skills Every Nextjs Developer Needs

Skills by category

FrontendBackend & APIsTesting & QASecurityDevOps & CI/CDMCP & ToolingAutomationData & Analysis+20 more

MCP servers by category

AI & MLDeveloper ToolsVector & MemoryFiles & DocsDatabasesFinance & PaymentsBrowser & ScrapingCommunication+8 more

Plugins by category

developmentproductivitycommunicationdesignsecuritydatabaseworkflowcompliance+34 more

The Agent Stack

Weekly Claude Code, Agent SDK, and MCP moves worth your time — free.

Claude Market

AI agent skills directory, marketplace, and workflow hub for OpenClaw, Hermes Agent, Claude Code, Codex, and MCP-powered operator stacks.

Independent project, not affiliated with Anthropic.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Plugins

More

  • Submit a Tool
  • Create a Skill
  • Advertise
  • Free Tools
  • API
  • Shipping
  • Contact
  • Terms
  • Privacy
© 2026 Claude Market · Not affiliated with Anthropic
Fazier badgeFeatured on Twelve ToolsFeatured on Wired BusinessRemote OpenClaw - Featured on AI Agents DirectoryListed on Turbo0Featured on Uneed