A collection of Agent Skills for working with Memgraph graph database, covering Cypher, data modeling, indexes, algorithms, query modules, visualization, and GraphRAG.
Clone the repo and symlink skills into one of the locations Cursor scans.
Personal (available across all your projects):
git clone https://github.com/memgraph/skills.git ~/.memgraph-skills
ln -s ~/.memgraph-skills/skills/* ~/.cursor/skills-cursor/Per-project (available only in that project):
git clone https://github.com/memgraph/skills.git ~/.memgraph-skills
cd /path/to/your/project
ln -s ~/.memgraph-skills/skills .cursor/skillsClone the repo and symlink skills into one of the locations Claude Code scans.
git clone https://github.com/memgraph/skills.git ~/.memgraph-skills
cd /path/to/your/project
ln -s ~/.memgraph-skills/skills .claude/skillsSkills are contextual and auto-loaded based on your conversation. When a request matches a skill's triggers, the agent loads and applies the relevant skill.
Each skill follows the Agent Skills specification:
skill-name/
├── SKILL.md # Main skill instructions (required)
└── references/ # Additional documentation (optional)
└── REFERENCE.md # Detailed API reference and examples
Skills are validated against the Agent Skills specification:
uv sync
uv run skills-ref validate skills/<skill-directory>