← 返回 Skills 市场
emasoudy

Graphiti

作者 emasoudy · GitHub ↗ · v1.0.1
cross-platform ✓ 安全检测通过
2607
总下载
2
收藏
8
当前安装
2
版本数
在 OpenClaw 中安装
/install graphiti
功能描述
Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships.
使用说明 (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\"}'
"
安全使用建议
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.
功能分析
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.
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install graphiti
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /graphiti 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug graphiti
版本 1.0.1
许可证
累计安装 9
当前安装数 8
历史版本数 2
常见问题

Graphiti 是什么?

Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 2607 次。

如何安装 Graphiti?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install graphiti」即可一键安装,无需额外配置。

Graphiti 是免费的吗?

是的,Graphiti 完全免费(开源免费),可自由下载、安装和使用。

Graphiti 支持哪些平台?

Graphiti 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Graphiti?

由 emasoudy(@emasoudy)开发并维护,当前版本 v1.0.1。

💬 留言讨论