Skip to main content

unitares-sdk

Build your own Unitares resident agent. A resident is a long-running (or scheduled) process that checks in to governance, carries an EISV state vector, and participates in the shared knowledge graph. Vigil, Sentinel, and Chronicler are reference implementations.

Install

pip install unitares-sdk

To install the SDK as it shipped with a specific server release, use the Git URL instead:

pip install "unitares-sdk @ git+https://github.com/cirwel/unitares@v2.20.0#subdirectory=agents/sdk"

Replace @v2.20.0 with another server release tag only after checking the compatibility map. Pin a commit SHA when reproducing a specific development build.

Or from a checkout of the unitares repo:

pip install -e agents/sdk

Releases are tag-driven. Pushing an sdk-v* tag whose version matches version in pyproject.toml runs .github/workflows/publish-sdk.yml, which builds and uploads via PyPI Trusted Publishing — OIDC, no API token. The SDK carries its own version series, independent of the server's. See the release process.

Links in this file are absolute on purpose: pyproject.toml uses it as the package readme, so PyPI renders it outside the repo and relative paths 404.

The package is standalone — it talks to a UNITARES server over MCP/REST and never needs the server codebase importable. Fully typed (py.typed).

The 30-line resident

from pathlib import Path
from unitares_sdk.agent import CycleResult, GovernanceAgent
from unitares_sdk.client import GovernanceClient


class MyResident(GovernanceAgent):
    def __init__(self):
        super().__init__(
            name="MyResident",
            mcp_url="http://127.0.0.1:8767/mcp/",
            persistent=True,               # requires roster registration — see below
            refuse_fresh_onboard=True,     # explicit bootstrap required
            cycle_timeout_seconds=60.0,    # hard cap on one cycle
            log_file=Path("/tmp/my_resident.log"),
            max_log_lines=10_000,
        )

    async def do_scan(self, client: GovernanceClient) -> int:
        # Your work goes here. Returning 0 means "nothing to do this tick".
        return 1

    async def run_cycle(self, client: GovernanceClient) -> CycleResult | None:
        # Return a CycleResult to trigger a check-in, or None to skip.
        count = await self.do_scan(client)
        if count == 0:
            return None
        return CycleResult(
            summary=f"scanned {count} items",
            complexity=0.2,
            confidence=0.9,
        )


if __name__ == "__main__":
    import asyncio
    asyncio.run(MyResident().run_forever(interval=60))

Register the name first

Before the first run, add the agent's name to the governance server's UNITARES_RESIDENTS roster and restart the server:

UNITARES_RESIDENTS=MyResident            # comma-separated; empty by default

This is not optional bookkeeping. persistent and autonomous are privileged tags: the server grants them only at mint, and only when the name being minted is on that roster. An identity cannot assign them to itself afterwards, so a resident bootstrapped under an unlisted name is not protected from auto-archive and cannot be upgraded in place — the only fix is to register the name and bootstrap a fresh identity.

The roster is empty by default and never ships a fleet, so a fresh install has no named residents until you declare yours.

First run

UNITARES_FIRST_RUN=1 python my_resident.py — this mints the identity and stores its UUID anchor at ~/.unitares/anchors/myresident.json. Every subsequent run resumes that anchor automatically. Never delete anchors: if you do, set UNITARES_FIRST_RUN=1 again to re-bootstrap (you will get a new UUID).

If the name was not on the roster, the mint raises ResidentRegistrationRefused with the exact remedy rather than starting an agent that quietly is not a resident. The server reports what happened in OnboardResult.resident_registration:

{"status": "not_on_roster",       # or: registered | no_roster_configured
 "requested_name": "MyResident",
 "granted_tags": ["ephemeral"],
 "required_tags": ["persistent", "autonomous"],
 "roster_env": "UNITARES_RESIDENTS",
 "detail": "..."}                 # actionable remedy

Pass persistent=False for an ordinary long-running agent that does not need resident semantics; no roster entry is required for that.

Extension points

The base class handles MCP connect, identity resolve, check-in, heartbeat, log rotation, state persistence, and graceful shutdown. Override these to extend behavior:

Hook When Signature Return
run_cycle(client) Each iteration. The only required override. (client) -> CycleResult | None CycleResult or None
on_after_checkin(client, checkin_result, cycle_result) After each check-in, even on pause/reject. Use for EISV logging, coherence tracking, state writes that need the server response. All three args typed via unitares_sdk.models. None
on_verdict_pause(client, checkin_result, cycle_result) When the server returns a pause verdict. Use for self-recovery. Same arg signature as on_after_checkin for consistency. True to retry the check-in once; False to let VerdictError propagate.

Hook exceptions are logged and swallowed — a broken hook cannot take down a cycle. asyncio.CancelledError always propagates.

Do not override _ensure_identity, _handle_cycle_result, or _send_heartbeat — those are load-bearing and change across versions.

Constructor reference

Parameter Type Default Purpose
name str required Agent display name; drives anchor path (~/.unitares/anchors/<name_lower>.json).
mcp_url str http://127.0.0.1:8767/mcp/ Governance MCP endpoint.
persistent bool False Stamp the persistent + autonomous tags on fresh onboard. Set True for long-running residents.
refuse_fresh_onboard bool False Require UNITARES_FIRST_RUN=1 to mint a new identity. Set True to prevent silent ghost-forks.
cycle_timeout_seconds float | None None Hard cap on a single run_once / run_forever iteration. MCP's anyio task group can hang on session.initialize if the server flakes — use 60–120s.
log_file Path | None None Log file to auto-trim after each cycle (in both run_once and run_forever, in a finally block so it fires on error and timeout too). Leave unset if launchd / logrotate owns rotation.
max_log_lines int 10_000 Trim threshold for log_file.
state_dir Path | None <repo>/data/<name_lower> Default directory for state persistence. Used when state_file is not set.
state_file Path | None None Explicit cross-cycle state path. Takes precedence over state_dir / "state.json" when set.
parent_agent_id str | None None Forked-from UUID. Forwards to server on fresh onboard.
spawn_reason str | None None Registered values: subagent, dialectic_reviewer, dispatch, compaction, explicit, new_session. Unknown values are accepted but receive no live-parent exemption.

Lifecycle shapes

  • Daemon: asyncio.run(agent.run_forever(interval=60)) — loops forever with heartbeats when idle. Reference: agents/sentinel/agent.py.
  • Scheduled: asyncio.run(agent.run_once()) under launchd / systemd cron. References: agents/chronicler/agent.py, agents/vigil/agent.py.

Both shapes respect cycle_timeout_seconds and auto-trim log_file.

State persistence

  • self.save_state(d: dict) and self.load_state() -> dict let your run_cycle carry data across iterations. Writes are atomic (os.replace).
  • Non-JSON-serializable values (e.g. datetime, Path) are coerced to their str() representation on save rather than raising TypeError. You get a lossy round-trip, not a silent state-write failure.

Identity rules

  1. The agent's first MCP call (onboard or identity) is the sole source of identity. Do not set identity out-of-band.
  2. UUID is the ground truth. client_session_id and continuity_token are cache keys for ephemeral clients; residents don't need them.
  3. Anchors live at ~/.unitares/anchors/<name_lower>.json. One anchor per host per role. The file contains agent_uuid and is written atomically.
  4. Never silent-swap an identity. If the anchor is missing and refuse_fresh_onboard=True, _ensure_identity raises IdentityBootstrapRefused — the operator must explicitly set UNITARES_FIRST_RUN=1 once to mint a new one.

Identity-bound lease calls

LeasePlaneClient accepts identity_proof=<continuity_token> on acquire, renew, heartbeat, release, handoff_offer, and handoff_accept. Before each mutation it exchanges that credential with governance for a short-lived lat.v1 attestation bound to the exact method, path, and serialized request body. Only the attestation travels in X-Unitares-Identity-Proof; neither proof is persisted in the request body. Remote governance exchanges require HTTPS; plain HTTP is accepted only on loopback or for an explicitly listed internal hostname. A caller may pass an already-minted lat.v1 token, but it is single-use: acquire_with_retry requires identity_proof_factory so every attempt receives a fresh token. hybrid mode supports mixed-version upgrades; attestation mode fails closed on raw proofs. The SDK does not forward a continuity credential when exchange fails unless an operator deliberately sets identity_legacy_fallback=True in its client config for that migration window.

Not in the SDK (on purpose)

  • agents/common/findings.py and agents/common/config.py are internal to the reference residents in this repo. If you need findings-posting in your own resident, vendor the helper or POST to /api/findings yourself — the REST contract is the public surface.
  • The violation taxonomy is server-owned vocabulary (src/violation_taxonomy.yaml); consume it via the /v1/taxonomy endpoint rather than importing server code.
  • Watcher (agents/watcher/agent.py) uses a different execution model (sync, hook-driven, one-shot per tool-use event) and does not subclass GovernanceAgent.

Release files for unitares-sdk 0.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for unitares-sdk 0.3.0
File Size Uploaded
unitares_sdk-0.3.0.tar.gz 121.0 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for unitares-sdk 0.3.0
File Interpreter ABI Platform
unitares_sdk-0.3.0-py3-none-any.whl Python 3 none any Details

Total release size: 207.1 kB

Release files / unitares_sdk-0.3.0.tar.gz

Download URL unitares_sdk-0.3.0.tar.gz
Size 121.0 kB
Tags Source
SHA-256 checksum
How to use checksums
15b8c2b9c920dff32e96d8e8c8de50dd9f4bb563dbc2de1f287faf180c0cc041
BLAKE2b-256 checksum
How to use checksums
bc9478584fc59752b131e0fd0eb1cde8ce447fc13857ec75e69db3a25adbaa18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release files / unitares_sdk-0.3.0-py3-none-any.whl

Download URL unitares_sdk-0.3.0-py3-none-any.whl
Size 86.1 kB
Tags Python 3
SHA-256 checksum
How to use checksums
eb7b19aafcf7abfac41cfc5022fa06b3089256bf2ba91258a419b529812cc377
BLAKE2b-256 checksum
How to use checksums
55dd553e2fe079841543e59ca115a2eef1588d3e7696b2068b7ed5779db240bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 30, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.3.0 This release

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

0.1.0

2 release 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