Skip to content

Latest commit

 

History

History
69 lines (45 loc) · 5.75 KB

File metadata and controls

69 lines (45 loc) · 5.75 KB

Security

DisCo is a local coding agent. It runs with the permissions of the user account that starts it, and it treats files writable by that user as inside the same local trust boundary.

Project Trust

Project trust controls whether disco loads project-local settings, resources, packages, and extensions. It is not a sandbox and it does not restrict what the model can ask tools to do after you start working in a directory.

DisCo considers a project to have resources that require trust when it finds any of these from the current working directory:

  • .disco/settings.json
  • .disco/extensions, .disco/skills, .disco/prompts, or .disco/themes
  • .disco/SYSTEM.md or .disco/APPEND_SYSTEM.md
  • project .agents/skills in the current directory or an ancestor directory

A bare .disco directory does not count as a project resource that requires trust.

When an interactive session starts in a project with resources that require trust and no saved decision for the current directory or a parent directory, disco follows defaultProjectTrust from global settings. The default value is "ask", which asks whether to trust the project when UI is available. Saved decisions are stored by canonical directory in ~/.disco/agent/trust.json, and the closest saved decision on the current or parent path applies before the global default.

Trusting a project allows disco to load project resources that require trust, including:

  • .disco/settings.json
  • .disco resources such as extensions, skills, prompt templates, themes, and system prompt files
  • missing project packages configured through project settings
  • project-local extensions and project package-managed extensions

Declining trust skips protected resources. AGENTS.md and CLAUDE.md context files are loaded regardless of project trust unless context loading is disabled. Before trust is resolved, disco only loads context files, user/global extensions, and CLI -e extensions. User/global and CLI extensions can handle the project_trust event; the first extension that returns a yes/no decision owns the decision.

Non-interactive modes (-p, --mode json, and --mode rpc) do not show a trust prompt. Without an applicable saved trust decision, defaultProjectTrust: "ask" and "never" ignore such resources, while "always" trusts them. Use --approve/-a or --no-approve/-na to override project trust for one run.

No Built-in Sandbox

DisCo does not include a built-in sandbox. Built-in tools can read files, write files, edit files, and run shell commands with the permissions of the disco process. Extensions are TypeScript modules that run with the same permissions. Package installs, shell commands, language servers, test commands, and other developer tools behave as ordinary local processes.

This is intentional. DisCo is designed to operate on local source trees, invoke project toolchains, and integrate with the user's existing development environment. A partial in-process sandbox would be easy to misunderstand as a security boundary while still depending on the host shell, filesystem, package managers, credentials, and extension code. Real isolation needs to come from the operating system or a virtualization/container boundary.

Project trust is only an input-loading guard. It prevents a repository from silently changing disco's settings or extensions before you approve it. It does not make untrusted code, untrusted prompts, or untrusted model output safe. Prompt injection from repository files, comments, documentation, context files, or build output is expected local-agent risk and cannot be reliably prevented by disco.

Running Untrusted or Unmonitored Work

For untrusted repositories, generated code you do not intend to monitor closely, or unattended automation, run disco in a contained environment. Use a container, VM, micro-VM, remote sandbox, or policy-controlled sandbox with only the files and credentials required for the task.

Common patterns are documented in Containerization:

  • run the whole disco process inside a container/sandbox
  • run host disco while routing built-in tool execution into a Gondolin micro-VM
  • mount only the workspace paths the agent should access
  • avoid mounting host ~/.disco/agent unless the container should access host sessions, settings, and credentials
  • pass the minimum required API keys or use short-lived credentials
  • restrict network access when the task does not need it
  • review diffs and outputs before copying results back to trusted systems

If you bind-mount a host workspace read/write, writes from inside the container or VM can still modify host files. Use read-only mounts or copy files into and out of the sandbox when you need stronger protection from unintended writes.

Reporting Security Issues

Report a vulnerability through the private security-reporting channel for the DisCo repository, when available, or contact the package maintainers privately through the repository owner. Do not open a public issue containing exploit details, credentials, session data, or other security-sensitive material.

DisCo is derived in part from Pi v0.83.0, but reports about DisCo-specific packaging, .disco isolation, modes, workflows, or bundled resources belong to DisCo rather than the upstream Pi security tracker. A defect proven to be in an unchanged upstream component can be coordinated with upstream after the DisCo maintainers assess the disclosure.

Expected local-agent behavior, lack of a built-in sandbox, prompt injection from untrusted content, and behavior of user-installed extensions or skills are generally outside the security boundary unless the report demonstrates a real privilege-boundary bypass or shows how disco grants access that the local user did not already have.