Skip to Content
Aionis currently ships as a local-first Lite Runtime for developer machines and self-managed deployments.
Using AionisGuide an Agent

Guide an Agent

guide compiles governed context for the next Agent turn. It is where Aionis decides what can be used now, what must be inspected, what must not be used, and what should be rehydrated only if needed.

SDK Example

import { agentPromptFromGuide } from "@aionis/sdk"; const guide = await aionis.execution.guideForRole({ agent_id: "worker-2", team_id: "checkout-team", role: "worker", run_id: "run-002", task_signature: "checkout-migration", query_text: "Continue from the latest accepted checkout route.", context_mode: "compact_agent", }); await agent.run(agentPromptFromGuide(guide));

Agent Context Surfaces

SurfaceMeaning
use_nowCurrent, trusted enough for direct Agent use.
inspect_before_useRelevant but risky, contested, stale, or incomplete.
do_not_useFailed, suppressed, or unsafe as a route.
rehydratePointer to raw evidence that should not always enter the prompt.

Execution Memory renders these surfaces as a contract, not a narrative summary. That keeps failed branches visible without turning them into instructions.