Write Cypher queries with proper patterns for merging, traversal, and performance.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install neo4j或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install neo4j⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/neo4j/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: Neo4j description: Write Cypher queries with proper patterns for merging, traversal, and performance. metadata: {"clawdbot":{"emoji":"🕸️","requires":{"anyBins":["cypher-shell","neo4j"]},"os":["linux","darwin","win32"]}} ---
MERGE matches the FULL pattern—MERGE (a)-[:KNOWS]->(b) creates duplicates if relationship missingON CREATE SET and ON MATCH SET for conditional properties—without these, nothing updates on matchMERGE (n:User {id: $id}) with unique constraint on idEXPLAIN before production—look for "NodeByLabelScan" without filter pushdownCREATE FULLTEXT INDEX FOR (n:Post) ON EACH [n.title, n.body][] explodes on connected graphs—always set upper bound [1..5][0..] includes start node—usually unintended, start from [1..]shortestPath() returns one path only—use allShortestPaths() for all equally short paths[r:KNOWS* WHERE r.active] scans then filters—consider data model changeMATCH (a:User), (b:Product) returns rows × rowsPROFILE query shows "CartesianProduct" operator when it happensMATCH (a)--(b) WITH a loses bMATCH (u:User) WITH u.country AS c, count(*) AS nWITH n ORDER BY n.created SKIP 10 LIMIT 10OPTIONAL MATCH returns NULL for missing patterns—NULLs propagate through expressionsWHERE after OPTIONAL MATCH filters out NULLs—use COALESCE() to preserve rowscount(NULL) returns 0—useful: OPTIONAL MATCH (u)-[:REVIEWED]->(p) RETURN count(p)(a)-[:KNOWS]-(b) matches both ways(a)-[:OWNS]->(b), query (b)-[:OWNS]->(a) finds nothingCALL {} IN TRANSACTIONS OF 1000 ROWSUNWIND $list AS item CREATE (n:Node {id: item.id}) for batch insertsapoc.periodic.iterate() for complex batch logic with progressMATCH (n:Old) WITH n LIMIT 10000 DETACH DELETE n in loop$param not string concatenation—prevents Cypher injection{param: value} in driver, :param {param: value} in browserWHERE n.id IN $ids安装 Neo4j 后,可以对 AI 说这些话来触发它
Help me get started with Neo4j
Explains what Neo4j does, walks through the setup, and runs a quick demo based on your current project
Use Neo4j to write Cypher queries with proper patterns for merging, traversal, a...
Invokes Neo4j with the right parameters and returns the result directly in the conversation
What can I do with Neo4j in my developer & devops workflow?
Lists the top use cases for Neo4j, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/neo4j/ 目录(个人级,所有项目可用),或 .claude/skills/neo4j/(项目级)。重启 AI 客户端后,用 /neo4j 主动调用,或让 AI 根据上下文自动发现并使用。
Neo4j 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Neo4j 可免费安装使用。请查阅仓库了解许可证信息。
Write Cypher queries with proper patterns for merging, traversal, and performance.
Neo4j 属于「Developer & DevOps」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my developer & devops tasks using Neo4j
Identifies repetitive steps in your workflow and sets up Neo4j to handle them automatically