← all publishers

falkordb

@falkordb source repo

46 published skills

  1. Code Graph · falkordb bundle
    This skill should be used when understanding code structure, finding dependencies between functions/classes, tracing call graphs, or exploring code relationships. Trigger phrases include 'code graph', 'call graph', 'who calls', 'what calls', 'find dependencies', 'code structure', 'inheritance', 'find paths'.
    0
    installs
  2. Falkordb Snowflake Native App Skill · falkordb bundle
    Help users install, configure, load data into, query, size, troubleshoot, and use the FalkorDB Snowflake Native App with Cypher, Snowpark Container Services, and Cortex Agents.
    0
    installs
  3. Bench · falkordb
    Bench loop
    0
    installs
  4. Find Paths In Falkordb · falkordb bundle
    Use algo.SPpaths/algo.SSpaths procedures and variable-length patterns to find paths in read queries
    0
    installs
  5. Query Falkordb Vector Indexes · falkordb bundle
    Find nearest-neighbor nodes with the db.idx.vector.queryNodes procedure when a vector index exists
    0
    installs
  6. Query Falkordb Full Text Indexes · falkordb bundle
    Search text properties with the db.idx.fulltext.queryNodes procedure when a full-text index exists
    0
    installs
  7. Use Falkordb Parameterized Queries · falkordb bundle
    Prefix read queries with CYPHER parameters for plan caching and safer value handling
    0
    installs
  8. Apply Falkordb Index Aware Predicates · falkordb bundle
    Write predicates that let FalkorDB use indexes and avoid full scans in read queries
    0
    installs
  9. Fuzz · falkordb
    Run and manage FalkorDB's cargo-fuzz pipeline for the query runtime (fuzz_target_runtime) - build the fuzz target, run/minimize the corpus, generate coverage, and reproduce a crash artifact. Use when asked to fuzz test the runtime, investigate a fuzzing crash/artifact, or update the fuzz corpus.
    0
    installs
  10. Lint · falkordb
    Run FalkorDB's stricter opt-in Clippy pass (pedantic/nursery/cargo lints) beyond the basic CI gate, optionally auto-fixing. Use when asked for a deep/strict lint pass or to auto-fix clippy warnings; for the standard fmt+clippy CI gate use the build skill.
    0
    installs
  11. Test · falkordb
    Run FalkorDB's test suites - Rust unit tests, Python e2e/function/MVCC/concurrency tests, openCypher TCK compliance tests, and flow tests. Use when asked to run, narrow down, or debug a failing test, or to decide which suite covers a change.
    0
    installs
  12. Debug · falkordb
    Debug FalkorDB crashes, hangs, panics, and incorrect query results - attach lldb/gdb to redis-server with the module loaded, understand panic/crash behavior, step through query execution, and triage failing CI runs. Use when investigating a crash, hang, wrong query result, or a red CI job.
    0
    installs
  13. Profile · falkordb
    Profile FalkorDB performance - generate samply flamegraphs and run the benchmark suite. Use when investigating a performance regression/bottleneck or comparing benchmark results. For code-coverage reports use the coverage skill.
    0
    installs
  14. Coverage · falkordb
    Measure FalkorDB code coverage with LLVM source-based instrumentation across Rust unit tests, Python e2e/MVCC/concurrency tests, flow tests, and TCK - producing an lcov report. Use when asked to measure/report test coverage or reproduce the CI coverage job locally.
    0
    installs
  15. Falkordb Skills · falkordb bundle
    Practical FalkorDB guidance — Cypher queries, UDF management, Docker operations, and data ingestion. Use when writing or reviewing FalkorDB queries, setting up FalkorDB containers, working with user-defined functions, or migrating data from other sources.
    0
    installs
  16. List Udf Libraries With Code · falkordb bundle
    View all loaded UDF libraries and their source code using GRAPH.UDF LIST WITHCODE
    0
    installs
  17. Delete Or Flush Udf Libraries · falkordb bundle
    Remove specific UDF libraries with GRAPH.UDF DELETE or clear all with GRAPH.UDF FLUSH
    0
    installs
  18. Load A Javascript Udf Library · falkordb bundle
    Register User-Defined Functions written in JavaScript with FalkorDB using falkor.register()
    0
    installs
  19. Call A Udf From Cypher · falkordb bundle
    Invoke registered UDFs within Cypher queries using LibraryName.FunctionName() syntax
    0
    installs
  20. Manage Constraints With Awareness Of Async Creation · falkordb bundle
    Create and check status of constraints on node properties in FalkorDB with db.constraints()
    0
    installs
  21. Track Slow Queries · falkordb bundle
    Use GRAPH.SLOWLOG to identify and monitor slow queries and performance bottlenecks
    0
    installs
  22. Verify Index Usage · falkordb bundle
    Confirm queries are using indexes through execution plan analysis with GRAPH.EXPLAIN
    0
    installs
  23. Inspect Query Plans Before Execution · falkordb bundle
    Use GRAPH.EXPLAIN to view query execution plans and validate index usage without running
    0
    installs
  24. Run Server Only For Production Style Usage · falkordb bundle
    Run FalkorDB server-only container without browser UI for lean production deployments
    0
    installs
  25. Create Range Indexes For Exact Range Lookups · falkordb bundle
    Create indexes to accelerate equality and range predicates on node properties in FalkorDB
    0
    installs
  26. Respect Udf Limitations · falkordb bundle
    Design UDFs as pure functions that transform data without mutating the graph in FalkorDB
    0
    installs
  27. Profile Query Runtime Behavior · falkordb bundle
    Use GRAPH.PROFILE to see per-operator runtime statistics and record counts for queries
    0
    installs
  28. Run Safe Read Only Queries · falkordb bundle
    Use GRAPH.RO_QUERY for read-only operations that reject write attempts in FalkorDB
    0
    installs
  29. Set Module Config Using Falkordb Args · falkordb bundle
    Configure FalkorDB module settings like thread count and timeout with FALKORDB_ARGS
    0
    installs
  30. Set Authentication Using Redis Args · falkordb bundle
    Configure Redis authentication password using REDIS_ARGS environment variable
    0
    installs
  31. Use Docker Compose For Repeatable Local Stacks · falkordb bundle
    Define FalkorDB configuration with ports and environment variables in docker-compose.yml
    0
    installs
  32. Apply Falkordb Cypher Limitations Correctly · falkordb bundle
    Account for FalkorDB Cypher limitations like non-indexed not-equal filters when designing queries
    0
    installs
  33. Inspect Graphs And Memory Usage · falkordb bundle
    Use GRAPH.LIST, GRAPH.INFO, and GRAPH.MEMORY USAGE to monitor graphs and resources
    0
    installs
  34. Use Parameterized Queries For Cache Reuse · falkordb bundle
    Use CYPHER parameters in queries to enable query plan caching and improve performance
    0
    installs
  35. Migrate SQL To Falkordb · falkordb bundle
    Migrate and continuously sync data from SQL systems into FalkorDB
    0
    installs
  36. Run The Browser Separately Against A Server · falkordb bundle
    Run FalkorDB browser and server as separate containers connected via FALKORDB_URL
    0
    installs
  37. Use Bulk Loader From CSV · falkordb bundle
    Build FalkorDB databases from CSV inputs using the falkordb-bulk-loader utility
    0
    installs
  38. Update And Remove Properties Safely · falkordb bundle
    Update node properties using SET and remove properties by setting them to NULL in FalkorDB
    0
    installs
  39. Migrate Neo4j To Falkordb · falkordb bundle
    Extract data from Neo4j to CSV and load it into FalkorDB
    0
    installs
  40. Run Falkordb With Browser For Local Development · falkordb bundle
    Run FalkorDB container with both database and browser UI for local development environments
    0
    installs
  41. Use Merge To Avoid Duplicate Nodes · falkordb bundle
    Use MERGE for idempotent upserts with ON CREATE and ON MATCH clauses to avoid duplicates
    0
    installs
  42. Create Nodes And Relationships · falkordb bundle
    Create labeled nodes and connect them with properties using CREATE in FalkorDB
    0
    installs
  43. Migrate Neptune To Falkordb · falkordb bundle
    Convert AWS Neptune Export CSVs and load them into FalkorDB
    0
    installs
  44. Create And Query Vector Indexes · falkordb bundle
    Use HNSW vector indexes for Approximate Nearest Neighbor (ANN) search with embeddings
    0
    installs
  45. Create And Query Full Text Indexes · falkordb bundle
    Use RediSearch-backed full-text indexes for text search with wildcard and fuzzy matching
    0
    installs
  46. Match Patterns And Return Projections · falkordb bundle
    Match nodes by label and properties using MATCH, then return specific fields from query results
    0
    installs