# Send Graphiti to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "graphiti",
    "name": "Graphiti",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/emasoudy/graphiti",
    "canonicalUrl": "https://clawhub.ai/emasoudy/graphiti",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/graphiti",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=graphiti",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "manifest.json",
      "references/env-check.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "graphiti",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T00:14:39.170Z",
      "expiresAt": "2026-05-11T00:14:39.170Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=graphiti",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=graphiti",
        "contentDisposition": "attachment; filename=\"graphiti-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "graphiti"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/graphiti"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/graphiti",
    "downloadUrl": "https://openagent3.xyz/downloads/graphiti",
    "agentUrl": "https://openagent3.xyz/skills/graphiti/agent",
    "manifestUrl": "https://openagent3.xyz/skills/graphiti/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/graphiti/agent.md"
  }
}
```
## Documentation

### 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:

Clawdbot config: clawdbot config get skills.graphiti.baseUrl
Environment variable: $GRAPHITI_URL
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\\"}'
"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: emasoudy
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T00:14:39.170Z
- Expires at: 2026-05-11T00:14:39.170Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/graphiti)
- [Send to Agent page](https://openagent3.xyz/skills/graphiti/agent)
- [JSON manifest](https://openagent3.xyz/skills/graphiti/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/graphiti/agent.md)
- [Download page](https://openagent3.xyz/downloads/graphiti)