feat(server): add Dirac as a built-in ACP provider#619
Open
mhingston wants to merge 1 commit into
Open
Conversation
Adds Dirac (https://dirac.run) as a built-in provider in Paseo. Dirac is an autonomous coding agent CLI by Dirac Delta Labs that supports the Agent Client Protocol (ACP) via the --acp flag. - Register Dirac in AGENT_PROVIDER_DEFINITIONS with Agent/Plan/Autopilot modes - Add factory using GenericACPAgentClient with dirac --acp - Add 'dirac' to BUILTIN_PROVIDER_IDS for config validation - Document Dirac as both a built-in provider and custom ACP provider example - Update CLI help text and test references
7ec394c to
5c90449
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds Dirac as a built-in provider in Paseo. Dirac is an autonomous coding agent CLI by Dirac Delta Labs with file editing, command execution, browser automation, and MCP support. It supports the Agent Client Protocol (ACP) via the
--acpflag.Closes #590
Changes
AGENT_PROVIDER_DEFINITIONSwith standard ACP modes (Agent, Plan, Autopilot)GenericACPAgentClientwith["dirac", "--acp"]"dirac"toBUILTIN_PROVIDER_IDSfor config validationGenericACPAgentClientconstructor calldiracin provider argument hintsTesting
provider-launch-config.test.ts,provider-registry.test.ts, andpersisted-config.test.tsoxfmt --checkoxlintwith 0 warnings, 0 errors@getpaseo/highlightbuild artifacts, implicitanytypes in unrelated files) which are not introduced by this changeHow it works
Dirac is registered as a built-in ACP provider — just like Copilot is a built-in ACP provider. Paseo spawns it with
dirac --acpand communicates via the ACP protocol over stdio. Models and modes are discovered dynamically at runtime from the Dirac process. Users can also override or customize it viaconfig.jsonusing the usual custom provider mechanism.