Execution isolation
Agent code runs in Guild’s runtime, a separate service from the control plane (guildcore). The runtime holds no credentials and no policy state — it requests both from the control plane per operation. Coding agents run in dedicated, network-isolated containers with a two-phase network lifecycle:- Setup phase. The container has network access to install dependencies and prepare the workspace.
- Runtime phase. Before agent execution begins, the container moves to an offline network with no general egress. From this point, the only outbound paths are Guild-mediated proxies.
Secretless execution
Agents never see credentials.- Service credentials are injected server-side by Guild’s credential proxy after a credential policy check. The credential never enters the agent’s code, container, prompt, or state. See Credentials.
- LLM provider keys are held server-side. Agent LLM calls route through a Guild proxy to the control plane; the provider key never enters the agent runtime. See LLM settings.
- GitHub access uses a GitHub App with short-lived installation tokens minted on demand, bounded to the repositories the App is installed on.
Policy enforcement at egress
Because every outbound call passes through Guild, policy is enforced at the point of egress rather than by agent code:- Tool calls are evaluated against credential policies: default deny,
DENYwins overALLOW, with rules scoped by operation, resource (repository, channel, domain, HTTP method), agent, and workspace. - LLM calls are evaluated against model policies: an allowlist of models per account, workspace, agent, or workspace-agent, plus a daily token limit.
- Execution limits cap LLM call counts, token usage, state size, and synchronous steps per execution as runaway backstops. See Execution limits.
Stop controls
- Stop a session. Any running session can be stopped from the UI or API. Running tasks are halted and the interruption is recorded with who stopped it and when.
- Disable an agent. Archiving an agent removes it from every workspace and stops it from running.
- Pause automation. Deactivating a trigger stops scheduled and event-driven runs without deleting the configuration.
- Revoke a credential. Disconnecting a credential immediately denies subsequent tool calls, including from sessions already running.
Audit surfaces
Three complementary records cover what happened and who authorized it:- The audit log is a tamper-evident, exportable record of administrative actions: credential changes, trigger changes, agent installs and publishes, membership and role changes, and API key lifecycle.
- The session event log records every LLM call, tool invocation, sub-task spawn, error, and lifecycle transition inside a session, in real time.
- Insights attributes token usage and spend to each workspace, agent, user, provider, and model.