@@ -66,14 +66,14 @@ All integrations are optional - include only what you need.
6666
6767### ScoutOptions
6868
69- | Option | Type | Required | Description |
70- | ----------- | ---------------------- | -------- | --------------------------------------- |
71- | ` agent ` | ` blink.Agent<Message> ` | Yes | Blink agent instance |
72- | ` github ` | ` GitHubConfig ` | No | GitHub App configuration |
73- | ` slack ` | ` SlackConfig ` | No | Slack App configuration |
74- | ` webSearch ` | ` WebSearchConfig ` | No | Exa web search configuration |
75- | ` compute ` | ` ComputeConfig ` | No | Docker or Daytona compute configuration |
76- | ` logger ` | ` Logger ` | No | Custom logger instance |
69+ | Option | Type | Required | Description |
70+ | ----------- | ---------------------- | -------- | ----------------------------------------------- |
71+ | ` agent ` | ` blink.Agent<Message> ` | Yes | Blink agent instance |
72+ | ` github ` | ` GitHubConfig ` | No | GitHub App configuration |
73+ | ` slack ` | ` SlackConfig ` | No | Slack App configuration |
74+ | ` webSearch ` | ` WebSearchConfig ` | No | Exa web search configuration |
75+ | ` compute ` | ` ComputeConfig ` | No | Docker, Daytona, or Coder compute configuration |
76+ | ` logger ` | ` Logger ` | No | Custom logger instance |
7777
7878### GitHub
7979
@@ -151,6 +151,23 @@ Execute code in isolated environments:
151151}
152152```
153153
154+ ** Coder (self-hosted workspaces):**
155+
156+ ``` typescript
157+ {
158+ type : " coder" ,
159+ options : {
160+ coderUrl : string // Coder deployment URL (e.g., https://coder.example.com)
161+ sessionToken : string // Coder session token for authentication
162+ template : string // Template name to create workspaces from
163+ computeServerPort ?: number // Port for compute server (default: 22137)
164+ presetName ?: string // Optional preset name for workspace creation
165+ richParameters ?: Array < { name : string ; value : string }> // Optional template parameters
166+ startTimeoutSeconds ?: number // Workspace start timeout (default: 300)
167+ }
168+ }
169+ ```
170+
154171## API Reference
155172
156173### Scout Class
0 commit comments