Skip to content

Create skills.md for FalkorDB Agent Skill documentation#399

Open
danshalev7 wants to merge 1 commit intomainfrom
danshalev7-patch-9
Open

Create skills.md for FalkorDB Agent Skill documentation#399
danshalev7 wants to merge 1 commit intomainfrom
danshalev7-patch-9

Conversation

@danshalev7
Copy link
Contributor

@danshalev7 danshalev7 commented Mar 23, 2026

Added documentation for FalkorDB skills, including usage instructions and examples.

Summary by CodeRabbit

  • Documentation
    • Added "FalkorDB Skills" guide for AI coding assistants with 27 runnable examples covering Cypher operations, JavaScript UDF operations, and Docker operations. Includes usage instructions for integration into AI tools.

Added documentation for FalkorDB skills, including usage instructions and examples.
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Mar 23, 2026

📝 Walkthrough

Walkthrough

A new documentation file genai-tools/skills.md has been introduced, detailing FalkorDB Skills as an Agent Skill for AI coding assistants. The page provides metadata, outlines 27 runnable examples across three operational categories, and includes setup and usage instructions for integration.

Changes

Cohort / File(s) Summary
Documentation Addition
genai-tools/skills.md
New documentation page introducing FalkorDB Skills with frontmatter, scope description (27 examples across Cypher, JavaScript UDF, and Docker operations), and integration instructions.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Poem

🐰 A skills page hops into view,
FalkorDB's tricks, twenty-seven and true,
From Cypher to Docker with unyielding care,
New pathways for agents to code and prepare! 📚✨

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and specifically summarizes the main change: adding a new skills.md documentation file for FalkorDB Agent Skill documentation.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch danshalev7-patch-9

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
genai-tools/skills.md (1)

19-21: Consider clarifying the hidden directory naming.

The clone target .falkordb-skills starts with a dot, creating a hidden directory on Unix-based systems. While this keeps the project root clean, users unfamiliar with hidden directories might not realize where the files were cloned. Consider either:

  • Using a visible directory name (e.g., falkordb-skills), or
  • Adding a brief note that the directory is hidden and explaining how to access it
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@genai-tools/skills.md` around lines 19 - 21, The README currently clones into
a hidden directory using the target name `.falkordb-skills`; update the git
clone example or add a note to avoid confusion: either change the clone target
to a visible name like `falkordb-skills` in the example command (`git clone
https://github.com/FalkorDB/skills.git falkordb-skills`) or append a one-line
clarification after the `.falkordb-skills` example explaining that the leading
dot makes the folder hidden on Unix systems and how to list/open it (e.g., use
`ls -a` or `cd .falkordb-skills`), referencing the `.falkordb-skills` string so
readers know which entry to expect.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@genai-tools/skills.md`:
- Line 15: The "Usage" heading is currently at level 4 ("#### Usage") but the
document jumps from h1 to h4; change the heading to the correct level (use "##
Usage" to follow the h1) and ensure subsequent headings under this section use
sequential levels (###, #### as needed) so heading levels increment by one;
locate the "#### Usage" string in genai-tools/skills.md and update it to "##
Usage".

---

Nitpick comments:
In `@genai-tools/skills.md`:
- Around line 19-21: The README currently clones into a hidden directory using
the target name `.falkordb-skills`; update the git clone example or add a note
to avoid confusion: either change the clone target to a visible name like
`falkordb-skills` in the example command (`git clone
https://github.com/FalkorDB/skills.git falkordb-skills`) or append a one-line
clarification after the `.falkordb-skills` example explaining that the leading
dot makes the folder hidden on Unix systems and how to list/open it (e.g., use
`ls -a` or `cd .falkordb-skills`), referencing the `.falkordb-skills` string so
readers know which entry to expect.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 1834d796-b28b-44b5-9663-5ec2df673d03

📥 Commits

Reviewing files that changed from the base of the PR and between df21552 and bb0b626.

📒 Files selected for processing (1)
  • genai-tools/skills.md

- **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
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

Fix heading level for proper document structure.

The heading jumps from h1 to h4, skipping h2 and h3. This violates markdown best practices and can affect document navigation and accessibility. As per static analysis, heading levels should increment by one level at a time.

📝 Proposed fix
-#### Usage
+## Usage
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
#### Usage
## Usage
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)

[warning] 15-15: Heading levels should only increment by one level at a time
Expected: h2; Actual: h4

(MD001, heading-increment)

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@genai-tools/skills.md` at line 15, The "Usage" heading is currently at level
4 ("#### Usage") but the document jumps from h1 to h4; change the heading to the
correct level (use "## Usage" to follow the h1) and ensure subsequent headings
under this section use sequential levels (###, #### as needed) so heading levels
increment by one; locate the "#### Usage" string in genai-tools/skills.md and
update it to "## Usage".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant