Skip to main content
在 Manus 中运行任何 Skill
一键导入
GitHub 仓库

skills

skills 收录了来自 FalkorDB 的 32 个 skills,并提供仓库级职业覆盖和站内 skill 详情页。

已收集 skills
32
Stars
22
更新
2026-05-20
Forks
2
职业覆盖
3 个职业分类 · 已分类 100%
仓库浏览

这个仓库中的 skills

falkordb-skills
数据库架构师

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.

2026-05-20
migrate-neo4j-to-falkordb
数据库架构师

Extract data from Neo4j to CSV and load it into FalkorDB

2026-05-17
migrate-neptune-to-falkordb
数据库架构师

Convert AWS Neptune Export CSVs and load them into FalkorDB

2026-05-17
migrate-sql-to-falkordb
数据库架构师

Migrate and continuously sync data from SQL systems into FalkorDB

2026-05-17
use-bulk-loader-from-csv
数据库架构师

Build FalkorDB databases from CSV inputs using the falkordb-bulk-loader utility

2026-05-17
apply-falkordb-cypher-limitations-correctly
数据库架构师

Account for FalkorDB Cypher limitations like non-indexed not-equal filters when designing queries

2026-02-04
create-and-query-full-text-indexes
数据库架构师

Use RediSearch-backed full-text indexes for text search with wildcard and fuzzy matching

2026-02-04
create-and-query-vector-indexes
数据库架构师

Use HNSW vector indexes for Approximate Nearest Neighbor (ANN) search with embeddings

2026-02-04
create-nodes-and-relationships
数据库架构师

Create labeled nodes and connect them with properties using CREATE in FalkorDB

2026-02-04
create-range-indexes-for-exactrange-lookups
数据库架构师

Create indexes to accelerate equality and range predicates on node properties in FalkorDB

2026-02-04
inspect-graphs-and-memory-usage
数据库架构师

Use GRAPH.LIST, GRAPH.INFO, and GRAPH.MEMORY USAGE to monitor graphs and resources

2026-02-04
inspect-query-plans-before-execution
数据库架构师

Use GRAPH.EXPLAIN to view query execution plans and validate index usage without running

2026-02-04
manage-constraints-with-awareness-of-async-creation
数据库架构师

Create and check status of constraints on node properties in FalkorDB with db.constraints()

2026-02-04
match-patterns-and-return-projections
数据库架构师

Match nodes by label and properties using MATCH, then return specific fields from query results

2026-02-04
profile-query-runtime-behavior
数据库架构师

Use GRAPH.PROFILE to see per-operator runtime statistics and record counts for queries

2026-02-04
run-safe-read-only-queries
数据库架构师

Use GRAPH.RO_QUERY for read-only operations that reject write attempts in FalkorDB

2026-02-04
track-slow-queries
数据库架构师

Use GRAPH.SLOWLOG to identify and monitor slow queries and performance bottlenecks

2026-02-04
update-and-remove-properties-safely
数据库架构师

Update node properties using SET and remove properties by setting them to NULL in FalkorDB

2026-02-04
use-merge-to-avoid-duplicate-nodes
数据库架构师

Use MERGE for idempotent upserts with ON CREATE and ON MATCH clauses to avoid duplicates

2026-02-04
use-parameterized-queries-for-cache-reuse
数据库架构师

Use CYPHER parameters in queries to enable query plan caching and improve performance

2026-02-04
verify-index-usage
数据库架构师

Confirm queries are using indexes through execution plan analysis with GRAPH.EXPLAIN

2026-02-04
run-the-browser-separately-against-a-server
网络与计算机系统管理员

Run FalkorDB browser and server as separate containers connected via FALKORDB_URL

2026-02-04
run-server-only-for-production-style-usage
网络与计算机系统管理员

Run FalkorDB server-only container without browser UI for lean production deployments

2026-02-04
run-falkordb-with-browser-for-local-development
网络与计算机系统管理员

Run FalkorDB container with both database and browser UI for local development environments

2026-02-04
set-authentication-using-redis-args
网络与计算机系统管理员

Configure Redis authentication password using REDIS_ARGS environment variable

2026-02-04
set-module-config-using-falkordb-args
网络与计算机系统管理员

Configure FalkorDB module settings like thread count and timeout with FALKORDB_ARGS

2026-02-04
use-docker-compose-for-repeatable-local-stacks
网络与计算机系统管理员

Define FalkorDB configuration with ports and environment variables in docker-compose.yml

2026-02-04
call-a-udf-from-cypher
数据库架构师

Invoke registered UDFs within Cypher queries using LibraryName.FunctionName() syntax

2026-02-04
delete-or-flush-udf-libraries
数据库架构师

Remove specific UDF libraries with GRAPH.UDF DELETE or clear all with GRAPH.UDF FLUSH

2026-02-04
list-udf-libraries-with-code
数据库架构师

View all loaded UDF libraries and their source code using GRAPH.UDF LIST WITHCODE

2026-02-04
load-a-javascript-udf-library
软件开发工程师

Register User-Defined Functions written in JavaScript with FalkorDB using falkor.register()

2026-02-04
respect-udf-limitations
软件开发工程师

Design UDFs as pure functions that transform data without mutating the graph in FalkorDB

2026-02-04