mcpbeat

Ac Knowledge Graph

majiayu000/claude-skill-registry-ac-knowledge-graph

Manage knowledge graph for autonomous coding. Use when storing relationships, querying connected knowledge, building project understanding, or maintaining semantic memory.

This is a copy. The original lives at majiayu000/ac-knowledge-graph.

398 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
532
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/majiayu000/claude-skill-registry --skill ac-knowledge-graph

What comes with it

834 bytes besides the instruction
metadata.json

The instruction itself

4 sections, as written by the author

AC Knowledge Graph

Build and query knowledge graphs for project understanding.

Purpose

Maintains a knowledge graph of project concepts, relationships, and learnings for intelligent decision-making.

Quick Start

from scripts.knowledge_graph import KnowledgeGraph

graph = KnowledgeGraph(project_dir)
await graph.add_entity("User", {"type": "model"})
await graph.add_relation("User", "has", "Profile")
related = await graph.query("User")

API Reference

See scripts/knowledge_graph.py for full implementation.

How to use it

Copy the folder

Take majiayu000/claude-skill-registry-ac-knowledge-graph from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.