Skip to content

Integrations for governed agent actions

Use Novyx where an agent is about to change production: migrations, deploys, repos, billing, customer systems, and other high-impact tools.

Migration gate

Run the blast-radius analyzer before schema changes execute.

MCP access

Let MCP-capable agents request guarded effects instead of raw tools.

Audit export

Send verdicts and approvals into the evidence trail your team reviews.

Deployment workflow

Use the verdict as the input to CI, deploy approval, or release gates.

Run the proven gate

The first integration is the blast-radius analyzer. It parses an agent-proposed migration, grades each statement, and returns an approval/block verdict with a human-readable explanation.

python
from novyx_blast_radius import BlastRadiusAnalyzer

report = BlastRadiusAnalyzer(probe).analyze(migration_sql)

if report.verdict == "block":
    raise RuntimeError(report.explanation)

submit_for_review(report)

Expose the gate over MCP

MCP is a route into governed actions for coding agents and editor tools. Keep the exposed surface small: request the action, attach blast-radius evidence, read the decision.

json
{
  "mcpServers": {
    "novyx-control": {
      "command": "uvx",
      "args": ["novyx-mcp"],
      "env": {
        "NOVYX_MODE": "control"
      }
    }
  }
}

Memory integrations are now archive docs.

LangChain, CrewAI, LlamaIndex, Cursor, Claude Code, and other memory guides still exist for users who need them. They are no longer the main product path.