← Back to Skills Marketplace
emasoudy

Graphiti

by emasoudy · GitHub ↗ · v1.0.1
cross-platform ✓ Security Clean
2607
Downloads
2
Stars
8
Active Installs
2
Versions
Install in OpenClaw
/install graphiti
Description
Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships.
README (SKILL.md)

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)

Tools

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\"}'
"
Usage Guidance
This skill is coherent for calling a Graphiti API, but be aware it will send whatever you query or add to the configured Graphiti service. Before installing, confirm the Graphiti URL (clawdbot config or $GRAPHITI_URL) points to a trusted server (especially if remote). Ensure curl and jq are available if you intend to run the provided commands. If you don't want your data sent off-host, do not configure a remote Graphiti URL or avoid using the skill.
Capability Analysis
Type: OpenClaw Skill Name: graphiti Version: 1.0.1 The skill bundle is benign. It provides functionality to interact with a Graphiti knowledge graph API, using standard `curl` and `jq` commands. The `env-check.sh` script (references/env-check.sh) safely discovers the Graphiti service URL via Clawdbot config, environment variables, or a localhost fallback, and performs a health check. There is no evidence of data exfiltration, malicious execution, persistence mechanisms, obfuscation, or prompt injection attempts against the agent in SKILL.md. All actions are transparent and directly related to the stated purpose of knowledge graph operations.
Capability Assessment
Purpose & Capability
Name/description (knowledge-graph operations) match the files and SKILL.md: the skill runs curl against a Graphiti service and offers search/add endpoints. Declared dependencies (graphiti, neo4j, qdrant) align with the stated purpose.
Instruction Scope
Runtime instructions perform network calls to the configured Graphiti URL (/facts/search and /messages) and use a small env-check.sh to discover the URL via clawdbot config or $GRAPHITI_URL. This is expected for a remote API integration, but it means user queries and added 'episodes' will be transmitted to the configured Graphiti service — verify that endpoint is trusted.
Install Mechanism
Instruction-only skill with no install spec; no arbitrary downloads or archive extraction. Manifest lists expected system utilities (curl, jq) but the skill does not install any code automatically.
Credentials
The skill does not request secrets or extra environment variables. It reads a single clawdbot config key (skills.graphiti.baseUrl) and $GRAPHITI_URL which is proportional to its purpose. No unrelated credentials or config paths are requested.
Persistence & Privilege
always is false and the skill does not request elevated or persistent privileges or modify other skills/settings. The env-check script only reads a single config key and checks service health.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install graphiti
  3. After installation, invoke the skill by name or use /graphiti
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
graphiti 1.0.1 – Documentation and metadata update. - Updated README.md with usage instructions, prerequisites, dynamic configuration, and examples for searching and adding episodes to the knowledge graph. - No functional or API changes; documentation improvements only.
v1.0.0
- Initial release of the Graphiti skill. - Enables searching facts, adding episodes, and extracting entities/relationships via the Graphiti API. - Supports dynamic service discovery for the Graphiti API endpoint through environment variables, config, or default value. - Provides CLI usage examples for searching and adding to the knowledge graph.
Metadata
Slug graphiti
Version 1.0.1
License
All-time Installs 9
Active Installs 8
Total Versions 2
Frequently Asked Questions

What is Graphiti?

Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships. It is an AI Agent Skill for Claude Code / OpenClaw, with 2607 downloads so far.

How do I install Graphiti?

Run "/install graphiti" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Graphiti free?

Yes, Graphiti is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Graphiti support?

Graphiti is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Graphiti?

It is built and maintained by emasoudy (@emasoudy); the current version is v1.0.1.

💬 Comments