Full AI agent execution lifecycle: plan, approve, execute, guardrails, capability tokens
Project description
nodus-agent
Full AI agent execution lifecycle for Nodus AI systems.
Provides the plan → approve → execute pipeline with HMAC-signed capability tokens, duplicate-submission guardrails, and a pluggable planner backend. No required external dependencies — all integrations (LLM client, memory, events, approvals) are injected at construction time.
Status: v0.1.0 — prepared, not yet published.
Install
pip install nodus-agent
What it provides
| Component | Purpose |
|---|---|
AgentRun / InMemoryAgentRunStore |
Run state machine: PENDING_APPROVAL → APPROVED → EXECUTING → COMPLETED/FAILED |
mint_token / validate_token |
HMAC-SHA256 capability tokens scoped to a run and user |
LocalPlanner |
Heuristic planner — zero deps, matches tool names from objective text |
LLMPlanner |
LLM-backed planner — accepts any client with a .chat() method |
AgentExecutor |
Orchestrates submit → approve → execute; all integrations optional |
DuplicateSubmissionGuard |
Blocks concurrent identical submissions per user |
check_risk_policy |
Raises GuardrailViolation if plan risk exceeds allowed level |
Quick start
from nodus_agent import AgentExecutor, LocalPlanner, AgentStatus
executor = AgentExecutor()
run = executor.submit("Summarise last week's sales data", user_id="u1")
# run.status == AgentStatus.PENDING_APPROVAL
executor.approve(run.id)
result = executor.execute(run.id)
# result == {"steps_completed": N, "outputs": [...]}
# run.status == AgentStatus.COMPLETED
Auto-approve for automated pipelines
run = executor.submit("Routine cleanup", "u1", auto_approve=True)
executor.execute(run.id)
With a tool registry
from nodus_agent import AgentExecutor
def my_tool(args):
return {"result": "done"}
class SimpleRegistry:
def list(self, **_): return [{"name": "my.tool", "description": "does a thing"}]
def get(self, name): return type("T", (), {"handler": my_tool, "deprecated": False})()
executor = AgentExecutor(tool_registry=SimpleRegistry())
Capability tokens
from nodus_agent import mint_token, validate_token
token = mint_token(
run_id="run-abc",
user_id="u1",
granted_tools=["memory.read", "memory.write"],
allowed_capabilities=["memory.read", "memory.write"],
ttl_hours=1,
)
result = validate_token(token.to_dict(), run_id="run-abc", user_id="u1")
# {"ok": True, "granted_tools": [...], "allowed_capabilities": [...]}
Tokens are HMAC-SHA256 signed over the payload. Tampering with any field
causes validate_token to return {"ok": False, "error": "signature mismatch"}.
LLM-backed planning
from nodus_agent import AgentExecutor, LLMPlanner
# Any object with a .chat(messages, max_tokens) method
class MyLLMClient:
def chat(self, messages, max_tokens=1024):
# call OpenAI / Anthropic / local model
return '{"steps": [{"tool": "memory.read", "args": {}}]}'
executor = AgentExecutor(planner=LLMPlanner(MyLLMClient()))
LLMPlanner falls back to LocalPlanner if the LLM call fails.
Guardrails
from nodus_agent import (
DuplicateSubmissionGuard, GuardrailViolation, check_risk_policy,
)
guard = DuplicateSubmissionGuard(window_seconds=300)
guard.check(user_id, objective) # raises GuardrailViolation if duplicate
guard.register(user_id, objective, run_id)
guard.release(user_id, objective) # call when run completes
check_risk_policy(plan, allowed_risk_levels=("low", "medium"))
# raises GuardrailViolation if plan["risk"] not in allowed_risk_levels
Run state machine
PENDING_APPROVAL → APPROVED → EXECUTING → COMPLETED
↘ FAILED
run.is_terminal # True for COMPLETED and FAILED
run.approved_at # datetime | None
run.completed_at # datetime | None
run.result # output dict | None
Design
- No required dependencies. All five modules are pure stdlib. Integrations (LLM client, memory store, event bus, approvals, A2A coordinator) are passed as optional constructor arguments.
- Pluggable planner. Any object implementing
plan(objective, tools, context) → dictsatisfiesPlannerBackend. - Thread-safe.
InMemoryAgentRunStoreandDuplicateSubmissionGuardusethreading.Lock.
Development
pip install -e ".[dev]"
pytest tests/ -q
License
MIT — see LICENSE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nodus_agent-0.1.0.tar.gz.
File metadata
- Download URL: nodus_agent-0.1.0.tar.gz
- Upload date:
- Size: 15.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc25a223919f05ff45a1bea091106bd4e1f51f3288502623d42f0a519b0d1890
|
|
| MD5 |
a9e00225126735d45e99c1800a6b8a53
|
|
| BLAKE2b-256 |
175c32789c65bfab2bee4c83458e24c4d80b3a34debb8bc30ed1044fa96d14c2
|
File details
Details for the file nodus_agent-0.1.0-py3-none-any.whl.
File metadata
- Download URL: nodus_agent-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8595979a9b556edf3a0510cb4d9d664aa3711c1db8a1eaa1fdec25372f75cdc
|
|
| MD5 |
aa3a39e257bd9669d514b6a81e32e1e5
|
|
| BLAKE2b-256 |
2c6e8293bb4e0e730115ddc611717f5d0633f1432a33fc441f04061fd938a791
|