agent-tools-interface 0.7.11

Agent Tools Interface — secure CLI for AI agent tool execution
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""ATI error types."""


class AtiError(Exception):
    """Base error for all ATI operations."""


class TokenError(AtiError):
    """Error issuing, validating, or inspecting a JWT."""


class ScopeError(AtiError):
    """Error parsing or checking scopes."""


class ProvisionError(AtiError):
    """Error provisioning a sandbox environment."""