{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/graphiti",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=graphiti",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "manifest.json",
      "references/env-check.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/graphiti",
    "agentPageUrl": "https://openagent3.xyz/skills/graphiti/agent",
    "manifestUrl": "https://openagent3.xyz/skills/graphiti/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/graphiti/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Graphiti Knowledge Graph",
        "body": "Query and manage your knowledge graph using Graphiti's REST API with dynamic service discovery."
      },
      {
        "title": "Prerequisites",
        "body": "Neo4j database (graph storage)\nQdrant (vector search)\nGraphiti service running (default: http://localhost:8001)"
      },
      {
        "title": "graphiti_search",
        "body": "Search the knowledge graph for relevant facts.\n\nUsage:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/facts/search\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"query\\\": \\\"YOUR_QUERY\\\", \\\"max_facts\\\": 10}' | jq .\n\""
      },
      {
        "title": "graphiti_add",
        "body": "Add a new episode/memory to the knowledge graph.\n\nUsage:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/messages\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"name\\\": \\\"EPISODE_NAME\\\", \\\"content\\\": \\\"EPISODE_CONTENT\\\"}' | jq .\n\""
      },
      {
        "title": "Dynamic Configuration",
        "body": "The skill uses environment discovery to find Graphiti automatically:\n\nClawdbot config: clawdbot config get skills.graphiti.baseUrl\nEnvironment variable: $GRAPHITI_URL\nDefault fallback: http://localhost:8001\n\nTo change the Graphiti URL:\n\nexport GRAPHITI_URL=\"http://10.0.0.10:8001\"\n# OR\nclawdbot config set skills.graphiti.baseUrl \"http://10.0.0.10:8001\""
      },
      {
        "title": "Examples",
        "body": "Search for information:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/facts/search\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"query\\\": \\\"Tell me about Essam Masoudy\\\", \\\"max_facts\\\": 5}'\n\"\n\nAdd a memory:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/messages\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"name\\\": \\\"Project Update\\\", \\\"content\\\": \\\"Completed Phase 1 of Clawdbot integration\\\"}'\n\""
      }
    ],
    "body": "Graphiti Knowledge Graph\n\nQuery and manage your knowledge graph using Graphiti's REST API with dynamic service discovery.\n\nPrerequisites\nNeo4j database (graph storage)\nQdrant (vector search)\nGraphiti service running (default: http://localhost:8001)\nTools\ngraphiti_search\n\nSearch the knowledge graph for relevant facts.\n\nUsage:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/facts/search\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"query\\\": \\\"YOUR_QUERY\\\", \\\"max_facts\\\": 10}' | jq .\n\"\n\ngraphiti_add\n\nAdd a new episode/memory to the knowledge graph.\n\nUsage:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/messages\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"name\\\": \\\"EPISODE_NAME\\\", \\\"content\\\": \\\"EPISODE_CONTENT\\\"}' | jq .\n\"\n\nDynamic Configuration\n\nThe skill uses environment discovery to find Graphiti automatically:\n\nClawdbot config: clawdbot config get skills.graphiti.baseUrl\nEnvironment variable: $GRAPHITI_URL\nDefault fallback: http://localhost:8001\n\nTo change the Graphiti URL:\n\nexport GRAPHITI_URL=\"http://10.0.0.10:8001\"\n# OR\nclawdbot config set skills.graphiti.baseUrl \"http://10.0.0.10:8001\"\n\nExamples\n\nSearch for information:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/facts/search\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"query\\\": \\\"Tell me about Essam Masoudy\\\", \\\"max_facts\\\": 5}'\n\"\n\n\nAdd a memory:\n\nbash command:\"\nGRAPHITI_URL=\\$({baseDir}/references/env-check.sh)\ncurl -s -X POST \\\"\\$GRAPHITI_URL/messages\\\" \\\n  -H 'Content-Type: application/json' \\\n  -d '{\\\"name\\\": \\\"Project Update\\\", \\\"content\\\": \\\"Completed Phase 1 of Clawdbot integration\\\"}'\n\""
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/emasoudy/graphiti",
    "publisherUrl": "https://clawhub.ai/emasoudy/graphiti",
    "owner": "emasoudy",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}