Skip to main content

agience-prism

An environment adapter — prism adapts an environment (world ↔ frame) to Agience. This is the Python adapter: the Agience developer SDK (Apache-2.0).

from prism import Host, create_server

Install

pip install agience-prism

The base install has no dependencies. It carries the contract — canonical JSON, the crystal model, the capability vocabulary, the config shape, the error set, and the structural address — so a component can hold the same answers as every other component without taking on an install cost.

Runtime surfaces are extras:

Extra Installs For
trust python-jose, cryptography the trust floor: keys, signing, scopes
host fastapi, uvicorn, httpx, pyjwt prism.Host
server mcp, httpx prism.create_server
cli cryptography, httpx the prism command line
vector numpy vector types
wire numpy, cryptography the plane: reach, frames, carriers, settlement
all all of the above
dev all + pytest, pytest-asyncio, ruff working on prism itself
pip install "agience-prism[host]"
pip install "agience-prism[all]"

The runtime surfaces resolve through PEP 562 __getattr__, so reaching one without its extra raises an ImportError naming the extra to install, while from prism.canonical import canonical_string costs nothing.

Nine of the sixteen wire modules — carriers, pump, minhash, minting, settlement, extraction, schema, error_threshold, mcp_bridge — import on the bare base install. tests/test_wire_extra.py imports each in a subprocess with numpy and cryptography blocked, so that claim can fail rather than only be asserted.

The aperture is reached by injection (prism.instrument), never by import. A published SDK depends only on packages its consumers can install.

Two toolkits

A host is compute that serves capabilities over HTTP. The platform reaches it over the wire; it imports nothing of the platform.

from prism import Host
from pydantic import BaseModel

host = Host("my-host")


class EchoIn(BaseModel):
    text: str


@host.operator("echo", path="/echo")
def echo(req: EchoIn) -> dict:
    """The function's type hints drive request and response validation."""
    return {"echo": req.text}


app = host.app                  # or: host.serve(port=8083)

api_key=... requires a bearer; EMBER_URI + AGIENCE_TOKEN make the host self-register on start. Routes mounted by hand onto host.app are unauthenticated — use Depends(host.auth_dependency) to apply the same check @host.operator does.

A server exposes MCP tools authorized as the calling user: it captures the inbound delegation token and forwards it on outbound calls, so it only ever acts within that user's authorization.

import json

from prism import create_server

mcp, server = create_server("my-server")


@mcp.tool(description="Echo a message back, with the calling user's id.")
async def echo(message: str) -> str:
    return json.dumps({"echo": message, "user": server.get_user_id()})


app = server.create_app(mcp)    # ASGI; captures the inbound delegation token

The shared contract

prism/vectors/contract_vectors.json is the one artifact all three prism SDKs are checked against — canonical JSON, the crystal sha, the structural address, capability reach. tests/test_contract_vectors.py asserts it here; prism-js and prism-c assert the same bytes. That file is what makes "one wire format, three languages" a measurement rather than a claim.

The vectors ship inside the wheel, so pip install agience-prism is enough to run a conformance gate — no source tree and no sibling checkout:

from prism.vectors import load_vectors
vectors = load_vectors("contract_vectors")

Self-contained

Prism resolves no path outside its own installation and imports nothing from the components that depend on it. Where a deployment supplies data — operator bundles for prism.runner — it names the directory with $AGIENCE_BUNDLE_ROOT or binds a payload with register_group(). Prism never searches for a sibling checkout, because a path derived from where a file happens to sit is a fallback that can drift from the bytes the mesh carries while the integrity gate keeps passing.

Development

pip install -e ".[dev]"
python -m pytest -q
python -m ruff check .

License

Apache-2.0 — see LICENSE and NOTICE. Contributing: CONTRIBUTING.md. Security: SECURITY.md.

Prism is permissive deliberately: build on Agience over the wire with no copyleft reaching your code. The base install has no dependencies, so depending on it costs nothing.

Download files

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

Source Distribution

agience_prism-0.1.2.tar.gz (295.6 kB view details)

Uploaded Source

Built Distribution

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

agience_prism-0.1.2-py3-none-any.whl (237.5 kB view details)

Uploaded Python 3

File details

Details for the file agience_prism-0.1.2.tar.gz.

File metadata

  • Download URL: agience_prism-0.1.2.tar.gz
  • Upload date:
  • Size: 295.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agience_prism-0.1.2.tar.gz
Algorithm Hash digest
SHA256 270330f5bac9620e62b7a90e6f035db0584b2a387cb61b2ce7d514819e7235fb
MD5 a07a302bc575b97e4c380290732d06fc
BLAKE2b-256 8da659d339fdb0cf61ebcd1ecc4621b93dfe1e7c666f1d1d177b8ddc98e22de9

See more details on using hashes here.

Provenance

The following attestation bundles were made for agience_prism-0.1.2.tar.gz:

Publisher: publish.yml on Agience/agience-prism-py

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

File details

Details for the file agience_prism-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: agience_prism-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 237.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for agience_prism-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d418e0bac9bc3afba7d0bba50d0799ff7a4c7d2157876a6c15813185fd288d6b
MD5 f2086bf96f413d5cba17e43ec44a2c15
BLAKE2b-256 28f7a11278397f89d2b77881186b69271885a7a9415d22ce18162ba8a75192d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for agience_prism-0.1.2-py3-none-any.whl:

Publisher: publish.yml on Agience/agience-prism-py

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

Release history Release notifications | RSS feed

This release

0.1.2 This release

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page