📄️ Introduction
📄️ Apply a calibration recommendation as a new condition version
Consume a calibration_token and create a new immutable condition version
📄️ Generate calibration recommendation for a condition
Analyse stored feedback and/or a target alert volume to recommend
📄️ Cancel an async job
Request cancellation of a queued or running job.
📄️ Compile a concept to an execution graph
Validate, compile, and store a concept as an ExecutionGraph.
📄️ Explain the execution plan for a concept
Return the execution plan for a concept without compiling or executing.
📄️ Produce the semantic view of a concept
Produce a SemanticGraph from a concept definition without compiling.
📄️ Compile a multi-step workflow from a natural language description
Compile a multi-step workflow description into an ExecutionPlan.
📄️ Create a new application context
Create a new application context version.
📄️ Create a new guardrails version
Create a new guardrails version.
📄️ Create a task from natural language intent
Submit a natural language intent to the LLM pipeline.
📄️ Define a concept from a natural language description
Produce a ConceptDefinition draft from a natural language description.
📄️ Define a condition from a natural language description
Produce a ConditionDefinition draft from a natural language description.
📄️ Delete a task
Soft-delete a task (status → 'deleted').
📄️ Deprecate a definition version
Mark a definition version as deprecated.
📄️ Evaluate a condition for multiple entities
Run condition evaluation (φ layer) for N entities in a single call.
📄️ Evaluate a condition for one entity
Run the φ layer (condition evaluation) for a single entity.
📄️ Execute concept + condition + action pipeline
Run the full ψ → φ → α pipeline for a given entity.
📄️ Enqueue an async concept execution job
Enqueue a concept execution job and return immediately.
📄️ Execute concept for multiple entities
Run concept execution for N entities against the same (id, version).
📄️ Execute a concept for an entity
Run ψ layer execution for a single entity.
📄️ Execute a pre-compiled graph
Execute a pre-compiled execution graph by graph_id.
📄️ Execute concept over a time range
Run concept execution for one entity across a closed time range.
📄️ Evaluate a condition with inline data (test-only)
Evaluate a registered condition using caller-supplied primitive values.
📄️ Explain condition logic and parameters
Return a human-readable explanation of a condition definition.
📄️ Explain a specific decision result for an entity
Return a full explanation of a decision result.
📄️ Find semantically similar definitions
Return definitions that are semantically similar to the given (id, version).
📄️ Get an action definition
Return the full ActionDefinition for the given (action_id, version).
📄️ Get the active application context
Return the currently active application context.
📄️ Get the active guardrails version
Return the currently active API guardrails version.
📄️ Get a condition definition
Return the full ConditionDefinition for the given (condition_id, version).
📄️ Get a specific context version
Return the context for the given version string (e.g. 'v1', 'v2').
📄️ Get a registered feature
Return a registered feature by feature_id.
📄️ Get usages of a feature
Return all definitions that depend on the given feature.
📄️ Get a stored execution graph
Retrieve a stored execution graph by graph_id.
📄️ Get a specific guardrails version
Return the guardrails version for the given version string (e.g. 'v1', 'v2').
📄️ Get context impact on tasks
Return task distribution across context versions.
📄️ Get guardrails impact on tasks
Return task distribution across guardrails versions.
📄️ Get async job status and result
Return the current status of an async job.
📄️ Get lineage for a definition
Return the version chain and namespace promotion history of a definition.
📄️ Get semantic diff between two versions
Compare two versions of a definition and return the semantic diff.
📄️ Get task details
Return the full task definition by task_id.
📄️ Get version history for a definition
Return all versions of a definition, newest-first (created_at DESC).
📄️ List action definitions
Return a list of non-deprecated ActionDefinitions for the given namespace.
📄️ List definitions
Return a paginated list of definitions.
📄️ Search features
Search features in the feature registry.
📄️ List tasks
Return a paginated list of tasks for the current workspace.
📄️ List all context versions
Return all context versions ordered by created_at descending (newest first).
📄️ List all guardrails versions
Return all guardrails versions ordered by created_at descending (newest first).
📄️ Promote a definition to a higher namespace
Promote a definition version to a higher namespace.
📄️ Query the definition registry using natural language
Run a natural language query over the definition registry.
📄️ Register an action definition
Register a new ActionDefinition in the definitions store.
📄️ Register a definition
Register (create or update) a definition in the registry.
📄️ Register multiple definitions in a single request
Register a batch of definitions atomically.
📄️ Register a feature
Register a new feature in the feature registry.
🗃️ schemas
134 items
📄️ Search definitions by keyword
Search definitions by keyword across id, namespace, and metadata.
📄️ Refine an existing definition using a natural language instruction
Apply a natural language refinement instruction to an existing definition.
📄️ Submit feedback on a decision
Record user feedback on a specific decision result.
📄️ Trigger an action directly
Fire a registered action directly for a given entity, bypassing the
📄️ Update a task
Update operational task settings.