New crates: stratum-orchestrator (Cedar authz, Vault secrets, Nu/agent executors, saga runner), stratum-graph (petgraph DAG + SurrealDB repo), stratum-state (SurrealDB tracker), platform-nats (NKey auth client), ncl-import-resolver. Updates: stratum-embeddings (SurrealDB store + persistent cache), stratum-llm circuit breaker. Adds Nickel action-nodes, schemas, config, Nushell scripts, docker-compose dev stack, and ADR-003.
19 lines
714 B
Plaintext
19 lines
714 B
Plaintext
{
|
|
surrealdb_url | String = "ws://localhost:8100",
|
|
nats_url | String = "nats://localhost:4222",
|
|
zot_url | String = "localhost:5000",
|
|
vault_url | String = "http://localhost:9094",
|
|
action_nodes_dir | String = "./action-nodes",
|
|
schemas_dir | String = "./schemas/capabilities",
|
|
cedar_policy_dir | String = "./config/cedar",
|
|
log_level | [| 'trace, 'debug, 'info, 'warn, 'error |] = 'info,
|
|
http_port | Number = 9088,
|
|
trusted_nkeys | Array String = [],
|
|
features = {
|
|
nkey_auth_required | Bool = false,
|
|
cedar_auth_required | Bool = true,
|
|
schema_validation | Bool = true,
|
|
agent_executor_enabled | Bool = false,
|
|
},
|
|
}
|