skills$openclaw/graphiti
emasoudy8.5k

by emasoudy

graphiti – OpenClaw Skill

graphiti is an OpenClaw Skills integration for data analytics workflows. Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships.

8.5k stars6.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namegraphiti
descriptionKnowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships. OpenClaw Skills integration.
owneremasoudy
repositoryemasoudy/graphiti
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @emasoudy/graphiti
last updatedFeb 7, 2026

Maintainer

emasoudy

emasoudy

Maintains graphiti in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
references
env-check.sh
453 B
_meta.json
270 B
manifest.json
945 B
README.md
740 B
SKILL.md
2.2 KB
SKILL.md

name: graphiti description: Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships. homepage: https://github.com/getzep/graphiti metadata: {"clawdbot":{"emoji":"🕸️","requires":{"services":["neo4j","qdrant","graphiti"]},"install":[{"id":"docker","kind":"docker-compose","label":"Install Graphiti stack (Docker)"}]}}

Graphiti Knowledge Graph

Query and manage your knowledge graph using Graphiti's REST API with dynamic service discovery.

Prerequisites

  • Neo4j database (graph storage)
  • Qdrant (vector search)
  • Graphiti service running (default: http://localhost:8001)

graphiti_search

Search the knowledge graph for relevant facts.

Usage:

bash command:"
GRAPHITI_URL=\$({baseDir}/references/env-check.sh)
curl -s -X POST \"\$GRAPHITI_URL/facts/search\" \
  -H 'Content-Type: application/json' \
  -d '{\"query\": \"YOUR_QUERY\", \"max_facts\": 10}' | jq .
"

graphiti_add

Add a new episode/memory to the knowledge graph.

Usage:

bash command:"
GRAPHITI_URL=\$({baseDir}/references/env-check.sh)
curl -s -X POST \"\$GRAPHITI_URL/messages\" \
  -H 'Content-Type: application/json' \
  -d '{\"name\": \"EPISODE_NAME\", \"content\": \"EPISODE_CONTENT\"}' | jq .
"

Dynamic Configuration

The skill uses environment discovery to find Graphiti automatically:

  1. Clawdbot config: clawdbot config get skills.graphiti.baseUrl
  2. Environment variable: $GRAPHITI_URL
  3. Default fallback: http://localhost:8001

To change the Graphiti URL:

export GRAPHITI_URL="http://10.0.0.10:8001"
# OR
clawdbot config set skills.graphiti.baseUrl "http://10.0.0.10:8001"

Examples

Search for information:

bash command:"
GRAPHITI_URL=\$({baseDir}/references/env-check.sh)
curl -s -X POST \"\$GRAPHITI_URL/facts/search\" \
  -H 'Content-Type: application/json' \
  -d '{\"query\": \"Tell me about Essam Masoudy\", \"max_facts\": 5}'
"

Add a memory:

bash command:"
GRAPHITI_URL=\$({baseDir}/references/env-check.sh)
curl -s -X POST \"\$GRAPHITI_URL/messages\" \
  -H 'Content-Type: application/json' \
  -d '{\"name\": \"Project Update\", \"content\": \"Completed Phase 1 of Clawdbot integration\"}'
"
README.md

Graphiti Knowledge Graph Skill

Query and manage your knowledge graph using Graphiti's REST API with automatic service discovery.

Installation

clawdhub install graphiti

Or manual:

git clone https://github.com/emasoudy/clawdbot-skills.git
cp -r clawdbot-skills/graphiti ~/.clawdbot/skills/

Usage

Search knowledge graph:

User: "Search for information about our project"
Agent: [Queries Graphiti and returns relevant facts]
# Set custom Graphiti URL
clawdbot config set skills.graphiti.baseUrl "http://your-server:8001"

# Or use environment variable
export GRAPHITI_URL="http://your-server:8001"

Default: http://localhost:8001

License

MIT - See LICENSE file

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- Neo4j database (graph storage) - Qdrant (vector search) - Graphiti service running (default: http://localhost:8001)

Configuration

The skill uses environment discovery to find Graphiti automatically: 1. **Clawdbot config**: `clawdbot config get skills.graphiti.baseUrl` 2. **Environment variable**: `$GRAPHITI_URL` 3. **Default fallback**: `http://localhost:8001` To change the Graphiti URL: ```bash export GRAPHITI_URL="http://10.0.0.10:8001"

FAQ

How do I install graphiti?

Run openclaw add @emasoudy/graphiti in your terminal. This installs graphiti into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/emasoudy/graphiti. Review commits and README documentation before installing.