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.
13 lines
438 B
Plaintext
13 lines
438 B
Plaintext
let base = import "../nickel/stratum-base/stratum-base.ncl" in
|
|
{
|
|
id = "notify-result",
|
|
handler = "scripts/nu/notify.nu",
|
|
input_schemas = { "installed" = "schemas/capabilities/installed.ncl" },
|
|
output_schemas = {},
|
|
compensate = null,
|
|
retry = { max = 3, backoff_secs = 2, strategy = 'exponential },
|
|
timeout_secs = 30,
|
|
atomic = false,
|
|
triggers = [],
|
|
} | base.NodeDefinition
|