Documentation Index
This directory contains documentation for the Knowledge Graph System.
Quick Start
Quick Start Guide - Operator architecture setup (containerized deployment)
Uses Docker containers with the operator pattern (ADR-061). No local Python installation required.
Directory Structure
manual/
User manual organized into numbered sections for reading order.
- 01-getting-started/ - Quickstart, CLI usage, ingestion basics
- 02-configuration/ - AI providers, extraction, embeddings
- 03-integration/ - MCP setup, vocabulary management
- 04-security-and-access/ - Authentication, RBAC, security
- 05-maintenance/ - Backup/restore, migrations
- 06-reference/ - Schema, concepts, examples, query patterns
See manual/README.md for detailed navigation.
architecture/
Architecture decisions and design documents.
- INDEX.md - ADR index (96 decisions)
- ADR-###-*.md - Individual architecture decision records (organized in subdirectories)
Key ADRs for understanding the system: - ADR-044 - Probabilistic truth convergence - ADR-058 - Truth as geometric projection - ADR-063 - Semantic diversity as authenticity - ADR-052 - Vocabulary expansion-consolidation
guides/
Standalone guides for specific topics.
- DEPLOYMENT.md - Deployment strategies for all environments
- VOCABULARY_CATEGORIES.md - Vocabulary category scores and confidence
- SCHEDULED-JOBS.md - Background maintenance tasks
- EPISTEMIC-STATUS-FILTERING.md - Filtering by epistemic status
testing/
Test coverage specifications.
- TEST_COVERAGE.md - Test coverage plan and philosophy
media/
Images and diagrams.
Quick Navigation
New Users
- Start with QUICKSTART.md - Operator architecture setup
- Learn about AI Providers
- Read INGESTION.md for document ingestion workflow
- See VOCABULARY_CONSOLIDATION.md for managing edge vocabulary growth
- Read VOCABULARY_CATEGORIES.md for understanding category scores and confidence levels
- See ENRICHMENT_JOURNEY.md for a real example of multi-perspective learning
- Review Examples and Use Cases
Administrators
- Read DEPLOYMENT.md for deployment strategies and production setup
- Read AUTHENTICATION.md for login and session management
- Important: Keep PASSWORD_RECOVERY.md handy for account recovery
- Review RBAC.md for user and permission management
- Important: Read SECURITY.md for encrypted API key management and security infrastructure
- Learn about BACKUP_RESTORE.md for data protection
- Reference MCP_SETUP.md for service account configuration
- Review SCHEDULED-JOBS.md for understanding background maintenance tasks
Developers
- Read ARCHITECTURE_OVERVIEW.md
- Review ADR-016 for current database architecture
- Learn about DATABASE_MIGRATIONS.md for schema evolution (ADR-040)
- Reference SCHEMA_REFERENCE.md for complete schema documentation
- Check TEST_COVERAGE.md for testing guidelines
- Reference CYPHER_PATTERNS.md for query development
Contributors
- Read architecture decisions in
architecture/ - Follow test guidelines in
testing/ - Understand system concepts in
concepts/