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.
16 lines
604 B
Plaintext
16 lines
604 B
Plaintext
let base = import "../nickel/stratum-base/stratum-base.ncl" in
|
|
{
|
|
id = "build-crate",
|
|
handler = "scripts/nu/build.nu",
|
|
input_schemas = {
|
|
"linted-code" = "schemas/capabilities/linted-code.ncl",
|
|
"formatted-code" = "schemas/capabilities/formatted-code.ncl",
|
|
},
|
|
output_schemas = { "built-artifact" = "schemas/capabilities/built-artifact.ncl" },
|
|
compensate = "scripts/nu/build-rollback.nu",
|
|
retry = { max = 3, backoff_secs = 10, strategy = 'exponential },
|
|
timeout_secs = 600,
|
|
atomic = true,
|
|
triggers = [],
|
|
} | base.NodeDefinition
|