Skip to main content
ClaudeWave
Skill407 estrellas del repoactualizado yesterday

ac-knowledge-graph

AC Knowledge Graph constructs and queries semantic networks of project concepts and their relationships to support autonomous coding systems. Use it when autonomous agents need to store entity relationships, retrieve contextually connected information, or maintain persistent semantic memory across coding tasks and project iterations.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/majiayu000/claude-skill-registry /tmp/ac-knowledge-graph && cp -r /tmp/ac-knowledge-graph/skills/agent/ac-knowledge-graph ~/.claude/skills/ac-knowledge-graph
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# 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

```python
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.