omega_cortex_check
Check semantic alignment of a proposed action against a task baseline before executing high-impact operations. Returns approval status, similarity score, and verdict.
Instructions
Read-only alignment gate that measures semantic similarity between a proposed action and the task baseline. Use this to check alignment before high-impact operations without modifying any arguments; use omega_cortex_steer instead if you want automatic argument correction. Returns JSON with fields: approved (boolean), similarity (float 0-1), verdict (APPROVED | BLOCKED).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tool | Yes | Name of the tool to check alignment for, e.g. 'omega_ingest'. | |
| args | Yes | The proposed arguments for the tool call, serialized as a JSON object. | |
| baseline_prompt | Yes | Task baseline describing the intended operation, e.g. 'Refactoring the auth module for OAuth2 support'. |