Intent
What action is being proposed, which objective it serves, where it originated, and whether the intent is explicit enough for the operation.
AGEC / Public Alpha
AGEC evaluates whether a proposed AI agent action should proceed at the moment of execution, using its intent, runtime context, and planned execution path.
It returns a structured decision - proceed, review, suspend, halt, or reauthorize - and records the reason for audit.
Built for teams deploying agents that invoke tools, modify systems, send communications, or create other external side effects.
Run the CLI demo: agec-demo
Suitable for local evaluation, demos, and early pilot integrations.
The proposed execution path is not registered for this action.
audit_7e51c09a22f1
The Operating Concept
We use Legitimate Execution Governance to describe the runtime evaluation of whether a proposed agent action remains valid at the exact moment it is about to affect an external system.
AGEC expresses this evaluation as a structured pre-execution decision based on intent, runtime context, and execution path.
What action is being proposed, which objective it serves, where it originated, and whether the intent is explicit enough for the operation.
Are the facts required for the action present, current, and consistent with the declared execution conditions?
Is the agent following the registered sequence of steps and required validations for this action?
How It Works
Provide the action intent, the runtime facts required for execution, and the planned sequence of tool calls.
AGEC validates the inputs immediately before the tool, node, or callable is invoked.
Execution continues only on proceed. Other decisions
can trigger review, suspension, termination, or reauthorization.
Each validation produces a reason and audit identifier that can be persisted for later inspection.
Where AGEC Sits
AGEC complements identity systems, access controls, policy engines, and agent frameworks by evaluating the specific proposed action at the final pre-execution boundary.
AGEC SDK
AGEC - Authorized Governance Execution Context - runs immediately before a tool, node, or callable and returns a structured governance decision that determines whether execution can continue.
It can guard regular Python callables, OpenAI Agents tool functions, and LangGraph-style nodes.
pip install agec
from agec import AGEC, Intent, Context, ExecutionPath
decision = AGEC().validate(
intent=Intent(
type="send_price_list",
source="user_request",
confidence=0.91,
),
context=Context(
facts={"price_list_status": "current"}
),
execution_path=ExecutionPath(
steps=[
"crm.read_customers",
"pricing.get_latest_list",
"email.send_campaign",
],
approved_path_id="price_campaign_v1",
),
)
print(decision.status)
Run the deterministic demo with agec-demo.
SDK Capabilities
Install the current alpha from PyPI and place the gate where your tools execute.
The current SDK produces five defined outcomes: proceed, review, suspend, halt, and reauthorize.
Every decision includes a reason and audit ID. Audit events can be persisted as JSONL.
Guard regular callables, OpenAI Agents tool functions, and LangGraph-style nodes without handing AGEC ownership of your framework clients or API keys.
Use Case
A sales agent prepares a campaign to send an updated price list to a customer segment. Immediately before the email tool runs, AGEC evaluates the campaign intent, checks the current runtime facts, and compares the planned tool sequence with the registered execution path.
proceedA current price list and registered path can return proceed.
reviewMissing runtime facts can return review.
suspendAn invalid context can return suspend.
halt / reauthorizeA changed execution path can return halt or reauthorize.
The decision is made before any campaign email is sent.
Planoryx
Planoryx develops the SDK, validation services, review workflows, and observability required to operate governed AI agents across real business systems.
The public Python SDK that evaluates proposed actions before tools execute.
Centralized validation, registered execution paths, and persistent decision records.
Queues and approval workflows for decisions that require human review or reauthorization.
Searchable execution history, governance metrics, and enterprise monitoring integrations.
Roadmap
Planoryx develops AGEC and the operational tooling around pre-execution governance. The roadmap is expressed as product maturity stages, not calendar promises.
Python package, five governance decisions, audit logs, CLI demos, callable wrappers, and OpenAI/LangGraph helpers.
Centralized registered-path management, remote validation, persistent audit records, and MCP integration.
Review queues, approval workflows, governance dashboards, templates, and enterprise integrations.
Evaluate AGEC
Install the public alpha, run the included demo, and place the governance gate before a tool or callable in your agent workflow.