Initial commit: Multi-repository role-based knowledge graphs

This commit is contained in:
Kimi Claw
2026-02-19 04:11:57 +08:00
commit 3720b9e325
19 changed files with 1218 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# Terraphim AI Knowledge Graph
## Role: Terraphim AI Developer
Specialized knowledge for developing the Terraphim AI assistant.
## Thesaurus
- **Source**: `thesaurus.json`
- **Concepts**: Rust, Knowledge Graph, Agent, Search, Role
## Key Technologies
### Rust Ecosystem
- Async programming with Tokio
- Type-safe systems programming
- Cargo package management
### Knowledge Graph
- Thesaurus-based synonym expansion
- Ontology and taxonomy
- Semantic search
### AI/Agent
- LLM integration
- Claude API
- Assistant patterns
## Sources
- Crates: `terraphim-ai/crates/`
- Docs: `terraphim-ai/docs/`
+33
View File
@@ -0,0 +1,33 @@
{
"name": "Terraphim AI",
"data": {
"rust": { "id": 1, "nterm": "rust" },
"cargo": { "id": 1, "nterm": "rust" },
"crate": { "id": 1, "nterm": "rust" },
"tokio": { "id": 1, "nterm": "rust" },
"async": { "id": 1, "nterm": "rust" },
"knowledge graph": { "id": 2, "nterm": "kg" },
"kg": { "id": 2, "nterm": "kg" },
"thesaurus": { "id": 2, "nterm": "kg" },
"ontology": { "id": 2, "nterm": "kg" },
"taxonomy": { "id": 2, "nterm": "kg" },
"agent": { "id": 3, "nterm": "agent" },
"ai": { "id": 3, "nterm": "agent" },
"assistant": { "id": 3, "nterm": "agent" },
"claude": { "id": 3, "nterm": "agent" },
"llm": { "id": 3, "nterm": "agent" },
"search": { "id": 4, "nterm": "search" },
"retrieval": { "id": 4, "nterm": "search" },
"query": { "id": 4, "nterm": "search" },
"find": { "id": 4, "nterm": "search" },
"lookup": { "id": 4, "nterm": "search" },
"role": { "id": 5, "nterm": "role" },
"persona": { "id": 5, "nterm": "role" },
"expert": { "id": 5, "nterm": "role" },
"engineer": { "id": 5, "nterm": "role" }
}
}