agentomy-agent
Embedded AI Agent Governance Peer. Drop it into any agent session to get real-time governance assessment, flag reporting, and GovernanceBench scoring.
License: MIT | Requires: Python 3.9+
Installation
pip install agentomy-agent
Quick start
# Detect local LLMs and print the governance system prompt
agentomy-agent init
# Start a governed session (prints governance context + system prompt)
agentomy-agent session --model llama3.1:70b --scope security-research
# Check governance state
agentomy-agent status
# Connect to Agentomy infrastructure (6/6 mode)
agentomy-agent status --infra http://localhost:3000
What it does
The Agentomy Agent is a governance peer -- not a wall. It observes, assesses, flags, and summarises. It does not block or halt. Enforcement belongs to the human operator.
Standalone mode: 3/6 GovernanceBench dimensions.
- Authorization: is the agent operating within its assigned scope?
- Behavioral Integrity: is the agent's behavior consistent with its stated purpose?
- Auditability: every flag and every confirmed clean action is appended to a SHA-256 hash chain inside the session, exportable with
session.audit_chain()and verifiable withverify_audit_chain(); the head hash is the session's verification hash.
Connected mode: 6/6 GovernanceBench dimensions.
- Adds: a centralized, non-repudiable audit trail + Override Capability (verified kill switch) + OWASP coverage + message governance
Governance system prompt
The governance system prompt is bundled in the package. Paste it into any LLM session to activate the Agentomy Agent:
agentomy-agent init --full-prompt
Or access it in Python:
from agentomy_agent.prompt import SYSTEM_PROMPT
print(SYSTEM_PROMPT)
Ollama MCP integration
Start the MCP server:
agentomy-agent serve
# Listening on http://127.0.0.1:8765
Add to your Ollama MCP config (~/.ollama/mcp.json):
{
"mcpServers": {
"agentomy": {
"url": "http://127.0.0.1:8765",
"description": "Agentomy Agent -- Embedded AI Agent Governance Peer"
}
}
}
The MCP server exposes two tools:
agentomy_prompt-- returns the full governance system promptagentomy_status-- returns current governance state (standalone mode)
Model recommendations
Use a frontier model (Claude, GPT-5.x, Gemini) or a local model of 32B+ parameters for reliable governance assessment. Models below 14B may produce false governance confidence.
# Check what you have installed
agentomy-agent init
The init command probes Ollama (localhost:11434) and LM Studio (localhost:1234) and reports available models with size tags and recommendations.
Python API
from agentomy_agent.governance import GovernanceSession, check_model_capability, verify_audit_chain
from agentomy_agent.detector import detect_all
from agentomy_agent.prompt import SYSTEM_PROMPT
# Detect local LLMs
providers = detect_all()
for p in providers:
print(p["provider"], [m["name"] for m in p["models"]])
# Check model capability
cap = check_model_capability("llama3.1:70b")
print(cap["level"], cap["message"]) # degraded / full / warning
# Track a governance session
session = GovernanceSession(model="llama3.1:70b", connected=False)
session.record_clean()
session.record_flag("HIGH", "tool call outside scope", "accessed /etc/passwd", "Authorization")
print(session.summary())
# The audit chain: hash-linked, oldest first; verification recomputes every link
chain = session.audit_chain()
print(verify_audit_chain(chain)) # (True, None); a tampered or truncated chain returns (False, index)
Standalone mode vs connected mode
| Standalone mode | Connected mode | |
|---|---|---|
| GovernanceBench score | 3/6 | 6/6 |
| Authorization assessment | Yes | Yes |
| Behavioral Integrity | Yes | Yes |
| Tamper-evident audit trail | In-session hash chain, exportable | Centralized, non-repudiable |
| Fleet-level kill switch | No | Yes |
| VIGIL threat detection | Observation only | 148 scenarios, scored |
| Shadow AI discovery | No | Yes |
| GDPR Article 22 | No | Yes |
Standalone mode needs no infrastructure. Connected to the Agentomy infrastructure layer, the same agent scores all six dimensions.
Connect
- Infrastructure integration: agentomy.com/integrations
- Enterprise deployment: governance@agentomy.com
- GitHub: github.com/getagentomy
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 agentomy_agent-0.3.1.tar.gz.
File metadata
- Download URL: agentomy_agent-0.3.1.tar.gz
- Upload date:
- Size: 28.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b981ceec3e0cfeb775066a81bd6e40213d03cca9ba536cd2e64856f134460910
|
|
| MD5 |
4682d4e716ea49c1c834afdb9a5d1582
|
|
| BLAKE2b-256 |
9522932a976cf225f2d898d59fa620d7a6e26f70068329ffed93555e84150d3a
|
File details
Details for the file agentomy_agent-0.3.1-py3-none-any.whl.
File metadata
- Download URL: agentomy_agent-0.3.1-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.11.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ca2d00a70e3e9b4ebc5ef9c61440fc068550888e3b0487223d80a3529ac0de0
|
|
| MD5 |
18230ca41ff6befa5bb69f0f9d302a8c
|
|
| BLAKE2b-256 |
2f4da7bb9dad15fd48489c06393184fe3b03f5d69e758aae09e369389e7a1ad9
|