Skip to content
1 change: 1 addition & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ replaceRegEx
rgraph
rueidis
runtime
runnable
rustis
sbin
selectGraph
Expand Down
1 change: 1 addition & 0 deletions genai-tools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ FalkorDB provides powerful tools and integrations for building intelligent GenAI
- [FalkorDB MCP Server](./mcpserver/): Enable AI assistants like Claude to interact with FalkorDB using the Model Context Protocol.
- [QueryWeaver](./queryweaver.md): Open-source Text2SQL tool that converts plain-English questions into SQL using graph-powered schema understanding.
- [Code-Graph](./code-graph.md): Visualize codebases as knowledge graphs to analyze dependencies, detect bottlenecks, and query code structure.
- [Skills](./skills.md): Agent Skill that gives AI coding assistants accurate, runnable knowledge of FalkorDB across Cypher, UDFs, and Docker operations.
26 changes: 26 additions & 0 deletions genai-tools/skills.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
title: "FalkorDB Skills"
parent: "GenAI Tools"
nav_order: 8
description: "Practical FalkorDB guidance packaged as an Agent Skill. Give your AI coding assistant deep knowledge of FalkorDB -- Cypher queries, user-defined functions, Docker operations, indexing, and more."
---

# FalkorDB Skills

[FalkorDB Skills](https://github.com/FalkorDB/skills) is an [Agent Skill](https://agentskills.io) that gives your AI coding assistant accurate, up-to-date knowledge of FalkorDB. It covers **27 runnable examples** across three categories:

Comment on lines +8 to +11
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new page isn’t referenced from genai-tools/index.md’s “Topics in This Section” list (which currently links to the other child pages). Consider adding an entry there so readers can discover “Skills” from the section landing page.

Copilot uses AI. Check for mistakes.
- **Cypher** (16 skills) -- node/relationship CRUD, MERGE, parameterized queries, EXPLAIN/PROFILE, range/full-text/vector indexes, constraints, and known limitations
- **UDFs** (5 skills) -- load, call, list, and delete JavaScript user-defined function libraries
- **Docker Ops** (6 skills) -- run FalkorDB with browser UI, server-only mode, authentication, module config, and Docker Compose

## Usage
Comment thread
gkorland marked this conversation as resolved.

Clone the repository into your project and point your AI assistant at SKILL.md:

```bash
git clone https://github.com/FalkorDB/skills.git falkordb-skills
```
Comment on lines +18 to +22
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The clone instructions say to “point your AI assistant at SKILL.md”, but the repo is cloned into .falkordb-skills. Consider spelling out the exact path (.falkordb-skills/SKILL.md) and/or adding a short example of how to load that file into the target assistant/tool to prevent confusion.

Copilot uses AI. Check for mistakes.

Or download `SKILL.md` directly and load it into any LLM context window.

For more details, see the [full README](https://github.com/FalkorDB/skills).
Loading