Skip to main content

Nautilus data broker + reasoning engine: intent-aware scoped query execution, multi-agent handoffs, LLM intent analysis, and forensic escalation via Fathom rules

Project description

Nautilus

Policy-first data broker for AI agents. One call plans, routes, enforces, attests, and audits.

PyPI License: MIT Python 3.13+ CI Docs

Current version: 0.1.3 License: MIT Language: Python 3.13+ Package Manager: uv Maintained by: KrakenNet


Why Nautilus?

Every AI agent framework gives agents direct access to data. For most tasks, that's fine.

For some tasks, unchecked access is unacceptable:

  • Policy routing — "Which databases should this query hit?" can't be the agent's choice.
  • Scope enforcement — "What rows is this agent allowed to see?" needs provable constraints.
  • Audit — "What data did this agent touch, and why?" requires a tamper-evident trail.
  • Attestation — "Can we prove this routing decision happened?" needs a signed token.

Nautilus provides deterministic, policy-first data brokering using Fathom — a CLIPS-based expert system — to route, scope, and attest every request.

Install

uv add nautilus-rkm

Quick Start

from nautilus import Broker

broker = Broker.from_config("nautilus.yaml")
try:
    response = broker.request(
        "agent-alpha",
        "Find vulnerabilities for CVE-2026-1234",
        {"clearance": "unclassified", "purpose": "threat-analysis", "session_id": "s1"},
    )
    print(response.data)                # {"main-db": [...]}
    print(response.sources_queried)     # ["main-db"]
    print(response.sources_denied)      # ["classified-db"]
    print(response.attestation_token)   # signed JWS
    print(response.duration_ms)         # 47
finally:
    broker.close()

See the Getting Started guide for a full walkthrough.

What Ships Today

Core runtime

  • Broker facade with sync/async APIs (request, arequest, from_config, afrom_config)
  • Fathom-based policy router for intent-aware source selection and scope enforcement
  • Per-source scope constraints (WHERE-clause fragments) with injection-safe field validation
  • Ed25519 JWS attestation service for signed routing decisions
  • JSONL audit sink with per-request, append-only entries (fsync'd)
  • Pattern-matching and LLM-based intent analysis (Anthropic, OpenAI)
  • Cross-agent handoff reasoning with session-backed escalation detection

Adapters (8 built-in)

  • PostgreSQL, PgVector, Elasticsearch, Neo4j, REST, ServiceNow, InfluxDB, S3
  • Pluggable via entry points and the Adapter SDK

Transports

  • FastAPI REST server (POST /v1/request, health/readiness probes)
  • MCP transport (stdio and HTTP modes)
  • CLI: nautilus serve, nautilus health, nautilus version

Rule packs

  • data-routing-nist — NIST clearance/classification routing rules
  • data-routing-hipaa — HIPAA-compliant routing rules

What You Get Per Request

Step What happens
Intent analysis Classify intent into data types, entities, temporal scope, sensitivity
Policy routing Fathom evaluates (clearance, purpose, source) — route, scope, or deny
Adapter fan-out Routed sources execute concurrently with per-adapter error isolation
Attestation Ed25519 JWS signed over routing decision, bound to request_id
Audit JSONL entry appended per request — success, denial, or error

Key Differentiator: Session-Aware Routing

Unlike stateless policy engines, Nautilus maintains working memory across requests within a session:

  • Cumulative exposure — "This agent accessed PII from 3 sources — deny the 4th."
  • Cross-agent handoffs — "Agent A is passing secret data to Agent B who has unclassified clearance — deny."
  • Escalation detection — "Anomalous access pattern detected — escalate for forensic review."

Integration Shapes

As a library

from nautilus import Broker
broker = Broker.from_config("nautilus.yaml")
response = broker.request("agent-id", "intent", context)

As a REST sidecar

nautilus serve --config nautilus.yaml --transport rest --bind 0.0.0.0:8000
curl -H "X-API-Key: $KEY" -X POST localhost:8000/v1/request \
  -d '{"agent_id": "agent-alpha", "intent": "...", "context": {...}}'

As an MCP server

nautilus serve --config nautilus.yaml --transport mcp

Air-gapped mode

nautilus serve --config nautilus.yaml --air-gapped

Configuration

A nautilus.yaml declares sources, rules, analysis, audit, and attestation:

sources:
  - id: main-db
    adapter: postgres
    dsn: ${DATABASE_URL}
    classification: confidential
    data_types: [users, orders]

rules:
  paths: [./rules/]

attestation:
  enabled: true

audit:
  sink: file
  path: ./audit.jsonl

Documentation

Full documentation is available at nautilus.krakn.ai.

Related Projects

  • Fathom — Deterministic reasoning runtime that powers Nautilus routing
  • Bosun — Agent governance built on Fathom (fleet analysis, compliance attestation)

Development

git clone https://github.com/KrakenNet/nautilus.git
cd nautilus
uv sync
uv run pytest -m unit            # fast suite, no containers
uv run pytest -m integration     # full e2e, boots PostgreSQL via testcontainers
uv run ruff check && uv run ruff format --check && uv run pyright
uv run mkdocs serve              # docs preview

See CHANGELOG.md for release notes.

Contributing

We welcome contributions! Please read our Contributing Guide before submitting a pull request. All contributors are expected to follow our Code of Conduct.

Security

To report a security vulnerability, please see our Security Policy. Do not open a public issue for security concerns.

License

MIT — see LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nautilus_rkm-0.1.5.tar.gz (168.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

nautilus_rkm-0.1.5-py3-none-any.whl (213.2 kB view details)

Uploaded Python 3

File details

Details for the file nautilus_rkm-0.1.5.tar.gz.

File metadata

  • Download URL: nautilus_rkm-0.1.5.tar.gz
  • Upload date:
  • Size: 168.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nautilus_rkm-0.1.5.tar.gz
Algorithm Hash digest
SHA256 ef6478cd116f65c7ace0e9ff376b041d436cd455ab37ca95b0129f1583483444
MD5 d066c866aaeef8b8e61de6f69c8388d2
BLAKE2b-256 140600af96ce225f13c13119a1dbc3d5aa7787f29101aaafc72f69f9939847d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for nautilus_rkm-0.1.5.tar.gz:

Publisher: pypi-publish.yml on KrakenNet/nautilus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nautilus_rkm-0.1.5-py3-none-any.whl.

File metadata

  • Download URL: nautilus_rkm-0.1.5-py3-none-any.whl
  • Upload date:
  • Size: 213.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for nautilus_rkm-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 f8f8bdd86d0b4be0af7b7618b23b9acc14d1f5d5e552a4e1c5db76de54cfeee9
MD5 7959f23cd4f59ec97596603d679f1599
BLAKE2b-256 002ba7bf5ef0f81fd3e25ec8e39b37710c7231f9dc1778b03302eb56b4caf761

See more details on using hashes here.

Provenance

The following attestation bundles were made for nautilus_rkm-0.1.5-py3-none-any.whl:

Publisher: pypi-publish.yml on KrakenNet/nautilus

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page