graph-db-toolkit

Graph database toolkit for Neo4j and Cypher-based graph analytics. Use when working with knowledge graphs, relationship queries, graph traversal, Neo4j operations, social network analysis, recommendation systems, or any task requiring nodes, edges, and graph patterns. Triggers on phrases like "graph database", "Neo4j", "Cypher query", "knowledge graph", "graph traversal", "relationship analysis", "graph analytics".

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "graph-db-toolkit" with this command: npx skills add kaiyuelv/graph-db-toolkit

Graph Database Toolkit

Operations toolkit for graph databases with focus on Neo4j and Cypher.

Quick Start

from scripts.neo4j_client import Neo4jClient

client = Neo4jClient(uri="bolt://localhost:7687", user="neo4j", password="password")
client.create_node("Person", {"name": "Alice", "age": 30})
client.create_node("Person", {"name": "Bob", "age": 25})
client.create_relationship("Alice", "Person", "KNOWS", "Bob", "Person", {"since": 2020})
results = client.query("""
    MATCH (a:Person)-[r:KNOWS]->(b:Person)
    RETURN a.name, b.name, r.since
""")

Scripts

  • scripts/neo4j_client.py - Neo4j connection and CRUD operations
  • scripts/cypher_builder.py - Cypher query builder utilities
  • scripts/graph_analytics.py - Graph algorithms (centrality, paths, community)

References

  • references/cypher_cheatsheet.md - Common Cypher patterns
  • references/neo4j_patterns.md - Neo4j design patterns

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Research

Pitch Meeting Coach

Coach a founder for the live VC / investor pitch meeting itself (not the deck — different skill). Covers pre-meeting research (partner background, recent inv...

Registry SourceRecently Updated
430Profile unavailable
Research

Session Log Analyzer

Analyze agent session logs, generate PDF analysis reports, and sync them to Notion. Use when you need to (1) analyze session log files for usage statistics a...

Registry SourceRecently Updated
440Profile unavailable
Research

GOG Sales Analytics

Weekly GOG sales scraper, AI analysis via Gemini, and Feishu Drive report sync. Scrapes all discounted games from GOG catalog, generates markdown insights, a...

Registry SourceRecently Updated
460Profile unavailable
Research

Earnings Call Processor

Automated earnings call transcript processing and analysis. Use when the user provides an earnings call audio file or transcript and wants structured analysi...

Registry SourceRecently Updated
1190Profile unavailable