diff --git a/.wordlist.txt b/.wordlist.txt index 8c1a1543..738c7b7b 100644 --- a/.wordlist.txt +++ b/.wordlist.txt @@ -293,6 +293,7 @@ replaceRegEx rgraph rueidis runtime +runnable rustis sbin selectGraph diff --git a/genai-tools/index.md b/genai-tools/index.md index 9e9295c0..d0ef99b4 100644 --- a/genai-tools/index.md +++ b/genai-tools/index.md @@ -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. diff --git a/genai-tools/skills.md b/genai-tools/skills.md new file mode 100644 index 00000000..5b2febc1 --- /dev/null +++ b/genai-tools/skills.md @@ -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: + +- **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 + +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 +``` + +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).