Documentation Index
Fetch the complete documentation index at: https://docs.decisional.com/llms.txt
Use this file to discover all available pages before exploring further.

Sandboxed execution
Every workflow execution runs inside short-lived compute boundaries, with additional isolation for code-execution steps.
Trustless credentials
Agent code calls tools through brokered IDs. Raw OAuth tokens and API keys never enter the sandbox.
Access control
Workspace data is scoped by
workspace_id, backed by role checks and invite-gated onboarding.Infrastructure hardening
Encryption, container hardening, deployment safety, rate limiting, and structured logging protect production systems.
Sandboxed Execution
Decisional treats containment as a non-negotiable invariant. Each execution is enclosed by multiple boundaries so a failure in one layer does not propagate beyond it.Ephemeral execution containers
Each workflow execution receives its own short-lived runtime, created on demand and destroyed after completion. Runtimes are resource-capped, run without elevated privileges, have no persistent storage, and access platform data only through authenticated API calls.
Isolated code sandboxes
Code-execution steps run in separate ephemeral compute environments with their own lifecycle. Sandboxes have hard timeouts, are destroyed on completion, and receive execution-scoped identifiers rather than credentials.
Trustless Credentials
The core credential guarantee is simple: agent code never sees raw credentials. Credentials are not placed in environment variables, function arguments, logs, or sandbox-visible state.Credential Storage
All integration credentials, including OAuth tokens and API keys, are encrypted at rest with AES-256-GCM authenticated encryption. Key versioning supports rotation without downtime: old keys remain available for decryption, while new encryptions use the current key version. Credentials are scoped toworkspace_id and user_id, making them private by default with explicit sharing controls for team workflows.
Brokered Proxy Pattern
Tool execution flows through a brokered chain where each layer sees only the minimum information it needs.- Agent code calls a public tool ID with typed parameters, for example
call_user_tool("ut_abc123", {...}). - The routing service resolves the tool ID to provider configuration and credential UUIDs, never raw secrets.
- The credential service is the sole decryption point and holds decrypted material only in memory for a single outbound call.
- The provider adapter receives the live credential and executes against the upstream API. Nothing is serialized or stored after the call completes.
Read tools
Are scoped to read-only operations. By default, read tools are allowed unless policy overrides require approval or block them.
Write tools
Can require explicit human approval before actions such as sending email or updating records proceed.
Audit trail
Write approvals are recorded with acting identity, timestamp, run context, and operation metadata.
Access Control & Multi-Tenancy
Each customer’s data is isolated at the workspace layer. Agents, runs, credentials, files, schedules, and related entities carry aworkspace_id foreign key, and protected data access is scoped through that workspace boundary.
Role Hierarchy
| Role | View | Edit / Run | Manage Members | Delete Workspace |
|---|---|---|---|---|
| Viewer | Yes | No | No | No |
| Editor | Yes | Yes | No | No |
| Admin | Yes | Yes | Yes | No |
| Owner | Yes | Yes | Yes | Yes |
Invite-gated onboarding
New users cannot access protected workspace resources until invited by an Admin or Owner. Invitations use non-guessable, time-limited tokens.
Credential visibility
Credentials are private by default. Workspace sharing is opt-in and enforced at every credential access point.
API token security
dex_-prefixed tokens are hashed before storage, scoped to specific permissions, and tracked by last-used timestamp.Public agent sharing
Agents are private by default. Public run surfaces remain separated from protected workspace endpoints and are still governed by agent and tool policy.
Infrastructure & Compliance
Production infrastructure enforces the lower-level controls that support the agent runtime, credential model, and tenant boundary.Encryption
Credentials are encrypted at rest with AES-256-GCM. Production database connections enforce TLS, and service-to-service calls use HTTPS.
Container hardening
Production containers use minimized images, non-root users, health checks, and path traversal protections.
Deployment safety
Blue-green deployments validate health before traffic switches, with automatic rollback and graceful connection draining.
Rate limiting and logging
Distributed rate limiting protects public surfaces. Structured logs avoid credential values and record UUIDs plus metadata.