Resources
AI Agent Glossary
The language of AI agent identity, permissions, audit, and governance, in plain English. Whether you are an engineer wiring up an SDK or a compliance lead asking what an agent can prove, start here.
51 terms
- A2A (Agent-to-Agent) Protocol & Standards
- An emerging class of protocols for agents to communicate and delegate to one another. Vorim's signed identity and attenuated delegation are designed to provide the trust layer beneath such interactions.
- Agent Identity Identity
- A unique, verifiable identifier for a single AI agent, anchored to a cryptographic keypair rather than a shared API key. It lets every action be attributed to a specific agent that can be verified and, if needed, revoked.
- Agentic Workflow AI Agents
- A process where one or more AI agents carry out a multi-step task by planning, calling tools, and reacting to results, rather than following a fixed script. The non-determinism is what makes identity, permissions, and audit hard.
- AI Agent AI Agents
- An autonomous software system, usually powered by a large language model, that can take actions on its own: calling tools, querying APIs, reading and writing data, and making decisions without a human in the loop for each step. Unlike a chatbot that only replies, an agent acts.
- Attenuated Delegation Permissions
- Delegation where each hop can only narrow permissions, never widen them, and the narrowing is cryptographically enforced. This lets a chain of agents pass authority along multiple hops while staying provably within bounds.
- Audit Coverage Compliance
- The share of an agent's actions that are actually captured in the audit trail. Gaps in coverage are where incidents hide, so the goal is every action recorded, signed, and exportable.
- Audit Trail Audit & Trust
- A chronological record of every action an agent took: what it did, when, on what resource, and with what result. The basis for incident response, compliance, and forensic review.
- Canonicalization Cryptography
- Converting data into a single, deterministic byte form before hashing or signing, so the same logical content always produces the same signature. Vorim uses JSON Canonicalization Scheme (RFC 8785) for this.
- Chain of Custody Compliance
- A documented, verifiable history showing that evidence has not been altered from creation to review. For agent actions, a signed, tamper-evident audit trail is what establishes it.
- Compliance Export Audit & Trust
- A signed bundle of audit events, with a manifest of hashes, packaged for a regulator or auditor. Vorim exports these in JSON, CSV, or PDF so the recipient can verify them offline.
- Credential Delegation Permissions
- Letting an agent use an external OAuth credential (Google, GitHub, Slack) through a scoped, revocable grant, so the agent can act against that service without the raw refresh token ever leaving the vault.
- Delegation Permissions
- When one agent grants a subset of its permissions to another agent so it can act on its behalf. Safe delegation requires that the delegate can never gain more than the delegator had.
- Digital Signature Cryptography
- A value produced with a private key that anyone can verify with the matching public key. It proves both who created a piece of data and that it has not changed since.
- Ed25519 Cryptography
- A modern public-key signature algorithm that is fast, compact, and resistant to common implementation mistakes. Vorim uses it for agent keypairs and signatures. It is the same algorithm behind SSH and Signal.
- Escalation Queue Runtime
- A holding area where high-risk agent actions wait for a human operator to approve or deny them. The agent pauses until a verdict is given, then proceeds or stops accordingly.
- EU AI Act Compliance
- The European Union's regulation governing AI systems by risk level. It introduces documentation, transparency, and record-keeping obligations, with key enforcement milestones arriving through 2026.
- Fail-Open vs Fail-Closed Runtime
- How a system behaves when the decision service is unreachable. Fail-open lets the action proceed so agents keep working; fail-closed blocks anything not explicitly allowed. Vorim makes this configurable per organization.
- Fingerprint Identity
- A short, fixed-length hash (Vorim uses SHA-256) derived from an agent's public key. It acts as a compact, human-comparable identifier for the agent's identity.
- Hash Chain Audit & Trust
- A sequence of records where each one includes the hash of the previous one. Removing or changing any single record breaks the chain, which makes silent deletion of an audit event detectable.
- IETF Internet-Draft Protocol & Standards
- A working document submitted to the Internet Engineering Task Force, the standards body behind much of the internet. It is the first step toward a recognized, interoperable standard.
- Keypair Identity
- A matched pair of cryptographic keys: a private key the agent keeps secret and uses to sign, and a public key anyone can use to verify those signatures. Vorim issues a cryptographic identity to every agent on registration.
- Kill Switch Runtime
- The ability to immediately stop an agent, or a class of actions, in production. Useful when an agent starts behaving unexpectedly and you need to halt it without redeploying.
- Least Privilege Permissions
- The principle of granting an agent only the permissions it needs for its job, and nothing more. It limits the blast radius if an agent is compromised or misbehaves.
- MCP (Model Context Protocol) Protocol & Standards
- An open protocol for connecting AI models and agents to tools and data sources. Vorim ships an MCP server so agents can register, check permissions, and log actions through natural-language tool calls.
- Multi-Agent System AI Agents
- An architecture where several specialized agents collaborate, often delegating subtasks to one another. Each agent should have its own identity and scoped permissions so you can tell which agent did what.
- Non-Human Identity (NHI) AI Agents
- Any identity that is not a person: service accounts, machines, workloads, and now AI agents. In large enterprises non-human identities already far outnumber human ones, and agents are the fastest-growing category.
- Non-Repudiation Audit & Trust
- A guarantee that the party who took an action cannot credibly deny taking it. Per-event signing provides non-repudiation: the signature could only have come from that agent's private key.
- OAuth 2.0 Protocol & Standards
- The standard framework for delegated authorization on the web. It handles two-hop access well but does not, on its own, provide cryptographic per-hop attenuation across longer agent delegation chains.
- Open Protocol Protocol & Standards
- A specification published openly so any party can implement, interoperate with, and verify it, rather than being locked to one vendor. Open protocols are what let identity and audit travel across organizations.
- Per-Event Signing at Source Audit & Trust
- Signing each audit event with the agent's key at the moment it is produced, rather than trusting a central log later. It is what lets a third party verify what an agent did without trusting the platform that stored it.
- Permission Check Permissions
- A verification, made before an action, that an agent holds the required scope for it. Vorim performs these server-side with sub-5ms latency using a Redis cache.
- Portable Identity Identity
- An agent identity that can be verified across organizations and identity providers, not just inside the system that issued it. Portability is what lets a counterparty trust an agent they did not create.
- Pre-Action Decision Runtime
- A verdict issued before an agent performs an action: allow it, deny it, escalate it to a human, or return a modified payload. It moves governance from after-the-fact to in-the-moment.
- Private Key Cryptography
- The secret half of a keypair, used to sign. Vorim returns an agent's private key once at registration and never stores it, so only the agent can produce its signatures.
- Public Key Cryptography
- The shareable half of a keypair. It is used to verify signatures and confirm identity, and can be distributed freely without compromising security.
- Replayable Evidence Audit & Trust
- Recording enough context (input hash, model name and version, tool catalog, system prompt fingerprint) that an agent's decision can be reconstructed and examined after the fact, not just logged as having happened.
- Revocation Identity
- Permanently invalidating an agent's identity or a specific permission so it can no longer act. Effective revocation must propagate quickly and be detectable by anyone who relied on that agent.
- Runtime Control Runtime
- Checking and governing an agent's action before it runs, in real time, rather than only logging it afterward. Vorim returns a decision (allow, deny, or escalate) for each sensitive action against live policy.
- Scope Permissions
- A named permission that defines a category of action an agent is allowed to take. Vorim uses seven: read, write, execute, transact, communicate, delegate, and elevate. Scopes are granted independently, not inherited.
- SHA-256 Cryptography
- A widely used hash function that turns any input into a fixed 256-bit fingerprint. Vorim uses it for identity fingerprints, audit content hashes, and hash chaining.
- Shadow AI AI Agents
- AI tools and agents used inside an organization without the knowledge or approval of security and compliance teams. A governance blind spot, and a growing driver of demand for agent identity.
- Signed Audit Trail Audit & Trust
- An audit trail where each event is cryptographically signed at the source, so anyone can verify it has not been altered. This is the difference between a log you have to trust and a record you can prove.
- SOC 2 Compliance
- An auditing standard covering how a service organization handles security, availability, and confidentiality. SOC 2 reviews increasingly ask how AI agent actions are logged and proven.
- System Prompt AI Agents
- The instructions that define an agent's role and behavior, set before any user input. Recording a fingerprint of the system prompt is part of replayable evidence: it proves what the agent was told to do.
- Tamper-Evident Audit & Trust
- A property of a record where any modification, deletion, or reordering becomes detectable. Achieved by hashing each event and chaining the hashes so a break is mathematically visible.
- Time-Bounded Permission Permissions
- A grant that is only valid within a defined window or until an expiry. It lets you issue access that automatically lapses instead of lingering as standing privilege.
- Tool Call AI Agents
- When an agent invokes an external function, API, or capability (search the web, send an email, run a query). Tool calls are the moments where an agent actually affects the outside world, which is exactly where governance matters.
- Tool Catalog AI Agents
- The set of tools an agent had available at the time it made a decision. Recording a hash of the tool catalog lets an auditor later reconstruct exactly what the agent could have done.
- Trust Badge Audit & Trust
- An embeddable, publicly verifiable visual (an SVG) that displays an agent's current trust score, so partners and customers can see an agent's standing without taking your word for it.
- Trust Score Audit & Trust
- A continuously updated number (Vorim uses 0 to 100) summarizing how reliably an agent has behaved, based on factors like status, age, success rate, denial frequency, and how broad its permissions are.
- VAIP Protocol & Standards
- The Vorim Agent Identity Protocol: an open specification, filed as an IETF Internet-Draft, for agent identity, signed audit, and attenuated delegation. Being open means anyone can implement and verify it independently.