-
Notifications
You must be signed in to change notification settings - Fork 1
Root Architecture
Navigation: Home > Architecture
Auto-generated β do not edit manually. Source:
tools/architecture-generator/generate_architecture.pyGenerated:2026-09-14T16:02:25.013187+00:00
| Metric | Value |
|---|---|
| Total modules | 68 |
| Total relationships | 47 |
| Modules with public plugin | 10 |
| Modules with private plugin | 4 |
| Modules with API contracts | 6 |
| Documentation sources scanned | 1171 |
| LLM Wiki source files | 7731 |
| LLM Wiki module/API entries | 80 |
| LLM Wiki generated | 2026-09-14T03:02:45+00:00 |
| ai_working artifacts | 64 |
flowchart TB
%% Vertical-first layout and GitHub-friendly styling
subgraph T0["T0: Trusted Core"]
direction TB
mod_base["base"]
mod_core["core"]
mod_plugins["plugins"]
mod_themis["themis"]
mod_utils["utils"]
end
subgraph T1["T1: Engine (Query/Storage/Index)"]
direction TB
mod_aql["aql"]
mod_cache["cache"]
mod_execution["execution"]
mod_index["index"]
mod_metadata["metadata"]
mod_query["query"]
mod_storage["storage"]
end
subgraph T3["T3: Infrastructure & Governance"]
direction TB
mod_acceleration["acceleration"]
mod_access_model["access_model"]
mod_ai["ai"]
mod_analytics["analytics"]
mod_api["api"]
mod_auth["auth"]
mod_cdc["cdc"]
mod_chaos["chaos"]
mod_chimera["chimera"]
mod_config["config"]
mod_content["content"]
mod_distributed_knowledge["distributed_knowledge"]
mod_distributed_tensor["distributed_tensor"]
mod_document["document"]
mod_ethics_ai["ethics_ai π"]
mod_evaluation["evaluation"]
mod_exporters["exporters β
"]
mod_failover["failover"]
mod_geo["geo β
"]
mod_governance["governance"]
mod_gpu["gpu"]
mod_graph["graph"]
mod_importers["importers π"]
mod_ingestion["ingestion"]
mod_llama_cpp["llama_cpp β
"]
mod_llm["llm"]
mod_llm_wiki["llm_wiki π"]
mod_maintenance["maintenance"]
mod_network["network"]
mod_observability["observability"]
mod_onnx_clip["onnx_clip"]
mod_performance["performance"]
mod_process["process"]
mod_projects["projects"]
mod_prompt_engineering["prompt_engineering"]
mod_rag["rag"]
mod_replication["replication"]
mod_retrieval["retrieval"]
mod_rpc_grpc["rpc_grpc"]
mod_scheduler["scheduler"]
mod_scraper["scraper β
"]
mod_search["search"]
mod_security["security"]
mod_server["server"]
mod_sharding["sharding"]
mod_stable_diffusion["stable_diffusion β
"]
mod_temporal["temporal"]
mod_tensor["tensor"]
mod_timeseries["timeseries β
"]
mod_toolbox["toolbox"]
mod_training["training"]
mod_transaction["transaction"]
mod_updates["updates"]
mod_user_storage_encrypted["user_storage_encrypted π"]
mod_voice["voice"]
mod_whisper["whisper β
"]
end
classDef tierT0 fill:#EAF2FF,stroke:#1D4ED8,color:#0F172A,stroke-width:1.2px;
classDef tierT1 fill:#ECFDF3,stroke:#15803D,color:#0F172A,stroke-width:1.2px;
classDef tierT3 fill:#FFF7ED,stroke:#C2410C,color:#0F172A,stroke-width:1.2px;
classDef publicPlugin fill:#E0F2FE,stroke:#0369A1,color:#0F172A,stroke-dasharray: 3 2;
classDef privatePlugin fill:#FCE7F3,stroke:#9D174D,color:#0F172A,stroke-dasharray: 2 2;
linkStyle default stroke:#64748B,stroke-width:1.1px,opacity:0.85;
class mod_base,mod_core,mod_plugins,mod_themis,mod_utils tierT0;
class mod_aql,mod_cache,mod_execution,mod_index,mod_metadata,mod_query,mod_storage tierT1;
class mod_acceleration,mod_access_model,mod_ai,mod_analytics,mod_api,mod_auth,mod_cdc,mod_chaos,mod_chimera,mod_config,mod_content,mod_distributed_knowledge,mod_distributed_tensor,mod_document,mod_ethics_ai,mod_evaluation,mod_exporters,mod_failover,mod_geo,mod_governance,mod_gpu,mod_graph,mod_importers,mod_ingestion,mod_llama_cpp,mod_llm,mod_llm_wiki,mod_maintenance,mod_network,mod_observability,mod_onnx_clip,mod_performance,mod_process,mod_projects,mod_prompt_engineering,mod_rag,mod_replication,mod_retrieval,mod_rpc_grpc,mod_scheduler,mod_scraper,mod_search,mod_security,mod_server,mod_sharding,mod_stable_diffusion,mod_temporal,mod_tensor,mod_timeseries,mod_toolbox,mod_training,mod_transaction,mod_updates,mod_user_storage_encrypted,mod_voice,mod_whisper tierT3;
class mod_exporters,mod_geo,mod_llama_cpp,mod_scraper,mod_stable_diffusion,mod_timeseries,mod_whisper publicPlugin;
class mod_ethics_ai,mod_importers,mod_llm_wiki,mod_user_storage_encrypted privatePlugin;
mod_plugins -->|"plugin base"| mod_base
mod_themis -->|"root aggregation"| mod_core
mod_themis -->|"plugin loader"| mod_plugins
mod_utils -->|"utilities"| mod_base
mod_aql -->|"parses/plans"| mod_core
mod_cache -->|"caches"| mod_execution
mod_execution -->|"uses"| mod_index
mod_execution -->|"executes"| mod_query
mod_execution -->|"reads/writes"| mod_storage
mod_index -->|"persists"| mod_storage
mod_metadata -->|"schema store"| mod_storage
mod_query -->|"optimizes"| mod_aql
mod_config -->|"config bootstrap"| mod_core
mod_observability -->|"metrics hooks"| mod_core
mod_process -->|"lifecycle"| mod_core
mod_security -->|"crypto primitives"| mod_core
mod_transaction -->|"MVCC"| mod_core
mod_analytics -->|"reads data"| mod_storage
mod_content -->|"content store"| mod_storage
mod_rag -->|"knowledge store"| mod_storage
mod_replication -->|"replica I/O"| mod_storage
mod_retrieval -->|"vector search"| mod_index
mod_search -->|"fulltext index"| mod_index
mod_server -->|"dispatches"| mod_execution
mod_sharding -->|"partitions"| mod_storage
mod_training -->|"model storage"| mod_storage
mod_transaction -->|"data commit"| mod_storage
mod_acceleration -->|"GPU dispatch"| mod_gpu
mod_ai -->|"orchestrates"| mod_llm
mod_ai -->|"semantic search"| mod_retrieval
mod_api -->|"authenticates"| mod_auth
mod_api -->|"routes"| mod_server
mod_auth -->|"primitives"| mod_security
mod_distributed_knowledge -->|"knowledge graph"| mod_graph
mod_distributed_knowledge -->|"distributed"| mod_replication
mod_governance -->|"policy check"| mod_auth
mod_governance -->|"audit events"| mod_observability
mod_llm -->|"local inference"| mod_llama_cpp
mod_llm_wiki -->|"wiki retrieval"| mod_llm
mod_llm_wiki -->|"provenance"| mod_rag
mod_network -->|"transport"| mod_server
mod_rag -->|"generates"| mod_llm
mod_rag -->|"retrieves"| mod_retrieval
mod_search -->|"semantic search"| mod_retrieval
mod_sharding -->|"replicates shards"| mod_replication
mod_training -->|"fine-tunes"| mod_llm
mod_transaction -->|"distributes"| mod_replication
linkStyle 4 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 12 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 13 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 14 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 15 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 16 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 17 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 18 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 19 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 20 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 21 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 22 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 23 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 24 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 25 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
linkStyle 26 stroke:#1E293B,stroke-width:1.3px,opacity:0.92;
click mod_base href "https://github.com/makr-code/ThemisDB/blob/develop/src/base/ROADMAP.md" "themis::resource β module documentation" _blank
click mod_core href "https://github.com/makr-code/ThemisDB/blob/develop/src/core/ROADMAP.md" "themis::core β module documentation" _blank
click mod_plugins href "https://github.com/makr-code/ThemisDB/blob/develop/src/plugins/ROADMAP.md" "themis::plugins β module documentation" _blank
click mod_themis href "https://github.com/makr-code/ThemisDB/blob/develop/src/themis/ROADMAP.md" "themis β module documentation" _blank
click mod_utils href "https://github.com/makr-code/ThemisDB/blob/develop/src/utils/ROADMAP.md" "themis::utils β module documentation" _blank
click mod_aql href "https://github.com/makr-code/ThemisDB/blob/develop/src/aql/ROADMAP.md" "themis::aql β module documentation" _blank
click mod_cache href "https://github.com/makr-code/ThemisDB/blob/develop/src/cache/ROADMAP.md" "themis::cache β module documentation" _blank
click mod_execution href "https://github.com/makr-code/ThemisDB/blob/develop/src/execution/ROADMAP.md" "themis::execution β module documentation" _blank
click mod_index href "https://github.com/makr-code/ThemisDB/wiki/Index-Module" "themis::index β module documentation" _blank
click mod_metadata href "https://github.com/makr-code/ThemisDB/blob/develop/src/metadata/ROADMAP.md" "themis::metadata β module documentation" _blank
click mod_query href "https://github.com/makr-code/ThemisDB/blob/develop/src/query/ROADMAP.md" "themis::query β module documentation" _blank
click mod_storage href "https://github.com/makr-code/ThemisDB/wiki/Storage-Module" "themis::storage β module documentation" _blank
click mod_acceleration href "https://github.com/makr-code/ThemisDB/wiki/Acceleration-Module" "themis::acceleration β module documentation" _blank
click mod_access_model href "https://github.com/makr-code/ThemisDB/blob/develop/src/access_model/ROADMAP.md" "themis::access_model β module documentation" _blank
click mod_ai href "https://github.com/makr-code/ThemisDB/blob/develop/src/ai/ROADMAP.md" "themis::ai β module documentation" _blank
click mod_analytics href "https://github.com/makr-code/ThemisDB/blob/develop/src/analytics/ROADMAP.md" "themis::analytics β module documentation" _blank
click mod_api href "https://github.com/makr-code/ThemisDB/wiki/API-Module" "themis::api β module documentation" _blank
click mod_auth href "https://github.com/makr-code/ThemisDB/wiki/Auth-Module" "themis::auth β module documentation" _blank
click mod_cdc href "https://github.com/makr-code/ThemisDB/blob/develop/src/cdc/ROADMAP.md" "themis::cdc β module documentation" _blank
click mod_chaos href "https://github.com/makr-code/ThemisDB/blob/develop/src/chaos/ROADMAP.md" "themis::chaos β module documentation" _blank
click mod_chimera href "https://github.com/makr-code/ThemisDB/blob/develop/src/chimera/ROADMAP.md" "themis::chimera β module documentation" _blank
click mod_config href "https://github.com/makr-code/ThemisDB/blob/develop/src/config/ROADMAP.md" "themis::config β module documentation" _blank
click mod_content href "https://github.com/makr-code/ThemisDB/blob/develop/src/content/ROADMAP.md" "themis::content β module documentation" _blank
click mod_distributed_knowledge href "https://github.com/makr-code/ThemisDB/blob/develop/src/distributed_knowledge/ROADMAP.md" "themis::distributed_knowledge β module documentation" _blank
click mod_distributed_tensor href "https://github.com/makr-code/ThemisDB/blob/develop/src/distributed_tensor/ROADMAP.md" "themis::distributed_tensor β module documentation" _blank
click mod_document href "https://github.com/makr-code/ThemisDB/blob/develop/src/document/ROADMAP.md" "themis::document β module documentation" _blank
click mod_ethics_ai href "https://github.com/makr-code/ThemisDB/blob/develop/src/ethics_ai/ROADMAP.md" "themis::ethics_ai β module documentation" _blank
click mod_evaluation href "https://github.com/makr-code/ThemisDB/blob/develop/src/evaluation/ROADMAP.md" "themis::evaluation β module documentation" _blank
click mod_exporters href "https://github.com/makr-code/ThemisDB/blob/develop/src/exporters/ROADMAP.md" "themis::exporters β module documentation" _blank
click mod_failover href "https://github.com/makr-code/ThemisDB/blob/develop/src/failover/ROADMAP.md" "themis::failover β module documentation" _blank
click mod_geo href "https://github.com/makr-code/ThemisDB/blob/develop/src/geo/ROADMAP.md" "themis::geo β module documentation" _blank
click mod_governance href "https://github.com/makr-code/ThemisDB/blob/develop/src/governance/ROADMAP.md" "themis::governance β module documentation" _blank
click mod_gpu href "https://github.com/makr-code/ThemisDB/blob/develop/src/gpu/ROADMAP.md" "themis::gpu β module documentation" _blank
click mod_graph href "https://github.com/makr-code/ThemisDB/wiki/Graph-Module" "themis::graph β module documentation" _blank
click mod_importers href "https://github.com/makr-code/ThemisDB/blob/develop/src/importers/ROADMAP.md" "themis::importers β module documentation" _blank
click mod_ingestion href "https://github.com/makr-code/ThemisDB/blob/develop/src/ingestion/ROADMAP.md" "themis::ingestion β module documentation" _blank
click mod_llama_cpp href "https://github.com/makr-code/ThemisDB/blob/develop/src/llama_cpp/ROADMAP.md" "themis::llama_cpp β module documentation" _blank
click mod_llm href "https://github.com/makr-code/ThemisDB/wiki/LLM-Module" "themis::llm β module documentation" _blank
click mod_llm_wiki href "https://github.com/makr-code/ThemisDB/wiki/LLM-Wiki" "themis::llm_wiki β module documentation" _blank
click mod_maintenance href "https://github.com/makr-code/ThemisDB/blob/develop/src/maintenance/ROADMAP.md" "themis::maintenance β module documentation" _blank
click mod_network href "https://github.com/makr-code/ThemisDB/blob/develop/src/network/ROADMAP.md" "themis::network β module documentation" _blank
click mod_observability href "https://github.com/makr-code/ThemisDB/wiki/Observability-Module" "themis::observability β module documentation" _blank
click mod_onnx_clip href "https://github.com/makr-code/ThemisDB/blob/develop/src/onnx_clip/ROADMAP.md" "themis::onnx_clip β module documentation" _blank
click mod_performance href "https://github.com/makr-code/ThemisDB/blob/develop/src/performance/ROADMAP.md" "themis::performance β module documentation" _blank
click mod_process href "https://github.com/makr-code/ThemisDB/blob/develop/src/process/ROADMAP.md" "themis::process β module documentation" _blank
click mod_projects href "https://github.com/makr-code/ThemisDB/blob/develop/src/projects/ROADMAP.md" "themis::projects β module documentation" _blank
click mod_prompt_engineering href "https://github.com/makr-code/ThemisDB/blob/develop/src/prompt_engineering/ROADMAP.md" "themis::prompt_engineering β module documentation" _blank
click mod_rag href "https://github.com/makr-code/ThemisDB/wiki/RAG-Module" "themis::rag β module documentation" _blank
click mod_replication href "https://github.com/makr-code/ThemisDB/wiki/Replication-Module" "themis::replication β module documentation" _blank
click mod_retrieval href "https://github.com/makr-code/ThemisDB/blob/develop/src/retrieval/ROADMAP.md" "themis::retrieval β module documentation" _blank
click mod_rpc_grpc href "https://github.com/makr-code/ThemisDB/blob/develop/src/rpc_grpc/ROADMAP.md" "themis::rpc_grpc β module documentation" _blank
click mod_scheduler href "https://github.com/makr-code/ThemisDB/blob/develop/src/scheduler/ROADMAP.md" "themis::scheduler β module documentation" _blank
click mod_scraper href "https://github.com/makr-code/ThemisDB/blob/develop/src/scraper/ROADMAP.md" "themis::scraper β module documentation" _blank
click mod_search href "https://github.com/makr-code/ThemisDB/blob/develop/src/search/ROADMAP.md" "themis::search β module documentation" _blank
click mod_security href "https://github.com/makr-code/ThemisDB/wiki/Security-Module" "themis::security β module documentation" _blank
click mod_server href "https://github.com/makr-code/ThemisDB/blob/develop/src/server/ROADMAP.md" "themis::server β module documentation" _blank
click mod_sharding href "https://github.com/makr-code/ThemisDB/wiki/Sharding-Module" "themis::sharding β module documentation" _blank
click mod_stable_diffusion href "https://github.com/makr-code/ThemisDB/blob/develop/src/stable_diffusion/ROADMAP.md" "themis::stable_diffusion β module documentation" _blank
click mod_temporal href "https://github.com/makr-code/ThemisDB/blob/develop/src/temporal/ROADMAP.md" "themis::temporal β module documentation" _blank
click mod_tensor href "https://github.com/makr-code/ThemisDB/blob/develop/src/tensor/ROADMAP.md" "themis::tensor β module documentation" _blank
click mod_timeseries href "https://github.com/makr-code/ThemisDB/blob/develop/src/timeseries/ROADMAP.md" "themis::timeseries β module documentation" _blank
click mod_toolbox href "https://github.com/makr-code/ThemisDB/blob/develop/src/toolbox/ROADMAP.md" "themis::toolbox β module documentation" _blank
click mod_training href "https://github.com/makr-code/ThemisDB/blob/develop/src/training/ROADMAP.md" "themis::training β module documentation" _blank
click mod_transaction href "https://github.com/makr-code/ThemisDB/wiki/Transaction-Module" "themis::transaction β module documentation" _blank
click mod_updates href "https://github.com/makr-code/ThemisDB/blob/develop/src/updates/ROADMAP.md" "themis::updates β module documentation" _blank
click mod_user_storage_encrypted href "https://github.com/makr-code/ThemisDB/blob/develop/src/user_storage_encrypted/ROADMAP.md" "themis::user_storage_encrypted β module documentation" _blank
click mod_voice href "https://github.com/makr-code/ThemisDB/blob/develop/src/voice/ROADMAP.md" "themis::voice β module documentation" _blank
click mod_whisper href "https://github.com/makr-code/ThemisDB/blob/develop/src/whisper/ROADMAP.md" "themis::whisper β module documentation" _blank
Legend: β
= public plugin available, π = private plugin integration.
| Tier | Description | Count | Modules (sample) |
|---|---|---|---|
| T0 | Trusted Core | 5 | base, core, plugins, themis, utils |
| T1 | Engine (Query/Storage/Index) | 7 | aql, cache, execution, index, metadata, query β¦ |
| T3 | Infrastructure & Governance | 56 | acceleration, access_model, ai, analytics, api, auth β¦ |
Top modules by outgoing dependency count:
| Module | Provides to (count) | Consumes from |
|---|---|---|
execution |
3 |
index, query, storage
|
rag |
3 |
llm, retrieval, storage
|
transaction |
3 |
core, replication, storage
|
ai |
2 |
llm, retrieval
|
api |
2 |
auth, server
|
distributed_knowledge |
2 |
graph, replication
|
governance |
2 |
auth, observability
|
llm_wiki |
2 |
llm, rag
|
search |
2 |
index, retrieval
|
sharding |
2 |
replication, storage
|
themis |
2 |
core, plugins
|
training |
2 |
llm, storage
|
acceleration |
1 | gpu |
analytics |
1 | storage |
aql |
1 | core |
auth |
1 | security |
cache |
1 | execution |
config |
1 | core |
content |
1 | storage |
index |
1 | storage |
Top modules by incoming dependency count:
| Module | Consumed by (count) | Consumer modules |
|---|---|---|
storage |
10 |
analytics, content, execution, index, metadata, rag, replication, sharding, training, transaction
|
core |
7 |
aql, config, observability, process, security, themis, transaction
|
llm |
4 |
ai, llm_wiki, rag, training
|
index |
3 |
execution, retrieval, search
|
replication |
3 |
distributed_knowledge, sharding, transaction
|
retrieval |
3 |
ai, rag, search
|
auth |
2 |
api, governance
|
base |
2 |
plugins, utils
|
execution |
2 |
cache, server
|
server |
2 |
api, network
|
aql |
1 | query |
gpu |
1 | acceleration |
graph |
1 | distributed_knowledge |
llama_cpp |
1 | llm |
observability |
1 | governance |
plugins |
1 | themis |
query |
1 | execution |
rag |
1 | llm_wiki |
security |
1 | auth |
Inter-tier dependency flow counts:
| Consumer Tier | Provider Tier | Relationship Count |
|---|---|---|
| T3 | T3 | 20 |
| T3 | T1 | 10 |
| T1 | T1 | 7 |
| T3 | T0 | 5 |
| T0 | T0 | 4 |
| T1 | T0 | 1 |
Dependency label distribution:
| Relationship Label | Count |
|---|---|
semantic search |
2 |
GPU dispatch |
1 |
MVCC |
1 |
audit events |
1 |
authenticates |
1 |
caches |
1 |
config bootstrap |
1 |
content store |
1 |
crypto primitives |
1 |
data commit |
1 |
dispatches |
1 |
distributed |
1 |
distributes |
1 |
executes |
1 |
fine-tunes |
1 |
fulltext index |
1 |
generates |
1 |
knowledge graph |
1 |
knowledge store |
1 |
lifecycle |
1 |
Isolated modules (no incoming/outgoing dependency): 30
-
access_model,cdc,chaos,chimera,distributed_tensor,document,ethics_ai,evaluation,exporters,failover,geo,importers,ingestion,maintenance,onnx_clip,performance,projects,prompt_engineering,rpc_grpc,scheduler,scraper,stable_diffusion,temporal,tensor,timeseries,toolbox,updates,user_storage_encrypted,voice,whisper
- Generated at:
2026-09-14T03:02:45+00:00 - Source hash:
9a805478cf58d137362d55087ac8c5583424d80aa9b6705807af48fe42b8ff5e - Source file count: 7731
- Module/API entries indexed: 80
Wave/batch reports: 42 JSON analysis artifacts: 7
1171 documentation files scanned from docs/ and repository root governance files.
| Source | SHA-256 prefix |
|---|---|
ARCHITECTURE.md |
8a56db760b6f3c21 |
FUTURE_ENHANCEMENTS.md |
de552eeef9d1ac51 |
ROADMAP.md |
47bfebf22986f8fd |
ai_context/ARCHITECTURE_CLASSIFICATION.md |
57a7f2182a1193c8 |
ai_context/MODULES_AND_NAMESPACES.md |
bf42dba44a39f8cb |
ai_context/api_contracts/ |
327db5382688c4b9 |
ai_context/developer_llm_wiki/ |
6c2652743c56fea9 |
ai_working/ |
23010ee516eb01da |
docs/ |
668b757398423f04 |
ThemisDB 1.9.0-beta Β· Home Β· Module-Index Β· GitHub Β· Issues
ThemisDB 1.9.0-beta Β· Home Β· Wiki-Index Β· Module-Index Β· FAQ Β· Quick-Reference Β· GitHub Β· Issues Β· Discussions Β· License
- Batch Operations
- Best Practices
- CRUD Tutorial
- Custom Document Ingestion
- Getting Started Tutorial
- Interactive Examples
- Schema Design
- Video Tutorials
- AQL Reference
- AQL Examples
- AQL Overview
- AQL Feature Roadmap
- AQL Geospatial Guide
- AQL LLM Migration Guide
- AQL API
- AQL Grammar (EBNF)
- AQL Root Overview
- AQL Examples (root)
- API Reference
- API Module README
- OpenAPI Overview
- Client SDK Overview
- SDK Overview
- Operations
- Operations Overview
- Operations Runbook
- Operations Handbook
- ThemisCtl Admin Guide
- Pipeline E2E SOPs
- Deploy Overview
- Docker Overview
- Docker Hub README
- Helm Overview
- Packaging Overview
- Operator Overview
- Security Policy
- Production Hardening Checklist
- Security Hardening Guide
- Encryption Key Management
- Access Control Framework
- Zero Trust Policy
- API Authentication & Authorization
- HSM Production Setup
- PKCS11 Integration
- DSGVO / SOC2 Checklist
- Access Model Runbooks
- Access Model Dashboard
- Maturity Automation Runbook
- Access Review Automation
- Access Model Dashboard
- Access Model Runbooks
- Rights Revocation
- Dr Checklists
- Dr Testing
- Incident Response Playbook
- Incident Response Testing
- GPU Oom Recovery
- Grammar Debugging
- Metrics Scrape Troubleshooting
- Model Swap Procedure
- Quota Tuning
- Subagent Deployment
- Logging Configuration
- Content Model
- Crypto & Keys
- Feature Flags Reference
- Modular Architecture Roadmap
- Modularization Guide
- Module Architecture Index
- PostgreSQL Wire Protocol
- Query Scheduling
- Raft Consensus Design
- Resource Pooling
- Source Directory Guide
- Unified Access Model
- E1 001 Layered Retrieval Design
- E1 002 Ann Abstraction Strategy
- E1 003 Tensor Summary Types
- E1 004 Lora Package Distinction
- E1 005 Model Switch Compatibility
- E1 006 Federated Tensor Summaries
- E2 001 Evaluation Framework Design
- E2 002 Hardware Profile Strategy
- E2 003 Query Planner Routing Model
- E2 004 Approximation Governance Rules
- E2 005 Cross Layer Fallback Confidence Policy
- E3 001 Distributed Tensor Design
- E3 002 Manifest Coordination Strategy
- E3 003 Recovery And Erasure Choice
- E3 004 Tensor Fabric Infrastructure
- Contributing
- Contributing (root)
- Code of Conduct
- Support
- Maintainers
- CTest Guide
- Build Quick Reference
- Developer Wiki Index
- Build / Test / CI
- Module Index
- Branching Strategy
- Disabled Stub Policy
- Docs PR Policy
- GA Promotion Sign Off
- Github Milestones Setup
- Maturity Claim Verification Checklist
- Maturity Evidence Registry
- Merge Gate Bot Config
- Merge Gate Status Live
- Phase 1 Closure Report
- Phase Closure Policy
- Phase Dependency Graph
- Phase3 Enforcement Runbook
- Plugin Submodule Rollback
- PR Version Targeting
- PR Version Targeting Backfill
- Production Ready 2026 Delivery Plan
- Query Module Status
- Readme
- Release Promotion Gate Policy
- Release Validation Checklist
- Security Module 5671 Evidence Summary
- Sharding P6 Residual Risk Acceptance
- Sourcecode Compliance Governance
- Updates Development Status Sign Off
- Wave C Implementation Complete
- Wave C Ml Exit Gate Sign Off
- Blob Storage
- Cuda
- Ethics Ai
- Exporters
- Huggingface
- Image Analysis
- Importers
- RPC
- Scraper
- Themisdb Ai Watermark Detector
- User Storage Encrypted
- Chimera Architecture
- Chimera Future
- Chimera Readme
- Chimera Roadmap
- Covina Fastapi Ingestion Architecture
- Covina Fastapi Ingestion Future
- Covina Fastapi Ingestion Roadmap
- Vcc Base Architecture
- Vcc Base Future
- Vcc Base Roadmap
- Vcc Clara Ingestion Architecture
- Vcc Clara Ingestion Future
- Vcc Clara Ingestion Roadmap
- Vcc Veritas Architecture
- Vcc Veritas Future
- Vcc Veritas Roadmap
- 01 Hello World
- 02 Todo App
- 03 Contact Manager
- 04 Inventory System
- 05 Time Series Monitor
- 06 Graph Social Network
- 07 Vector Search Documents
- 08 Dms Erp System
- 09 Iot Sensor Network
- 10 Drone Image Analysis
- 11 Blog Wiki
- 12 Expense Tracker
- 13 Recipe Manager
- 14 Ecommerce Catalog
- 15 Event Management
- 16 Kanban Board
- 17 Crm
- 18 Realtime Chat
- 19 Recommendation Engine
- 20 Smart Home
- 21 Coding Platform
- 22 AQL Diagram Tool
- 23 Traveling Salesman
- 24 Moral Philosophy Debates
- API Versioning
- Distributed Sharding
- Feedback Plugins
- Geo
- Gnn
- Image Analysis
- Legal Lora Training
- LLM
- Lora Sync
- Migration
- Nlp
- Performance
- Railway
- Replication
- Rope Visualization
- Sample Product Config
- Security
- Client SDK Overview
- Quickstart
- Sdk Enhancements
- Sdk Implementation Summary
- Test Suite Readme
- Go
- Java
- Javascript
- Php
- Python
- Ruby
- Rust
- Typescript
- 01 Grundlegende Operationen
- 02 AQL Queries
- 03 Graph Daten
- 04 Multimodell Anwendung
- 01 Quickstart Guide
- 02 AQL Referenz Kurzuebersicht
- 03 Datenmodellierung Guide
- 04 Uebungsaufgaben
- 05 Best Practices Guide
- Training Documents
- Training Overview
- 01 Einfuehrung Und Uebersicht
- 02 Datenmodelle Und Architektur
- 03 AQL Abfragesprache
- 04 Installation Und Setup
- 05 Anwendungsbeispiele
- Training Presentations
- Dependencies Readme
- Processmonitor Readme
- Themis.admintools.shared Readme
- Themis.aqlquerybuilder Readme
- Themis.aqlquerybuilder Roadmap
- Themis.auditlogviewer Readme
- Themis.auditlogviewer Roadmap
- Themis.classificationdashboard Readme
- Themis.classificationdashboard Roadmap
- Themis.compliancereports Readme
- Themis.compliancereports Roadmap
- Themis.gisviewer.controlpanel Readme
- Themis.gisviewer.controlpanel Roadmap
- Themis.impactanalysisviewer Readme
- Themis.impactanalysisviewer Roadmap
- Themis.ingestiontool Readme
- Themis.ingestiontool Roadmap
- Themis.keyrotationdashboard Readme
- Themis.keyrotationdashboard Roadmap
- Themis.piimanager Readme
- Themis.piimanager Roadmap
- Themis.retentionmanager Readme
- Themis.retentionmanager Roadmap
- Themis.sagaverifier Readme
- Themis.sagaverifier Roadmap
- Themis.usbadmintool Readme
- Themis.usbadmintool Roadmap
- CI Readme
- CI Roadmap
- Compiler Diagnostics Readme
- Compiler Diagnostics Roadmap
- Completion Readme
- Copilot Ollama Router Readme
- Copilot Ollama Router Roadmap
- Gnn Readme
- Gnn Roadmap
- Rope Visualizer Readme
- Rope Visualizer Roadmap
- Tco Calculator Readme
- Tco Calculator Roadmap
- Tests Readme
- Tests Roadmap
- Themis Config Wx Readme
- Themis Docs Builder Readme
- Wikipedia Ingestion Readme