Neo4j graph database development including data modeling and Cypher query optimization
Executes Cypher queries and retrieves Neo4j schema via MCP servers. Use when reading/writing graph data, validating schemas, or optimizing queries.
/plugin marketplace add Byunk/claude-code-toolkit/plugin install neo4j-dev@claude-code-toolkitThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/cypher-best-practices.mdreferences/index-strategies.mdreferences/modeling-patterns.mdreferences/query-optimization.mdComprehensive toolkit for Neo4j graph database development, integrating with MCP servers for schema management, query execution, and data modeling.
Query execution and schema retrieval.
| Tool | Description | Parameters |
|---|---|---|
get_neo4j_schema | Retrieve database schema | sample_param (optional) |
read_neo4j_cypher | Execute read queries | query, params (optional) |
write_neo4j_cypher | Execute write queries | query, params (optional) |
Graph data model design and validation.
| Tool | Description |
|---|---|
validate_node | Validate node definitions |
validate_relationship | Validate relationship definitions |
validate_data_model | Validate complete data model |
get_mermaid_config_str | Generate Mermaid diagram |
load_from_arrows_json | Import from Arrows.app |
export_to_arrows_json | Export to Arrows.app |
| Agent | Use When |
|---|---|
graph-modeler | Designing new graph data models from domain requirements |
cypher-developer | Writing, optimizing, or debugging Cypher queries |
schema-analyst | Reviewing existing schema for issues and optimization opportunities |
Load these references as needed for detailed knowledge:
| Reference | Description | Load When |
|---|---|---|
references/modeling-patterns.md | Graph modeling patterns and anti-patterns | Designing data models |
references/cypher-best-practices.md | Cypher syntax patterns and conventions | Writing queries |
references/index-strategies.md | Index types and selection strategies | Creating indexes |
references/query-optimization.md | EXPLAIN/PROFILE and optimization techniques | Optimizing slow queries |
// Use parameters for query caching
MATCH (n:Person {name: $name}) RETURN n
// Early filtering reduces working set
MATCH (n:Person)
WHERE n.age > 30
WITH n
MATCH (n)-[:KNOWS]->(friend)
RETURN friend
// Always bound variable-length patterns
MATCH path = (n)-[:KNOWS*1..5]-(m)
RETURN path LIMIT 100
| Type | Use Case |
|---|---|
| Range | Equality, range, prefix queries |
| Composite | Multi-property filters |
| Text | CONTAINS, ENDS WITH |
| Full-Text | Fuzzy search with scoring |
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.