Agent skill · Backend & API

graphiti

Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill graphiti --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/analysis/graphiti/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Graphiti Knowledge Graph Query and manage your knowledge graph using the Graphiti MCP server (rawr-ai fork). ## Prerequisites - Neo4j database (running via docker-compose) - Graphiti MCP server (http://localhost:8000/sse) ## Status ✅ Neo4j running on localhost:7474 (bolt://localhost:7687) ✅ Graphiti MCP server running on localhost:8000/sse ✅ Added to .mcp.json for OpenClaw integration ## Tools ### graphiti_search Search the knowledge graph for relevant facts. **Usage:** ```bash 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 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

What's inside
Steps it walks through
  1. Prerequisites
  2. Status
  3. Tools
  4. graphitisearch
  5. graphitiadd
  6. Dynamic Configuration
  7. Examples
Ships with 1 file
  • metadata.json
Commands it runs
bash command:"
curl -s -X POST \"\$GRAPHITI_URL/facts/search\" \
curl -s -X POST \"\$GRAPHITI_URL/messages\" \
export GRAPHITI_URL="http://10.0.0.10:8001"
OR
clawdbot config set skills.graphiti.baseUrl "http://10.0.0.10:8001"
More from claude-skill-registry
All skills →
About this skill
What does the graphiti skill do?

Knowledge graph operations via Graphiti API. Search facts, add episodes, and extract entities/relationships.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill graphiti --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going