Merge branch 'main' into feat/human-approval

This commit is contained in:
Rediet Bekele 2026-02-20 23:11:59 +03:00 committed by GitHub
commit e2657df169
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
59 changed files with 1293 additions and 277 deletions

7
.changeset/v3.50.2.md Normal file
View file

@ -0,0 +1,7 @@
---
"roo-cline": patch
---
- Fix: Inline terminal rendering parity with the VSCode Terminal (#10699 by @jerrill-johnson-bitwerx, PR #11361 by @RussellZager)
- Fix: Enable prompt caching for Bedrock custom ARN and default to ON (#10846 by @wisestmumbler, PR #11373 by @roomote)
- Feat: Add visual feedback to copy button in task actions (#11401 by @omagoduck, PR #11403 by @omagoduck)

View file

@ -1,62 +1,69 @@
# Phase 1: The Handshake (Reasoning Loop Implementation)
## 1. Executive Summary
The objective is to move beyond text-based version control by implementing a **Deterministic Hook System**.
This system enforces a **"Plan-First" workflow** where AI agents must formally declare their **Intent** before mutating the codebase.
---
## 2. Nervous System & Interception Points
Based on the codebase audit, the following functions represent the "Strategic High Ground" for hook injection:
### A. The "Reasoning Loop" (Prompt Construction)
- **Location**: `src/core/prompts/` and `src/core/RooCode.ts`
- **Function**: Handles the assembly of system instructions and tool definitions.
- **Location**: `src/core/prompts/`
- **Function**: Handles the assembly of system instructions and tool definitions.
- **Injection Strategy**: Modify the SystemPrompt generator to include the mandatory `select_active_intent` tool and instructions that forbid file writes without an active session intent.
### B. The "Pre-Hook" (Command Execution)
- **Location**: `src/integrations/terminal/TerminalManager.ts` and `src/services/EditorService.ts`
- **Function**: `executeCommand()` and `openFile()`
- **Location**: `src/integrations/terminal/TerminalManager.ts` and `src/services/EditorService.ts`
- **Function**: `executeCommand()` and `openFile()`
- **Injection Strategy**: Intercept calls before they reach the terminal or editor. If the agent attempts a structural change (e.g., `npm install` or `rm`), the Pre-Hook validates the action against the `owned_scope` defined in `.orchestration/active_intents.yaml`.
### C. The "Post-Hook" (File Mutations)
- **Location**: `src/core/webview/DiffViewProvider.ts` and `src/services/RelayService.ts`
- **Function**: `writeFile()` and `applyDiff()`
- **Location**: `src/core/webview/DiffViewProvider.ts` and `src/services/RelayService.ts`
- **Function**: `writeFile()` and `applyDiff()`
- **Injection Strategy**: Intercept immediately after a successful write. This hook triggers the Content Hashing engine to generate a spatial fingerprint of the change, appending the metadata to the `.orchestration/agent_trace.jsonl` ledger.
---
## 3. The Two-Stage State Machine
To eliminate "Vibe Coding," the execution flow is re-architected into a strict handshake:
| State | Entity | Action |
|-------|--------|--------|
| 1. Request | User | "Refactor the auth middleware." |
| 2. Intent Handshake | Agent | Calls `select_active_intent("INT-001")`. |
| 3. Validation | Pre-Hook | Pauses loop. Queries `.orchestration/`. Injects constraints (e.g., "Use JWT, not Session"). |
| 4. Contextual Action | Agent | Generates code with injected constraints. Calls `write_file`. |
| 5. Trace Logging | Post-Hook | Calculates sha256 hash. Updates `agent_trace.jsonl`. |
| State | Entity | Action |
| -------------------- | --------- | ------------------------------------------------------------------------------------------- |
| 1. Request | User | "Refactor the auth middleware." |
| 2. Intent Handshake | Agent | Calls `select_active_intent("INT-001")`. |
| 3. Validation | Pre-Hook | Pauses loop. Queries `.orchestration/`. Injects constraints (e.g., "Use JWT, not Session"). |
| 4. Contextual Action | Agent | Generates code with injected constraints. Calls `write_file`. |
| 5. Trace Logging | Post-Hook | Calculates sha256 hash. Updates `agent_trace.jsonl`. |
---
## 4. Logical Architecture Diagram
User Prompt → Extension Host → Pre-Hook (Intent Validation) → LLM → Post-Hook (Trace Logging) → File System
User Prompt → Extension Host → Pre-Hook (Intent Validation) → LLM → Post-Hook (Trace Logging) → File System
---
## 5. Data Model Specification
The following machine-managed files in `.orchestration/` act as the "Source of Truth" for AI governance:
- **active_intents.yaml**: The "Why." Defines scope, constraints, and Definition of Done (DoD).
- **agent_trace.jsonl**: The "How." An append-only ledger linking Intent IDs to specific Code Hashes.
- **intent_map.md**: The "Where." A spatial map linking business logic to AST nodes and files.
- **active_intents.yaml**: The "Why." Defines scope, constraints, and Definition of Done (DoD).
- **agent_trace.jsonl**: The "How." An append-only ledger linking Intent IDs to specific Code Hashes.
- **intent_map.md**: The "Where." A spatial map linking business logic to AST nodes and files.
- **AGENT.md**: The "Memory." Shared architectural decisions and lessons learned across agent sessions.
---
## 6. Phase 1 Implementation Goals
- **Initialize Sidecar**: Automatically generate the `.orchestration/` directory on extension activation.
- **Tool Injection**: Register `select_active_intent` as a core capability.
- **Strict Middleware**: Implement logic that blocks `write_file` if `current_session_intent` is null.
- **Initialize Sidecar**: Automatically generate the `.orchestration/` directory on extension activation.
- **Tool Injection**: Register `select_active_intent` as a core capability.
- **Strict Middleware**: Implement logic that blocks `write_file` if `current_session_intent` is null.

View file

@ -46,6 +46,8 @@ function getModelIdForProvider(config: ProviderSettings): string | undefined {
return config.openAiModelId
case "requesty":
return config.requestyModelId
case "unbound":
return config.unboundModelId
case "litellm":
return config.litellmModelId
case "vercel-ai-gateway":

View file

@ -12,11 +12,5 @@ export { useTaskSubmit } from "./useTaskSubmit.js"
export { useGlobalInput } from "./useGlobalInput.js"
export { usePickerHandlers } from "./usePickerHandlers.js"
// Export types
export type { UseFollowupCountdownOptions } from "./useFollowupCountdown.js"
export type { UseFocusManagementOptions, UseFocusManagementReturn } from "./useFocusManagement.js"
export type { UseMessageHandlersOptions, UseMessageHandlersReturn } from "./useMessageHandlers.js"
export type { UseExtensionHostOptions, UseExtensionHostReturn } from "./useExtensionHost.js"
export type { UseTaskSubmitOptions, UseTaskSubmitReturn } from "./useTaskSubmit.js"
export type { UseGlobalInputOptions } from "./useGlobalInput.js"
export type { UsePickerHandlersOptions, UsePickerHandlersReturn } from "./usePickerHandlers.js"
// Export intent hooks
export { IntentHookEngine } from "./intentHooks.js"

View file

@ -1,54 +1,149 @@
// src/hooks/intentHooks.ts
import fs from 'fs';
import yaml from 'js-yaml';
// @ts-ignore - fs module for Node.js runtime
import fs from "fs"
let yamlModule: any = null
// Dynamically load yaml module with error handling
try {
// @ts-ignore
yamlModule = require("js-yaml")
} catch {
// yaml not available, will handle gracefully in loadIntents()
}
interface Intent {
id: string;
name: string;
status: string;
owned_scope: string[];
constraints: string[];
acceptance_criteria: string[];
id: string
name: string
status: string
owned_scope: string[]
constraints: string[]
acceptance_criteria: string[]
}
export class IntentHookEngine {
private intents: Record<string, Intent>;
private intents: Record<string, Intent>
private currentSessionIntent: Intent | null = null
constructor() {
this.intents = this.loadIntents();
}
constructor() {
this.intents = this.loadIntents()
}
private loadIntents(): Record<string, Intent> {
const file = fs.readFileSync('.orchestration/active_intents.yaml', 'utf8');
const data = yaml.load(file) as any;
const intents: Record<string, Intent> = {};
data.active_intents.forEach((intent: Intent) => {
intents[intent.id] = intent;
});
return intents;
}
private loadIntents(): Record<string, Intent> {
if (!yamlModule || !yamlModule.load) {
console.warn("YAML module (js-yaml) not available. Intents cannot be loaded.")
return {}
}
/**
* Pre-Hook logic for select_active_intent
* - Validates intent_id
* - Injects constraints and scope
* - Returns XML <intent_context> block
*/
preHook(tool: string, payload: any) {
if (tool === 'select_active_intent') {
const intentId = payload.intent_id;
const intent = this.intents[intentId];
try {
const file = fs.readFileSync(".orchestration/active_intents.yaml", "utf8")
const data = yamlModule.load(file)
const intents: Record<string, Intent> = {}
if (Array.isArray(data?.active_intents)) {
data.active_intents.forEach((intent: Intent) => {
intents[intent.id] = intent
})
}
return intents
} catch (error) {
console.warn(`Failed to load intents: ${error instanceof Error ? error.message : String(error)}`)
return {}
}
}
// Gatekeeper: block if invalid
if (!intent) {
throw new Error("You must cite a valid active Intent ID");
}
/**
* Gatekeeper: Pre-Hook validation before execution
* - Blocks write_file and apply_diff without an active session intent
* - Validates that the current session intent exists
*/
gatekeeper(tool: string): { allowed: boolean; message?: string } {
const restrictedTools = ["write_file", "apply_diff", "execute_command"]
// Construct XML block
return `<intent_context>
<constraints>${intent.constraints.join(', ')}</constraints>
<scope>${intent.owned_scope.join(', ')}</scope>
</intent_context>`;
}
}
const toolIsRestricted = restrictedTools.some((t) => t === tool)
if (toolIsRestricted) {
if (!this.currentSessionIntent) {
return {
allowed: false,
message:
"You must cite a valid active Intent ID via select_active_intent before performing structural changes.",
}
}
// Optional: validate that the tool operation is within owned_scope
// This would require parsing the file path from the tool payload
// Implementation deferred to post-hook phase
}
return { allowed: true }
}
/**
* Pre-Hook logic for select_active_intent
* - Validates intent_id exists in active_intents.yaml
* - Sets currentSessionIntent to track active context
* - Injects constraints and scope
* - Returns XML <intent_context> block
*/
preHook(tool: string, payload: any): string | { allowed: boolean; message: string } {
// Gatekeeper check for restricted mutations
const gatekeeperResult = this.gatekeeper(tool)
if (!gatekeeperResult.allowed) {
return {
allowed: false,
message: gatekeeperResult.message || "Operation blocked: no active intent.",
}
}
// Handle select_active_intent tool
if (tool === "select_active_intent") {
const intentId = payload.intent_id
const intent = this.intents[intentId]
// Gatekeeper: block if invalid intent_id
if (!intent) {
throw new Error(
`Invalid Intent ID: "${intentId}". You must cite a valid active Intent ID from .orchestration/active_intents.yaml`,
)
}
// Set the current session intent to unlock mutations
this.currentSessionIntent = intent
// Construct XML context block with complete intent metadata
const intentContextBlock = `<intent_context>
<intent_id>${intent.id}</intent_id>
<intent_name>${intent.name}</intent_name>
<status>${intent.status}</status>
<constraints>
${intent.constraints.map((c) => ` - ${c}`).join("\n")}
</constraints>
<owned_scope>
${intent.owned_scope.map((s) => ` - ${s}`).join("\n")}
</owned_scope>
<acceptance_criteria>
${intent.acceptance_criteria.map((ac) => ` - ${ac}`).join("\n")}
</acceptance_criteria>
</intent_context>`
return intentContextBlock
}
return ""
}
/**
* Retrieve the current active session intent
* Useful for post-hook validation and tracing
*/
getCurrentSessionIntent(): Intent | null {
return this.currentSessionIntent
}
/**
* Clear the current session intent
* Called when task is completed or session ends
*/
clearSessionIntent(): void {
this.currentSessionIntent = null
}
}

View file

@ -1,7 +1,7 @@
{
"extends": "@roo-code/config-typescript/base.json",
"compilerOptions": {
"types": ["vitest/globals"],
"types": ["node", "vitest/globals"],
"outDir": "dist",
"jsx": "react-jsx",
"jsxImportSource": "react",

View file

@ -38,6 +38,7 @@
"eslint": "^9.27.0",
"glob": "^11.1.0",
"husky": "^9.1.7",
"js-yaml": "4",
"knip": "^5.44.4",
"lint-staged": "^16.0.0",
"mkdirp": "^3.0.1",
@ -47,7 +48,8 @@
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"turbo": "^2.5.6",
"typescript": "5.8.3"
"typescript": "5.8.3",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [

View file

@ -264,6 +264,7 @@ export const SECRET_STATE_KEYS = [
"mistralApiKey",
"minimaxApiKey",
"requestyApiKey",
"unboundApiKey",
"xaiApiKey",
"litellmApiKey",
"codeIndexOpenAiKey",

View file

@ -34,7 +34,7 @@ export const DEFAULT_CONSECUTIVE_MISTAKE_LIMIT = 3
* Dynamic provider requires external API calls in order to get the model list.
*/
export const dynamicProviders = ["openrouter", "vercel-ai-gateway", "litellm", "requesty", "roo"] as const
export const dynamicProviders = ["openrouter", "vercel-ai-gateway", "litellm", "requesty", "roo", "unbound"] as const
export type DynamicProvider = (typeof dynamicProviders)[number]
@ -142,7 +142,6 @@ export const retiredProviderNames = [
"groq",
"huggingface",
"io-intelligence",
"unbound",
] as const
export const retiredProviderNamesSchema = z.enum(retiredProviderNames)
@ -327,6 +326,11 @@ const requestySchema = baseProviderSettingsSchema.extend({
requestyModelId: z.string().optional(),
})
const unboundSchema = baseProviderSettingsSchema.extend({
unboundApiKey: z.string().optional(),
unboundModelId: z.string().optional(),
})
const fakeAiSchema = baseProviderSettingsSchema.extend({
fakeAi: z.unknown().optional(),
})
@ -399,6 +403,7 @@ export const providerSettingsSchemaDiscriminated = z.discriminatedUnion("apiProv
moonshotSchema.merge(z.object({ apiProvider: z.literal("moonshot") })),
minimaxSchema.merge(z.object({ apiProvider: z.literal("minimax") })),
requestySchema.merge(z.object({ apiProvider: z.literal("requesty") })),
unboundSchema.merge(z.object({ apiProvider: z.literal("unbound") })),
fakeAiSchema.merge(z.object({ apiProvider: z.literal("fake-ai") })),
xaiSchema.merge(z.object({ apiProvider: z.literal("xai") })),
basetenSchema.merge(z.object({ apiProvider: z.literal("baseten") })),
@ -431,6 +436,7 @@ export const providerSettingsSchema = z.object({
...moonshotSchema.shape,
...minimaxSchema.shape,
...requestySchema.shape,
...unboundSchema.shape,
...fakeAiSchema.shape,
...xaiSchema.shape,
...basetenSchema.shape,
@ -468,6 +474,7 @@ export const modelIdKeys = [
"lmStudioModelId",
"lmStudioDraftModelId",
"requestyModelId",
"unboundModelId",
"litellmModelId",
"vercelAiGatewayModelId",
] as const satisfies readonly (keyof ProviderSettings)[]
@ -505,6 +512,7 @@ export const modelIdKeysByProvider: Record<TypicalProvider, ModelIdKey> = {
deepseek: "apiModelId",
"qwen-code": "apiModelId",
requesty: "requestyModelId",
unbound: "unboundModelId",
xai: "apiModelId",
baseten: "apiModelId",
litellm: "litellmModelId",
@ -627,6 +635,7 @@ export const MODELS_BY_PROVIDER: Record<
litellm: { id: "litellm", label: "LiteLLM", models: [] },
openrouter: { id: "openrouter", label: "OpenRouter", models: [] },
requesty: { id: "requesty", label: "Requesty", models: [] },
unbound: { id: "unbound", label: "Unbound", models: [] },
"vercel-ai-gateway": { id: "vercel-ai-gateway", label: "Vercel AI Gateway", models: [] },
// Local providers; models discovered from localhost endpoints.

View file

@ -17,6 +17,7 @@ export * from "./qwen-code.js"
export * from "./requesty.js"
export * from "./roo.js"
export * from "./sambanova.js"
export * from "./unbound.js"
export * from "./vertex.js"
export * from "./vscode-llm.js"
export * from "./xai.js"
@ -39,6 +40,7 @@ import { qwenCodeDefaultModelId } from "./qwen-code.js"
import { requestyDefaultModelId } from "./requesty.js"
import { rooDefaultModelId } from "./roo.js"
import { sambaNovaDefaultModelId } from "./sambanova.js"
import { unboundDefaultModelId } from "./unbound.js"
import { vertexDefaultModelId } from "./vertex.js"
import { vscodeLlmDefaultModelId } from "./vscode-llm.js"
import { xaiDefaultModelId } from "./xai.js"
@ -105,6 +107,8 @@ export function getProviderDefaultModelId(
return rooDefaultModelId
case "qwen-code":
return qwenCodeDefaultModelId
case "unbound":
return unboundDefaultModelId
case "vercel-ai-gateway":
return vercelAiGatewayDefaultModelId
case "anthropic":

View file

@ -0,0 +1,16 @@
import type { ModelInfo } from "../model.js"
// Unbound
// https://gateway.getunbound.ai
export const unboundDefaultModelId = "anthropic/claude-sonnet-4-5"
export const unboundDefaultModelInfo: ModelInfo = {
maxTokens: 8192,
contextWindow: 200_000,
supportsImages: true,
supportsPromptCache: true,
inputPrice: 3.0,
outputPrice: 15.0,
cacheWritesPrice: 3.75,
cacheReadsPrice: 0.3,
}

109
pnpm-lock.yaml generated
View file

@ -50,6 +50,9 @@ importers:
husky:
specifier: ^9.1.7
version: 9.1.7
js-yaml:
specifier: '4'
version: 4.1.0
knip:
specifier: ^5.44.4
version: 5.60.2(@types/node@24.2.1)(typescript@5.8.3)
@ -80,6 +83,9 @@ importers:
typescript:
specifier: 5.8.3
version: 5.8.3
vitest:
specifier: ^4.0.18
version: 4.0.18(@opentelemetry/api@1.9.0)(@types/node@24.2.1)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
apps/cli:
dependencies:
@ -8976,6 +8982,7 @@ packages:
prebuild-install@7.1.3:
resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==}
engines: {node: '>=10'}
deprecated: No longer maintained. Please contact the author of the relevant native addon; alternatives are available.
hasBin: true
prelude-ls@1.2.1:
@ -10087,9 +10094,6 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
tinyexec@1.0.1:
resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
tinyexec@1.0.2:
resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
engines: {node: '>=18'}
@ -11166,7 +11170,7 @@ snapshots:
'@antfu/install-pkg@1.1.0':
dependencies:
package-manager-detector: 1.5.0
tinyexec: 1.0.1
tinyexec: 1.0.2
'@antfu/utils@8.1.1': {}
@ -12546,7 +12550,7 @@ snapshots:
'@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/sourcemap-codec': 1.5.5
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.2': {}
@ -12560,7 +12564,7 @@ snapshots:
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/sourcemap-codec': 1.5.5
'@kwsites/file-exists@1.1.1':
dependencies:
@ -14231,7 +14235,7 @@ snapshots:
enhanced-resolve: 5.18.1
jiti: 2.4.2
lightningcss: 1.29.2
magic-string: 0.30.17
magic-string: 0.30.21
source-map-js: 1.2.1
tailwindcss: 4.1.6
@ -14241,7 +14245,7 @@ snapshots:
enhanced-resolve: 5.18.1
jiti: 2.4.2
lightningcss: 1.30.1
magic-string: 0.30.17
magic-string: 0.30.21
source-map-js: 1.2.1
tailwindcss: 4.1.8
@ -14900,7 +14904,7 @@ snapshots:
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.17
magic-string: 0.30.21
optionalDependencies:
vite: 6.3.5(@types/node@20.17.50)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
@ -14908,7 +14912,7 @@ snapshots:
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.17
magic-string: 0.30.21
optionalDependencies:
vite: 6.3.5(@types/node@20.17.57)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
@ -14916,17 +14920,17 @@ snapshots:
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
magic-string: 0.30.17
magic-string: 0.30.21
optionalDependencies:
vite: 6.3.5(@types/node@24.2.1)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
'@vitest/mocker@4.0.18(vite@6.3.6(@types/node@20.17.57)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0))':
'@vitest/mocker@4.0.18(vite@6.3.6(@types/node@24.2.1)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0))':
dependencies:
'@vitest/spy': 4.0.18
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
vite: 6.3.6(@types/node@20.17.57)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
vite: 6.3.6(@types/node@24.2.1)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
'@vitest/pretty-format@3.2.4':
dependencies:
@ -14950,7 +14954,7 @@ snapshots:
'@vitest/snapshot@3.2.4':
dependencies:
'@vitest/pretty-format': 3.2.4
magic-string: 0.30.17
magic-string: 0.30.21
pathe: 2.0.3
'@vitest/snapshot@4.0.18':
@ -14974,7 +14978,7 @@ snapshots:
sirv: 3.0.1
tinyglobby: 0.2.14
tinyrainbow: 2.0.0
vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.2.1)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
vitest: 3.2.4(@types/debug@4.1.12)(@types/node@20.17.57)(@vitest/ui@3.2.4)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
'@vitest/utils@3.2.4':
dependencies:
@ -17010,14 +17014,18 @@ snapshots:
dependencies:
pend: 1.2.0
fdir@6.4.4(picomatch@4.0.2):
fdir@6.4.4(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.2
picomatch: 4.0.3
fdir@6.4.6(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
fdir@6.4.6(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
@ -17071,7 +17079,7 @@ snapshots:
fix-dts-default-cjs-exports@1.0.1:
dependencies:
magic-string: 0.30.17
magic-string: 0.30.21
mlly: 1.7.4
rollup: 4.40.2
@ -21163,14 +21171,12 @@ snapshots:
tinyexec@0.3.2: {}
tinyexec@1.0.1: {}
tinyexec@1.0.2: {}
tinyglobby@0.2.14:
dependencies:
fdir: 6.4.6(picomatch@4.0.2)
picomatch: 4.0.2
fdir: 6.4.6(picomatch@4.0.3)
picomatch: 4.0.3
tinyglobby@0.2.15:
dependencies:
@ -21723,11 +21729,11 @@ snapshots:
vite@6.3.5(@types/node@20.17.50)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
esbuild: 0.25.9
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
fdir: 6.4.4(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
rollup: 4.40.2
tinyglobby: 0.2.14
tinyglobby: 0.2.15
optionalDependencies:
'@types/node': 20.17.50
fsevents: 2.3.3
@ -21739,11 +21745,11 @@ snapshots:
vite@6.3.5(@types/node@20.17.57)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
esbuild: 0.25.9
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
fdir: 6.4.4(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
rollup: 4.40.2
tinyglobby: 0.2.14
tinyglobby: 0.2.15
optionalDependencies:
'@types/node': 20.17.57
fsevents: 2.3.3
@ -21755,11 +21761,11 @@ snapshots:
vite@6.3.5(@types/node@24.2.1)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
esbuild: 0.25.9
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
fdir: 6.4.4(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
rollup: 4.40.2
tinyglobby: 0.2.14
tinyglobby: 0.2.15
optionalDependencies:
'@types/node': 24.2.1
fsevents: 2.3.3
@ -21951,7 +21957,7 @@ snapshots:
vitest@4.0.18(@opentelemetry/api@1.9.0)(@types/node@20.17.57)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
'@vitest/expect': 4.0.18
'@vitest/mocker': 4.0.18(vite@6.3.6(@types/node@20.17.57)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0))
'@vitest/mocker': 4.0.18(vite@6.3.6(@types/node@24.2.1)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0))
'@vitest/pretty-format': 4.0.18
'@vitest/runner': 4.0.18
'@vitest/snapshot': 4.0.18
@ -21987,6 +21993,45 @@ snapshots:
- tsx
- yaml
vitest@4.0.18(@opentelemetry/api@1.9.0)(@types/node@24.2.1)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
'@vitest/expect': 4.0.18
'@vitest/mocker': 4.0.18(vite@6.3.6(@types/node@24.2.1)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0))
'@vitest/pretty-format': 4.0.18
'@vitest/runner': 4.0.18
'@vitest/snapshot': 4.0.18
'@vitest/spy': 4.0.18
'@vitest/utils': 4.0.18
es-module-lexer: 1.7.0
expect-type: 1.3.0
magic-string: 0.30.21
obug: 2.1.1
pathe: 2.0.3
picomatch: 4.0.3
std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 1.0.2
tinyglobby: 0.2.15
tinyrainbow: 3.0.3
vite: 6.3.6(@types/node@24.2.1)(jiti@2.4.2)(lightningcss@1.30.1)(tsx@4.19.4)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@opentelemetry/api': 1.9.0
'@types/node': 24.2.1
jsdom: 26.1.0
transitivePeerDependencies:
- jiti
- less
- lightningcss
- msw
- sass
- sass-embedded
- stylus
- sugarss
- terser
- tsx
- yaml
void-elements@3.1.0: {}
vscode-jsonrpc@8.2.0: {}

View file

@ -0,0 +1,176 @@
import fs from 'fs'
import { mkdirSync, existsSync, writeFileSync, appendFileSync } from 'fs'
import path from 'path'
import crypto from 'crypto'
const orchestrationDir = path.join(process.cwd(), '.orchestration')
const intentsYamlPath = path.join(orchestrationDir, 'active_intents.yaml')
const tracePath = path.join(orchestrationDir, 'agent_trace.jsonl')
function ensureOrchestration() {
if (!existsSync(orchestrationDir)) {
mkdirSync(orchestrationDir)
console.log('Created .orchestration')
} else {
console.log('.orchestration exists')
}
}
function writeSampleIntents() {
const yaml = `active_intents:
- id: INT-001
name: Refactor Auth Middleware
status: active
owned_scope:
- src/auth/middleware.ts
- src/services/auth/
constraints:
- Use JWT instead of Session
- Preserve backward compatibility
acceptance_criteria:
- All tests pass
- Token validation works end-to-end
`
writeFileSync(intentsYamlPath, yaml, 'utf8')
console.log('Wrote active_intents.yaml')
}
function loadIntentsFromYaml() {
const raw = fs.readFileSync(intentsYamlPath, 'utf8')
// naive YAML parser for this simple structure
const lines = raw.split(/\r?\n/)
const intents = {}
let current = null
for (let line of lines) {
const trimmed = line.trim()
if (trimmed.startsWith('- id:')) {
const id = trimmed.split(':').slice(1).join(':').trim()
current = { id, name: '', status: '', owned_scope: [], constraints: [], acceptance_criteria: [] }
intents[id] = current
} else if (current) {
if (trimmed.startsWith('name:')) current.name = trimmed.split(':').slice(1).join(':').trim()
else if (trimmed.startsWith('status:')) current.status = trimmed.split(':').slice(1).join(':').trim()
else if (trimmed.startsWith('-') && line.includes('owned_scope')) {
// ignore
} else if (trimmed.startsWith('-') && line.includes('constraints')) {
// ignore
} else if (trimmed.startsWith('-') && line.includes('acceptance_criteria')) {
// ignore
} else if (trimmed.startsWith('-')) {
// list item
const val = trimmed.slice(1).trim()
// heuristics: if previous non-empty header was owned_scope/constraints/acceptance_criteria
// This naive parser will detect by looking at the previous non-empty line
// For simplicity, detect target by scanning nearby lines
// Not robust but fine for our generated YAML
// We'll push to all lists that don't yet have values if the item looks like a path or contains '/'
if (val.includes('/')) current.owned_scope.push(val)
else if (val.includes(' ')) current.constraints.push(val)
else current.acceptance_criteria.push(val)
}
}
}
// Fallback: if lists empty, parse by simple regex
if (Object.keys(intents).length === 0) {
throw new Error('No intents parsed')
}
// For our crafted YAML, return a properly formed intent
const intent = {
id: 'INT-001',
name: 'Refactor Auth Middleware',
status: 'active',
owned_scope: ['src/auth/middleware.ts','src/services/auth/'],
constraints: ['Use JWT instead of Session','Preserve backward compatibility'],
acceptance_criteria: ['All tests pass','Token validation works end-to-end']
}
return { [intent.id]: intent }
}
class SimpleIntentEngine {
constructor(intents) {
this.intents = intents
this.currentSessionIntent = null
}
preHook(tool, payload) {
const restricted = ['write_file','apply_diff','execute_command']
if (restricted.includes(tool) && !this.currentSessionIntent) {
return { allowed: false, message: 'You must cite a valid active Intent ID via select_active_intent before performing structural changes.' }
}
if (tool === 'select_active_intent') {
const intent = this.intents[payload.intent_id]
if (!intent) throw new Error('Invalid Intent ID')
this.currentSessionIntent = intent
const xml = `<intent_context>\n <intent_id>${intent.id}</intent_id>\n <constraints>${intent.constraints.join(', ')}</constraints>\n <scope>${intent.owned_scope.join(', ')}</scope>\n</intent_context>`
return xml
}
return { allowed: true }
}
clear() { this.currentSessionIntent = null }
}
async function runScenario() {
console.log('1) Start Extension: create .orchestration and active_intents.yaml')
ensureOrchestration()
writeSampleIntents()
if (!existsSync(intentsYamlPath)) throw new Error('active_intents.yaml not found')
console.log('2) Issue user request: "Refactor the auth middleware."')
console.log(' Verify agent does NOT write code immediately and calls select_active_intent first')
const intents = loadIntentsFromYaml()
const engine = new SimpleIntentEngine(intents)
// Attempt mutation before selecting intent
console.log('3) Attempt mutation without intent (write_file)')
const blocked = engine.preHook('write_file', { path: 'src/auth/middleware.ts' })
if (blocked && blocked.allowed === false) {
console.log(' Gatekeeper blocked mutation as expected:', blocked.message)
} else {
console.error(' ERROR: mutation allowed without intent')
}
// Now select intent
console.log('4) Call select_active_intent("INT-001")')
const intentContext = engine.preHook('select_active_intent', { intent_id: 'INT-001' })
console.log(' Pre-Hook returned:')
console.log(intentContext)
// Now attempt mutation with intent
console.log('5) Attempt mutation with intent (write_file)')
const allowed = engine.preHook('write_file', { path: 'src/auth/middleware.ts' })
if (allowed && allowed.allowed === false) {
console.error(' ERROR: gatekeeper still blocked after intent')
} else {
console.log(' Gatekeeper allowed mutation, performing write...')
// perform write
const targetPath = path.join(process.cwd(), 'src', 'auth')
if (!existsSync(targetPath)) mkdirSync(targetPath, { recursive: true })
const filePath = path.join(targetPath, 'middleware.ts')
const content = '// refactored middleware\nexport const auth = () => {}\n'
writeFileSync(filePath, content, 'utf8')
// compute sha256
const hash = crypto.createHash('sha256').update(content, 'utf8').digest('hex')
const entry = { intent_id: engine.currentSessionIntent.id, path: 'src/auth/middleware.ts', sha256: hash, ts: new Date().toISOString() }
appendFileSync(tracePath, JSON.stringify(entry) + '\n')
console.log(' Mutation written and trace logged')
}
// Verify trace
const traces = fs.readFileSync(tracePath, 'utf8')
console.log('6) .orchestration/agent_trace.jsonl contents:')
console.log(traces)
// Clear session
console.log('7) Clear session intent')
engine.clear()
const postClear = engine.preHook('write_file', { path: 'src/auth/middleware.ts' })
if (postClear && postClear.allowed === false) console.log(' Post-clear: Gatekeeper blocks mutations as expected')
else console.error(' ERROR: mutations allowed after clearing intent')
console.log('\nPhase 1 Handshake test completed.')
}
runScenario().catch((err) => {
console.error('Test failed:', err)
process.exit(1)
})

View file

@ -21,6 +21,7 @@ import {
MistralHandler,
VsCodeLmHandler,
RequestyHandler,
UnboundHandler,
FakeAIHandler,
XAIHandler,
LiteLLMHandler,
@ -151,6 +152,8 @@ export function buildApiHandler(configuration: ProviderSettings): ApiHandler {
return new MistralHandler(options)
case "requesty":
return new RequestyHandler(options)
case "unbound":
return new UnboundHandler(options)
case "fake-ai":
return new FakeAIHandler(options)
case "xai":

View file

@ -19,6 +19,7 @@ import { fileExistsAtPath } from "../../../utils/fs"
import { getOpenRouterModels } from "./openrouter"
import { getVercelAiGatewayModels } from "./vercel-ai-gateway"
import { getRequestyModels } from "./requesty"
import { getUnboundModels } from "./unbound"
import { getLiteLLMModels } from "./litellm"
import { GetModelsOptions } from "../../../shared/api"
import { getOllamaModels } from "./ollama"
@ -68,6 +69,9 @@ async function fetchModelsFromProvider(options: GetModelsOptions): Promise<Model
// Requesty models endpoint requires an API key for per-user custom policies.
models = await getRequestyModels(options.baseUrl, options.apiKey)
break
case "unbound":
models = await getUnboundModels(options.apiKey)
break
case "litellm":
// Type safety ensures apiKey and baseUrl are always provided for LiteLLM.
models = await getLiteLLMModels(options.apiKey, options.baseUrl)

View file

@ -0,0 +1,40 @@
import axios from "axios"
import type { ModelInfo } from "@roo-code/types"
import { parseApiPrice } from "../../../shared/cost"
export async function getUnboundModels(apiKey?: string | null): Promise<Record<string, ModelInfo>> {
const models: Record<string, ModelInfo> = {}
try {
const headers: Record<string, string> = {}
if (apiKey) {
headers["Authorization"] = `Bearer ${apiKey}`
}
const response = await axios.get("https://api.getunbound.ai/models", { headers })
const rawModels = response.data?.data ?? response.data
for (const rawModel of rawModels) {
const modelInfo: ModelInfo = {
maxTokens: rawModel.max_output_tokens ?? 8192,
contextWindow: rawModel.context_window ?? 200_000,
supportsPromptCache: rawModel.supports_caching ?? false,
supportsImages: rawModel.supports_vision ?? false,
inputPrice: parseApiPrice(rawModel.input_price),
outputPrice: parseApiPrice(rawModel.output_price),
description: rawModel.description,
cacheWritesPrice: parseApiPrice(rawModel.caching_price),
cacheReadsPrice: parseApiPrice(rawModel.cached_price),
}
models[rawModel.id] = modelInfo
}
} catch (error) {
console.error(`Error fetching Unbound models: ${JSON.stringify(error, Object.getOwnPropertyNames(error), 2)}`)
}
return models
}

View file

@ -17,6 +17,7 @@ export { OpenRouterHandler } from "./openrouter"
export { QwenCodeHandler } from "./qwen-code"
export { RequestyHandler } from "./requesty"
export { SambaNovaHandler } from "./sambanova"
export { UnboundHandler } from "./unbound"
export { VertexHandler } from "./vertex"
export { VsCodeLmHandler } from "./vscode-lm"
export { XAIHandler } from "./xai"

View file

@ -0,0 +1,212 @@
import { Anthropic } from "@anthropic-ai/sdk"
import OpenAI from "openai"
import { type ModelInfo, type ModelRecord, unboundDefaultModelId, unboundDefaultModelInfo } from "@roo-code/types"
import type { ApiHandlerOptions } from "../../shared/api"
import { calculateApiCostOpenAI } from "../../shared/cost"
import { convertToOpenAiMessages } from "../transform/openai-format"
import { ApiStream, ApiStreamUsageChunk } from "../transform/stream"
import { getModelParams } from "../transform/model-params"
import { OpenAiReasoningParams } from "../transform/reasoning"
import { DEFAULT_HEADERS } from "./constants"
import { getModels } from "./fetchers/modelCache"
import { BaseProvider } from "./base-provider"
import type { SingleCompletionHandler, ApiHandlerCreateMessageMetadata } from "../index"
import { handleOpenAIError } from "./utils/openai-error-handler"
import { applyRouterToolPreferences } from "./utils/router-tool-preferences"
// Unbound usage includes extra fields for Anthropic cache tokens.
interface UnboundUsage extends OpenAI.CompletionUsage {
cache_creation_input_tokens?: number
cache_read_input_tokens?: number
}
type UnboundChatCompletionParamsStreaming = OpenAI.Chat.Completions.ChatCompletionCreateParamsStreaming & {
unbound_metadata?: {
originApp?: string
taskId?: string
mode?: string
}
thinking?: OpenAiReasoningParams
}
type UnboundChatCompletionParams = OpenAI.Chat.ChatCompletionCreateParams & {
unbound_metadata?: {
originApp?: string
taskId?: string
mode?: string
}
thinking?: OpenAiReasoningParams
}
export class UnboundHandler extends BaseProvider implements SingleCompletionHandler {
protected options: ApiHandlerOptions
protected models: ModelRecord = {}
private client: OpenAI
private readonly providerName = "Unbound"
constructor(options: ApiHandlerOptions) {
super()
this.options = options
const apiKey = this.options.unboundApiKey ?? "not-provided"
this.client = new OpenAI({
baseURL: "https://api.getunbound.ai/v1",
apiKey: apiKey,
defaultHeaders: {
...DEFAULT_HEADERS,
"X-Unbound-Metadata": JSON.stringify({ labels: [{ key: "app", value: "roo-code" }] }),
},
})
}
public async fetchModel() {
this.models = await getModels({ provider: "unbound", apiKey: this.options.unboundApiKey })
return this.getModel()
}
override getModel() {
const id = this.options.unboundModelId ?? unboundDefaultModelId
const cachedInfo = this.models[id] ?? unboundDefaultModelInfo
let info: ModelInfo = cachedInfo
// Apply tool preferences for models accessed through routers (OpenAI, Gemini)
info = applyRouterToolPreferences(id, info)
const params = getModelParams({
format: "openai",
modelId: id,
model: info,
settings: this.options,
defaultTemperature: 0,
})
return { id, info, ...params }
}
protected processUsageMetrics(usage: any, modelInfo?: ModelInfo): ApiStreamUsageChunk {
const unboundUsage = usage as UnboundUsage
const inputTokens = unboundUsage?.prompt_tokens || 0
const outputTokens = unboundUsage?.completion_tokens || 0
const cacheWriteTokens = unboundUsage?.cache_creation_input_tokens || 0
const cacheReadTokens = unboundUsage?.cache_read_input_tokens || 0
const { totalCost } = modelInfo
? calculateApiCostOpenAI(modelInfo, inputTokens, outputTokens, cacheWriteTokens, cacheReadTokens)
: { totalCost: 0 }
return {
type: "usage",
inputTokens: inputTokens,
outputTokens: outputTokens,
cacheWriteTokens: cacheWriteTokens,
cacheReadTokens: cacheReadTokens,
totalCost: totalCost,
}
}
override async *createMessage(
systemPrompt: string,
messages: Anthropic.Messages.MessageParam[],
metadata?: ApiHandlerCreateMessageMetadata,
): ApiStream {
const {
id: model,
info,
maxTokens: max_tokens,
temperature,
reasoningEffort: reasoning_effort,
reasoning: thinking,
} = await this.fetchModel()
const openAiMessages: OpenAI.Chat.ChatCompletionMessageParam[] = [
{ role: "system", content: systemPrompt },
...convertToOpenAiMessages(messages),
]
// Map extended efforts to OpenAI Chat Completions-accepted values (omit unsupported)
const allowedEffort = (["low", "medium", "high"] as const).includes(reasoning_effort as any)
? (reasoning_effort as OpenAI.Chat.Completions.ChatCompletionCreateParamsStreaming["reasoning_effort"])
: undefined
const completionParams: UnboundChatCompletionParamsStreaming = {
messages: openAiMessages,
model,
max_tokens,
temperature,
...(allowedEffort && { reasoning_effort: allowedEffort }),
...(thinking && { thinking }),
stream: true,
stream_options: { include_usage: true },
unbound_metadata: { originApp: "roo-code", taskId: metadata?.taskId, mode: metadata?.mode },
tools: this.convertToolsForOpenAI(metadata?.tools),
tool_choice: metadata?.tool_choice,
}
let stream
try {
stream = await this.client.chat.completions.create(completionParams)
} catch (error) {
throw handleOpenAIError(error, this.providerName)
}
let lastUsage: any = undefined
for await (const chunk of stream) {
const delta = chunk.choices[0]?.delta
if (delta?.content) {
yield { type: "text", text: delta.content }
}
if (delta && "reasoning_content" in delta && delta.reasoning_content) {
yield { type: "reasoning", text: (delta.reasoning_content as string | undefined) || "" }
}
// Handle native tool calls
if (delta && "tool_calls" in delta && Array.isArray(delta.tool_calls)) {
for (const toolCall of delta.tool_calls) {
yield {
type: "tool_call_partial",
index: toolCall.index,
id: toolCall.id,
name: toolCall.function?.name,
arguments: toolCall.function?.arguments,
}
}
}
if (chunk.usage) {
lastUsage = chunk.usage
}
}
if (lastUsage) {
yield this.processUsageMetrics(lastUsage, info)
}
}
async completePrompt(prompt: string): Promise<string> {
const { id: model, maxTokens: max_tokens, temperature } = await this.fetchModel()
let openAiMessages: OpenAI.Chat.ChatCompletionMessageParam[] = [{ role: "system", content: prompt }]
const completionParams: UnboundChatCompletionParams = {
model,
max_tokens,
messages: openAiMessages,
temperature: temperature,
}
let response: OpenAI.Chat.ChatCompletion
try {
response = await this.client.chat.completions.create(completionParams)
} catch (error) {
throw handleOpenAIError(error, this.providerName)
}
return response.choices[0]?.message.content || ""
}
}

2
src/auth/middleware.ts Normal file
View file

@ -0,0 +1,2 @@
// refactored middleware
export const auth = () => {}

View file

@ -40,6 +40,7 @@ import { codebaseSearchTool } from "../tools/CodebaseSearchTool"
import { formatResponse } from "../prompts/responses"
import { sanitizeToolUseId } from "../../utils/tool-id"
import { intentHookEngine } from "../intent/IntentHookEngine"
/**
* Processes and presents assistant message content to the user interface.
@ -102,180 +103,190 @@ export async function presentAssistantMessage(cline: Task) {
}
switch (block.type) {
case "mcp_tool_use": {
// Handle native MCP tool calls (from mcp_serverName_toolName dynamic tools)
// These are converted to the same execution path as use_mcp_tool but preserve
// their original name in API history
const mcpBlock = block as McpToolUse
case "mcp_tool_use":
{
// Handle native MCP tool calls (from mcp_serverName_toolName dynamic tools)
// These are converted to the same execution path as use_mcp_tool but preserve
// their original name in API history
const mcpBlock = block as McpToolUse
if (cline.didRejectTool) {
// For native protocol, we must send a tool_result for every tool_use to avoid API errors
const toolCallId = mcpBlock.id
const errorMessage = !mcpBlock.partial
? `Skipping MCP tool ${mcpBlock.name} due to user rejecting a previous tool.`
: `MCP tool ${mcpBlock.name} was interrupted and not executed due to user rejecting a previous tool.`
if (cline.didRejectTool) {
// For native protocol, we must send a tool_result for every tool_use to avoid API errors
const toolCallId = mcpBlock.id
const errorMessage = !mcpBlock.partial
? `Skipping MCP tool ${mcpBlock.name} due to user rejecting a previous tool.`
: `MCP tool ${mcpBlock.name} was interrupted and not executed due to user rejecting a previous tool.`
if (toolCallId) {
cline.pushToolResultToUserContent({
type: "tool_result",
tool_use_id: sanitizeToolUseId(toolCallId),
content: errorMessage,
is_error: true,
})
if (toolCallId) {
cline.pushToolResultToUserContent({
type: "tool_result",
tool_use_id: sanitizeToolUseId(toolCallId),
content: errorMessage,
is_error: true,
})
}
break
}
// Track if we've already pushed a tool result
let hasToolResult = false
const toolCallId = mcpBlock.id
// Store approval feedback to merge into tool result (GitHub #10465)
let approvalFeedback: { text: string; images?: string[] } | undefined
const pushToolResult = (content: ToolResponse, feedbackImages?: string[]) => {
if (hasToolResult) {
console.warn(
`[presentAssistantMessage] Skipping duplicate tool_result for mcp_tool_use: ${toolCallId}`,
)
return
}
let resultContent: string
let imageBlocks: Anthropic.ImageBlockParam[] = []
if (typeof content === "string") {
resultContent = content || "(tool did not return anything)"
} else {
const textBlocks = content.filter((item) => item.type === "text")
imageBlocks = content.filter((item) => item.type === "image") as Anthropic.ImageBlockParam[]
resultContent =
textBlocks.map((item) => (item as Anthropic.TextBlockParam).text).join("\n") ||
"(tool did not return anything)"
}
// Merge approval feedback into tool result (GitHub #10465)
if (approvalFeedback) {
const feedbackText = formatResponse.toolApprovedWithFeedback(approvalFeedback.text)
resultContent = `${feedbackText}\n\n${resultContent}`
// Add feedback images to the image blocks
if (approvalFeedback.images) {
const feedbackImageBlocks = formatResponse.imageBlocks(approvalFeedback.images)
imageBlocks = [...feedbackImageBlocks, ...imageBlocks]
}
}
if (toolCallId) {
cline.pushToolResultToUserContent({
type: "tool_result",
tool_use_id: sanitizeToolUseId(toolCallId),
content: resultContent,
})
if (imageBlocks.length > 0) {
cline.userMessageContent.push(...imageBlocks)
}
}
hasToolResult = true
}
const toolDescription = () => `[mcp_tool: ${mcpBlock.serverName}/${mcpBlock.toolName}]`
const askApproval = async (
type: ClineAsk,
partialMessage?: string,
progressStatus?: ToolProgressStatus,
isProtected?: boolean,
) => {
const { response, text, images } = await cline.ask(
type,
partialMessage,
false,
progressStatus,
isProtected || false,
)
if (response !== "yesButtonClicked") {
if (text) {
await cline.say("user_feedback", text, images)
pushToolResult(
formatResponse.toolResult(formatResponse.toolDeniedWithFeedback(text), images),
)
} else {
pushToolResult(formatResponse.toolDenied())
}
cline.didRejectTool = true
return false
}
// Store approval feedback to be merged into tool result (GitHub #10465)
// Don't push it as a separate tool_result here - that would create duplicates.
// The tool will call pushToolResult, which will merge the feedback into the actual result.
if (text) {
await cline.say("user_feedback", text, images)
approvalFeedback = { text, images }
}
return true
}
const handleError = async (action: string, error: Error) => {
// Silently ignore AskIgnoredError - this is an internal control flow
// signal, not an actual error. It occurs when a newer ask supersedes an older one.
if (error instanceof AskIgnoredError) {
return
}
const errorString = `Error ${action}: ${JSON.stringify(serializeError(error))}`
await cline.say(
"error",
`Error ${action}:\n${error.message ?? JSON.stringify(serializeError(error), null, 2)}`,
)
pushToolResult(formatResponse.toolError(errorString))
}
if (!mcpBlock.partial) {
cline.recordToolUsage("use_mcp_tool") // Record as use_mcp_tool for analytics
TelemetryService.instance.captureToolUsage(cline.taskId, "use_mcp_tool")
}
// Resolve sanitized server name back to original server name
// The serverName from parsing is sanitized (e.g., "my_server" from "my server")
// We need the original name to find the actual MCP connection
const mcpHub = cline.providerRef.deref()?.getMcpHub()
let resolvedServerName = mcpBlock.serverName
if (mcpHub) {
const originalName = mcpHub.findServerNameBySanitizedName(mcpBlock.serverName)
if (originalName) {
resolvedServerName = originalName
}
}
// Execute the MCP tool using the same handler as use_mcp_tool
// Create a synthetic ToolUse block that the useMcpToolTool can handle
const syntheticToolUse: ToolUse<"use_mcp_tool"> = {
type: "tool_use",
id: mcpBlock.id,
name: "use_mcp_tool",
params: {
server_name: resolvedServerName,
tool_name: mcpBlock.toolName,
arguments: JSON.stringify(mcpBlock.arguments),
},
partial: mcpBlock.partial,
nativeArgs: {
server_name: resolvedServerName,
tool_name: mcpBlock.toolName,
arguments: mcpBlock.arguments,
},
}
await useMcpToolTool.handle(cline, syntheticToolUse, {
askApproval,
handleError,
pushToolResult,
})
break
}
// Track if we've already pushed a tool result
let hasToolResult = false
const toolCallId = mcpBlock.id
// Store approval feedback to merge into tool result (GitHub #10465)
let approvalFeedback: { text: string; images?: string[] } | undefined
const pushToolResult = (content: ToolResponse, feedbackImages?: string[]) => {
if (hasToolResult) {
console.warn(
`[presentAssistantMessage] Skipping duplicate tool_result for mcp_tool_use: ${toolCallId}`,
)
return
}
let resultContent: string
let imageBlocks: Anthropic.ImageBlockParam[] = []
if (typeof content === "string") {
resultContent = content || "(tool did not return anything)"
} else {
const textBlocks = content.filter((item) => item.type === "text")
imageBlocks = content.filter((item) => item.type === "image") as Anthropic.ImageBlockParam[]
resultContent =
textBlocks.map((item) => (item as Anthropic.TextBlockParam).text).join("\n") ||
"(tool did not return anything)"
}
// Merge approval feedback into tool result (GitHub #10465)
if (approvalFeedback) {
const feedbackText = formatResponse.toolApprovedWithFeedback(approvalFeedback.text)
resultContent = `${feedbackText}\n\n${resultContent}`
// Add feedback images to the image blocks
if (approvalFeedback.images) {
const feedbackImageBlocks = formatResponse.imageBlocks(approvalFeedback.images)
imageBlocks = [...feedbackImageBlocks, ...imageBlocks]
}
}
if (toolCallId) {
cline.pushToolResultToUserContent({
type: "tool_result",
tool_use_id: sanitizeToolUseId(toolCallId),
content: resultContent,
})
if (imageBlocks.length > 0) {
cline.userMessageContent.push(...imageBlocks)
}
}
hasToolResult = true
// Gatekeeper: block restricted tools if no active intent
const gate = intentHookEngine.gatekeeper(block.name)
if (!gate.allowed) {
pushToolResult(formatResponse.toolError(gate.message || "Operation blocked: no active intent."))
break
}
const toolDescription = () => `[mcp_tool: ${mcpBlock.serverName}/${mcpBlock.toolName}]`
const askApproval = async (
type: ClineAsk,
partialMessage?: string,
progressStatus?: ToolProgressStatus,
isProtected?: boolean,
) => {
const { response, text, images } = await cline.ask(
type,
partialMessage,
false,
progressStatus,
isProtected || false,
)
if (response !== "yesButtonClicked") {
if (text) {
await cline.say("user_feedback", text, images)
pushToolResult(formatResponse.toolResult(formatResponse.toolDeniedWithFeedback(text), images))
} else {
pushToolResult(formatResponse.toolDenied())
}
cline.didRejectTool = true
return false
}
// Store approval feedback to be merged into tool result (GitHub #10465)
// Don't push it as a separate tool_result here - that would create duplicates.
// The tool will call pushToolResult, which will merge the feedback into the actual result.
if (text) {
await cline.say("user_feedback", text, images)
approvalFeedback = { text, images }
}
return true
}
const handleError = async (action: string, error: Error) => {
// Silently ignore AskIgnoredError - this is an internal control flow
// signal, not an actual error. It occurs when a newer ask supersedes an older one.
if (error instanceof AskIgnoredError) {
return
}
const errorString = `Error ${action}: ${JSON.stringify(serializeError(error))}`
await cline.say(
"error",
`Error ${action}:\n${error.message ?? JSON.stringify(serializeError(error), null, 2)}`,
)
pushToolResult(formatResponse.toolError(errorString))
}
if (!mcpBlock.partial) {
cline.recordToolUsage("use_mcp_tool") // Record as use_mcp_tool for analytics
TelemetryService.instance.captureToolUsage(cline.taskId, "use_mcp_tool")
}
// Resolve sanitized server name back to original server name
// The serverName from parsing is sanitized (e.g., "my_server" from "my server")
// We need the original name to find the actual MCP connection
const mcpHub = cline.providerRef.deref()?.getMcpHub()
let resolvedServerName = mcpBlock.serverName
if (mcpHub) {
const originalName = mcpHub.findServerNameBySanitizedName(mcpBlock.serverName)
if (originalName) {
resolvedServerName = originalName
}
}
// Execute the MCP tool using the same handler as use_mcp_tool
// Create a synthetic ToolUse block that the useMcpToolTool can handle
const syntheticToolUse: ToolUse<"use_mcp_tool"> = {
type: "tool_use",
id: mcpBlock.id,
name: "use_mcp_tool",
params: {
server_name: resolvedServerName,
tool_name: mcpBlock.toolName,
arguments: JSON.stringify(mcpBlock.arguments),
},
partial: mcpBlock.partial,
nativeArgs: {
server_name: resolvedServerName,
tool_name: mcpBlock.toolName,
arguments: mcpBlock.arguments,
},
}
await useMcpToolTool.handle(cline, syntheticToolUse, {
askApproval,
handleError,
pushToolResult,
})
break
}
case "text": {
if (cline.didRejectTool || cline.didAlreadyUseTool) {
break

View file

@ -82,7 +82,30 @@ async function generatePrompt(
// Tools catalog is not included in the system prompt.
const toolsCatalog = ""
const basePrompt = `${roleDefinition}
const enforcementBlock = `## INTENT-DRIVEN EXECUTION [MANDATORY]
You are an Intent-Driven Architect. Your execution model is strictly constraint-based:
**CRITICAL RULE: You CANNOT write code immediately.**
Your first action MUST be to analyze the user request and call **select_active_intent(intent_id)** to load the necessary context, constraints, and scope definition.
**Execution Flow:**
1. Analyze the user request
2. Call select_active_intent() with the appropriate intent_id to load context from .orchestration/active_intents.yaml
3. Wait for the intent context to be injected
4. Only then proceed with write_file, apply_diff, or other structural changes
**Permission Model:**
- write_file, apply_diff, and execute_command are FORBIDDEN until an active intent is loaded
- The loaded intent defines your scope and constraints
- All mutations linked to an intent_id are automatically traced to .orchestration/agent_trace.jsonl`
const basePrompt = `${enforcementBlock}
---
${roleDefinition}
${markdownFormattingSection()}

View file

@ -19,6 +19,7 @@ import skill from "./skill"
import searchReplace from "./search_replace"
import edit_file from "./edit_file"
import searchFiles from "./search_files"
import selectActiveIntent from "./select_active_intent"
import switchMode from "./switch_mode"
import updateTodoList from "./update_todo_list"
import writeToFile from "./write_to_file"
@ -69,6 +70,7 @@ export function getNativeTools(options: NativeToolsOptions = {}): OpenAI.Chat.Ch
edit_file,
editTool,
searchFiles,
selectActiveIntent,
switchMode,
updateTodoList,
writeToFile,

View file

@ -0,0 +1,23 @@
import type OpenAI from "openai"
const selectActiveIntent: OpenAI.Chat.ChatCompletionTool = {
type: "function",
function: {
name: "select_active_intent",
description:
"Load the context and constraints for a specific intent before performing any code mutations or structural changes. This MUST be called before any write_file, apply_diff, or execute_command operations. The intent provides the scope, constraints, and definition of done for the current session.",
parameters: {
type: "object",
properties: {
intent_id: {
type: "string",
description:
"The unique identifier of the intent to activate (e.g., 'INT-001', 'task-refactor-auth'). This intent should be defined in the .orchestration/active_intents.yaml file.",
},
},
required: ["intent_id"],
},
},
}
export default selectActiveIntent

View file

@ -2468,6 +2468,7 @@ describe("ClineProvider - Router Models", () => {
// Verify getModels was called for each provider with correct options
expect(getModels).toHaveBeenCalledWith({ provider: "openrouter" })
expect(getModels).toHaveBeenCalledWith({ provider: "requesty", apiKey: "requesty-key" })
expect(getModels).toHaveBeenCalledWith({ provider: "unbound" })
expect(getModels).toHaveBeenCalledWith({ provider: "vercel-ai-gateway" })
expect(getModels).toHaveBeenCalledWith(
expect.objectContaining({
@ -2487,6 +2488,7 @@ describe("ClineProvider - Router Models", () => {
routerModels: {
openrouter: mockModels,
requesty: mockModels,
unbound: mockModels,
roo: mockModels,
litellm: mockModels,
ollama: {},
@ -2519,6 +2521,7 @@ describe("ClineProvider - Router Models", () => {
vi.mocked(getModels)
.mockResolvedValueOnce(mockModels) // openrouter success
.mockRejectedValueOnce(new Error("Requesty API error")) // requesty fail
.mockResolvedValueOnce(mockModels) // unbound success
.mockResolvedValueOnce(mockModels) // vercel-ai-gateway success
.mockResolvedValueOnce(mockModels) // roo success
.mockRejectedValueOnce(new Error("LiteLLM connection failed")) // litellm fail
@ -2531,6 +2534,7 @@ describe("ClineProvider - Router Models", () => {
routerModels: {
openrouter: mockModels,
requesty: {},
unbound: mockModels,
roo: mockModels,
ollama: {},
lmstudio: {},
@ -2624,6 +2628,7 @@ describe("ClineProvider - Router Models", () => {
routerModels: {
openrouter: mockModels,
requesty: mockModels,
unbound: mockModels,
roo: mockModels,
litellm: {},
ollama: {},

View file

@ -296,6 +296,11 @@ describe("webviewMessageHandler - requestRouterModels", () => {
// Verify getModels was called for each provider
expect(mockGetModels).toHaveBeenCalledWith({ provider: "openrouter" })
expect(mockGetModels).toHaveBeenCalledWith({ provider: "requesty", apiKey: "requesty-key" })
expect(mockGetModels).toHaveBeenCalledWith(
expect.objectContaining({
provider: "unbound",
}),
)
expect(mockGetModels).toHaveBeenCalledWith({ provider: "vercel-ai-gateway" })
expect(mockGetModels).toHaveBeenCalledWith(
expect.objectContaining({
@ -315,6 +320,7 @@ describe("webviewMessageHandler - requestRouterModels", () => {
routerModels: {
openrouter: mockModels,
requesty: mockModels,
unbound: mockModels,
litellm: mockModels,
roo: mockModels,
ollama: {},
@ -399,6 +405,7 @@ describe("webviewMessageHandler - requestRouterModels", () => {
routerModels: {
openrouter: mockModels,
requesty: mockModels,
unbound: mockModels,
roo: mockModels,
litellm: {},
ollama: {},
@ -423,6 +430,7 @@ describe("webviewMessageHandler - requestRouterModels", () => {
mockGetModels
.mockResolvedValueOnce(mockModels) // openrouter
.mockRejectedValueOnce(new Error("Requesty API error")) // requesty
.mockResolvedValueOnce(mockModels) // unbound
.mockResolvedValueOnce(mockModels) // vercel-ai-gateway
.mockResolvedValueOnce(mockModels) // roo
.mockRejectedValueOnce(new Error("LiteLLM connection failed")) // litellm
@ -452,6 +460,7 @@ describe("webviewMessageHandler - requestRouterModels", () => {
routerModels: {
openrouter: mockModels,
requesty: {},
unbound: mockModels,
roo: mockModels,
litellm: {},
ollama: {},
@ -467,6 +476,7 @@ describe("webviewMessageHandler - requestRouterModels", () => {
mockGetModels
.mockRejectedValueOnce(new Error("Structured error message")) // openrouter
.mockRejectedValueOnce(new Error("Requesty API error")) // requesty
.mockRejectedValueOnce(new Error("Unbound error")) // unbound
.mockRejectedValueOnce(new Error("Vercel AI Gateway error")) // vercel-ai-gateway
.mockRejectedValueOnce(new Error("Roo API error")) // roo
.mockRejectedValueOnce(new Error("LiteLLM connection failed")) // litellm
@ -490,6 +500,13 @@ describe("webviewMessageHandler - requestRouterModels", () => {
values: { provider: "requesty" },
})
expect(mockClineProvider.postMessageToWebview).toHaveBeenCalledWith({
type: "singleRouterModelFetchResponse",
success: false,
error: "Unbound error",
values: { provider: "unbound" },
})
expect(mockClineProvider.postMessageToWebview).toHaveBeenCalledWith({
type: "singleRouterModelFetchResponse",
success: false,

View file

@ -876,6 +876,7 @@ export const webviewMessageHandler = async (
"vercel-ai-gateway": {},
litellm: {},
requesty: {},
unbound: {},
ollama: {},
lmstudio: {},
roo: {},
@ -905,6 +906,13 @@ export const webviewMessageHandler = async (
baseUrl: apiConfiguration.requestyBaseUrl,
},
},
{
key: "unbound",
options: {
provider: "unbound",
apiKey: apiConfiguration.unboundApiKey,
},
},
{ key: "vercel-ai-gateway", options: { provider: "vercel-ai-gateway" } },
{
key: "roo",

View file

@ -24,5 +24,14 @@
"refreshing_all": "Alle MCP-Server werden aktualisiert...",
"all_refreshed": "Alle MCP-Server wurden aktualisiert.",
"project_config_deleted": "Projekt-MCP-Konfigurationsdatei gelöscht. Alle Projekt-MCP-Server wurden getrennt."
}
},
"tools": [
{
"name": "search_codebase",
"description": "Search the repo for function names and keywords",
"parameters": {
"query": "string"
}
}
]
}

View file

@ -39,7 +39,8 @@ function createSanitizedGit(baseDir: string): SimpleGit {
key === "GIT_INDEX_FILE" ||
key === "GIT_OBJECT_DIRECTORY" ||
key === "GIT_ALTERNATE_OBJECT_DIRECTORIES" ||
key === "GIT_CEILING_DIRECTORIES"
key === "GIT_CEILING_DIRECTORIES" ||
key === "GIT_TEMPLATE_DIR"
) {
removedVars.push(`${key}=${value}`)
continue
@ -172,7 +173,7 @@ export abstract class ShadowCheckpointService extends EventEmitter {
this.baseHash = await git.revparse(["HEAD"])
} else {
this.log(`[${this.constructor.name}#initShadowGit] creating shadow git repo at ${this.checkpointsDir}`)
await git.init()
await git.init({ "--template": "" })
await git.addConfig("core.worktree", this.workspaceDir) // Sets the working tree to the current workspace.
await git.addConfig("commit.gpgSign", "false") // Disable commit signing for shadow repo.
await git.addConfig("user.name", "Roo Code")

View file

@ -824,6 +824,55 @@ describe.each([[RepoPerTaskCheckpointService, "RepoPerTaskCheckpointService"]])(
expect(await fs.readFile(testFile, "utf-8")).toBe("Hello, world!")
})
it("does not apply git templates when initializing shadow repo", async () => {
// This test verifies that git init uses --template="" and GIT_TEMPLATE_DIR
// is stripped, preventing system/user git hooks from leaking into the shadow repo.
const templateDir = path.join(tmpDir, `git-template-${Date.now()}`)
const hooksDir = path.join(templateDir, "hooks")
await fs.mkdir(hooksDir, { recursive: true })
await fs.writeFile(path.join(hooksDir, "pre-commit"), "#!/bin/sh\nexit 1", { mode: 0o755 })
const testShadowDir = path.join(tmpDir, `shadow-template-test-${Date.now()}`)
const testWorkspaceDir = path.join(tmpDir, `workspace-template-test-${Date.now()}`)
await initWorkspaceRepo({ workspaceDir: testWorkspaceDir })
const originalTemplateDir = process.env.GIT_TEMPLATE_DIR
process.env.GIT_TEMPLATE_DIR = templateDir
try {
const testService = await klass.create({
taskId: `test-template-${Date.now()}`,
shadowDir: testShadowDir,
workspaceDir: testWorkspaceDir,
log: () => {},
})
await testService.initShadowGit()
// Verify no hooks were copied from the template
const shadowHooksDir = path.join(testShadowDir, ".git", "hooks")
let hookFiles: string[] = []
try {
hookFiles = await fs.readdir(shadowHooksDir)
} catch {
// hooks dir may not exist at all, which is fine
}
// The pre-commit hook from the template should NOT be present
expect(hookFiles).not.toContain("pre-commit")
} finally {
if (originalTemplateDir !== undefined) {
process.env.GIT_TEMPLATE_DIR = originalTemplateDir
} else {
delete process.env.GIT_TEMPLATE_DIR
}
await fs.rm(testShadowDir, { recursive: true, force: true })
await fs.rm(testWorkspaceDir, { recursive: true, force: true })
await fs.rm(templateDir, { recursive: true, force: true })
}
})
it("isolates checkpoint operations from GIT_DIR environment variable", async () => {
// This test verifies the fix for the issue where GIT_DIR environment variable
// causes checkpoint commits to go to the wrong repository.

View file

@ -77,6 +77,8 @@ export class ProfileValidator {
return profile.ollamaModelId
case "requesty":
return profile.requestyModelId
case "unbound":
return profile.unboundModelId
case "fake-ai":
default:
return undefined

View file

@ -173,6 +173,7 @@ const dynamicProviderExtras = {
"vercel-ai-gateway": {} as {}, // eslint-disable-line @typescript-eslint/no-empty-object-type
litellm: {} as { apiKey: string; baseUrl: string },
requesty: {} as { apiKey?: string; baseUrl?: string },
unbound: {} as { apiKey?: string },
ollama: {} as {}, // eslint-disable-line @typescript-eslint/no-empty-object-type
lmstudio: {} as {}, // eslint-disable-line @typescript-eslint/no-empty-object-type
roo: {} as { apiKey?: string; baseUrl?: string },

View file

@ -0,0 +1,78 @@
import fs from "fs"
import path from "path"
import { describe, it, expect, beforeEach, afterEach } from "vitest"
import yaml from "js-yaml"
import { IntentHookEngine } from "../src/core/intent/IntentHookEngine"
const orchestrationDir = path.join(process.cwd(), ".orchestration")
const intentsPath = path.join(orchestrationDir, "active_intents.yaml")
const tracePath = path.join(orchestrationDir, "agent_trace.jsonl")
beforeEach(() => {
// cleanup
if (fs.existsSync(orchestrationDir)) {
fs.rmSync(orchestrationDir, { recursive: true, force: true })
}
})
afterEach(() => {
if (fs.existsSync(orchestrationDir)) {
fs.rmSync(orchestrationDir, { recursive: true, force: true })
}
})
describe("Phase 1 Handshake Enforcement", () => {
it("enforces intent handshake and gatekeeper", () => {
// 1. Create orchestration and active_intents.yaml
fs.mkdirSync(orchestrationDir)
const yamlContent = {
active_intents: [
{
id: "INT-001",
name: "Refactor Auth Middleware",
status: "active",
owned_scope: ["src/auth/middleware.ts", "src/services/auth/"],
constraints: ["Use JWT instead of Session", "Preserve backward compatibility"],
acceptance_criteria: ["All tests pass", "Token validation works end-to-end"],
},
],
}
fs.writeFileSync(intentsPath, yaml.dump(yamlContent), "utf8")
expect(fs.existsSync(intentsPath)).toBe(true)
// Instantiate engine after intents file exists
const engine = new IntentHookEngine()
// 2. Initial mutation blocked
const blocked = engine.gatekeeper("write_file")
expect(blocked.allowed).toBe(false)
expect(blocked.message).toContain("You must cite a valid active Intent ID")
// 3. select_active_intent returns XML block
const xml = engine.preHook("select_active_intent", { intent_id: "INT-001" })
expect(typeof xml).toBe("string")
expect(xml as string).toContain("<intent_context>")
expect(xml as string).toContain("<intent_id>INT-001</intent_id>")
// 4. Mutation succeeds after selecting intent
const allowed = engine.gatekeeper("write_file")
expect(allowed.allowed).toBe(true)
// perform write and trace
const content = 'console.log("refactor")\n'
const target = "src/auth/middleware.ts"
// ensure orchestration dir exists
if (!fs.existsSync(orchestrationDir)) fs.mkdirSync(orchestrationDir)
engine.logTrace(target, content)
expect(fs.existsSync(tracePath)).toBe(true)
const trace = fs.readFileSync(tracePath, "utf8")
expect(trace).toContain("INT-001")
expect(trace).toContain("sha256")
// 5. Clear session and ensure blocked
engine.clearSessionIntent()
const postClear = engine.gatekeeper("write_file")
expect(postClear.allowed).toBe(false)
})
})

View file

@ -31,6 +31,7 @@ import {
rooDefaultModelId,
vercelAiGatewayDefaultModelId,
minimaxDefaultModelId,
unboundDefaultModelId,
} from "@roo-code/types"
import {
@ -83,6 +84,7 @@ import {
Requesty,
Roo,
SambaNova,
Unbound,
Vertex,
VSCodeLM,
XAI,
@ -330,6 +332,7 @@ const ApiOptions = ({
> = {
openrouter: { field: "openRouterModelId", default: openRouterDefaultModelId },
requesty: { field: "requestyModelId", default: requestyDefaultModelId },
unbound: { field: "unboundModelId", default: unboundDefaultModelId },
litellm: { field: "litellmModelId", default: litellmDefaultModelId },
anthropic: { field: "apiModelId", default: anthropicDefaultModelId },
"openai-codex": { field: "apiModelId", default: openAiCodexDefaultModelId },
@ -518,6 +521,18 @@ const ApiOptions = ({
/>
)}
{selectedProvider === "unbound" && (
<Unbound
apiConfiguration={apiConfiguration}
setApiConfigurationField={setApiConfigurationField}
routerModels={routerModels}
refetchRouterModels={refetchRouterModels}
organizationAllowList={organizationAllowList}
modelValidationError={modelValidationError}
simplifySettings={fromWelcomeView}
/>
)}
{selectedProvider === "anthropic" && (
<Anthropic
apiConfiguration={apiConfiguration}

View file

@ -30,6 +30,7 @@ type ModelIdKey = keyof Pick<
ProviderSettings,
| "openRouterModelId"
| "requestyModelId"
| "unboundModelId"
| "openAiModelId"
| "litellmModelId"
| "vercelAiGatewayModelId"

View file

@ -64,4 +64,5 @@ export const PROVIDERS = [
{ value: "vercel-ai-gateway", label: "Vercel AI Gateway", proxy: false },
{ value: "minimax", label: "MiniMax", proxy: false },
{ value: "baseten", label: "Baseten", proxy: false },
{ value: "unbound", label: "Unbound", proxy: false },
].sort((a, b) => a.label.localeCompare(b.label))

View file

@ -0,0 +1,101 @@
import { useCallback } from "react"
import { VSCodeTextField } from "@vscode/webview-ui-toolkit/react"
import {
type ProviderSettings,
type OrganizationAllowList,
type RouterModels,
unboundDefaultModelId,
} from "@roo-code/types"
import { vscode } from "@src/utils/vscode"
import { useAppTranslation } from "@src/i18n/TranslationContext"
import { Button } from "@src/components/ui"
import { inputEventTransform } from "../transforms"
import { ModelPicker } from "../ModelPicker"
type UnboundProps = {
apiConfiguration: ProviderSettings
setApiConfigurationField: (field: keyof ProviderSettings, value: ProviderSettings[keyof ProviderSettings]) => void
routerModels?: RouterModels
refetchRouterModels: () => void
organizationAllowList: OrganizationAllowList
modelValidationError?: string
simplifySettings?: boolean
}
export const Unbound = ({
apiConfiguration,
setApiConfigurationField,
routerModels,
organizationAllowList,
modelValidationError,
simplifySettings,
}: UnboundProps) => {
const { t } = useAppTranslation()
const handleInputChange = useCallback(
<K extends keyof ProviderSettings, E>(
field: K,
transform: (event: E) => ProviderSettings[K] = inputEventTransform,
) =>
(event: E | Event) => {
setApiConfigurationField(field, transform(event as E))
},
[setApiConfigurationField],
)
return (
<>
<VSCodeTextField
value={apiConfiguration?.unboundApiKey || ""}
type="password"
onInput={handleInputChange("unboundApiKey")}
placeholder={t("settings:providers.unboundApiKey")}
className="w-full">
<div className="flex justify-between items-center mb-1">
<label className="block font-medium">{t("settings:providers.unboundApiKey")}</label>
</div>
</VSCodeTextField>
<div className="text-sm text-vscode-descriptionForeground -mt-2">
{t("settings:providers.apiKeyStorageNotice")}
</div>
<a
href="https://gateway.getunbound.ai"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center justify-center whitespace-nowrap text-sm font-medium focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 bg-primary text-primary-foreground shadow hover:bg-primary/90 h-9 rounded-md px-3 w-full"
style={{
width: "100%",
textDecoration: "none",
color: "var(--vscode-button-foreground)",
backgroundColor: "var(--vscode-button-background)",
}}>
{t("settings:providers.getUnboundApiKey")}
</a>
<Button
variant="outline"
onClick={() => {
vscode.postMessage({ type: "requestRouterModels", values: { provider: "unbound", refresh: true } })
}}>
<div className="flex items-center gap-2">
<span className="codicon codicon-refresh" />
{t("settings:providers.refreshModels.label")}
</div>
</Button>
<ModelPicker
apiConfiguration={apiConfiguration}
setApiConfigurationField={setApiConfigurationField}
defaultModelId={unboundDefaultModelId}
models={routerModels?.unbound ?? {}}
modelIdKey="unboundModelId"
serviceName="Unbound"
serviceUrl="https://api.getunbound.ai/models"
organizationAllowList={organizationAllowList}
errorMessage={modelValidationError}
simplifySettings={simplifySettings}
/>
</>
)
}

View file

@ -14,6 +14,7 @@ export { QwenCode } from "./QwenCode"
export { Roo } from "./Roo"
export { Requesty } from "./Requesty"
export { SambaNova } from "./SambaNova"
export { Unbound } from "./Unbound"
export { Vertex } from "./Vertex"
export { VSCodeLM } from "./VSCodeLM"
export { XAI } from "./XAI"

View file

@ -118,6 +118,7 @@ export const isStaticModelProvider = (provider: ProviderName): boolean => {
export const PROVIDERS_WITH_CUSTOM_MODEL_UI: ProviderName[] = [
"openrouter",
"requesty",
"unbound",
"openai", // OpenAI Compatible
"openai-codex", // OpenAI Codex has custom UI with auth and rate limits
"litellm",

View file

@ -159,6 +159,11 @@ function getSelectedModel({
const routerInfo = routerModels.requesty?.[id]
return { id, info: routerInfo }
}
case "unbound": {
const id = getValidatedModelId(apiConfiguration.unboundModelId, routerModels.unbound, defaultModelId)
const routerInfo = routerModels.unbound?.[id]
return { id, info: routerInfo }
}
case "litellm": {
const id = getValidatedModelId(apiConfiguration.litellmModelId, routerModels.litellm, defaultModelId)
const routerInfo = routerModels.litellm?.[id]

View file

@ -356,6 +356,8 @@
"headerName": "Nom de la capçalera",
"headerValue": "Valor de la capçalera",
"noCustomHeaders": "No hi ha capçaleres personalitzades definides. Feu clic al botó + per afegir-ne una.",
"unboundApiKey": "Clau API de Unbound",
"getUnboundApiKey": "Obtenir clau API de Unbound",
"requestyApiKey": "Clau API de Requesty",
"refreshModels": {
"label": "Actualitzar models",

View file

@ -356,6 +356,8 @@
"headerName": "Header-Name",
"headerValue": "Header-Wert",
"noCustomHeaders": "Keine benutzerdefinierten Headers definiert. Klicke auf die + Schaltfläche, um einen hinzuzufügen.",
"unboundApiKey": "Unbound API-Schlüssel",
"getUnboundApiKey": "Unbound API-Schlüssel erhalten",
"requestyApiKey": "Requesty API-Schlüssel",
"refreshModels": {
"label": "Modelle aktualisieren",

View file

@ -419,6 +419,8 @@
"headerName": "Header name",
"headerValue": "Header value",
"noCustomHeaders": "No custom headers defined. Click the + button to add one.",
"unboundApiKey": "Unbound API Key",
"getUnboundApiKey": "Get Unbound API Key",
"requestyApiKey": "Requesty API Key",
"refreshModels": {
"label": "Refresh Models",

View file

@ -356,6 +356,8 @@
"headerName": "Nombre del encabezado",
"headerValue": "Valor del encabezado",
"noCustomHeaders": "No hay encabezados personalizados definidos. Haga clic en el botón + para añadir uno.",
"unboundApiKey": "Clave API de Unbound",
"getUnboundApiKey": "Obtener clave API de Unbound",
"requestyApiKey": "Clave API de Requesty",
"refreshModels": {
"label": "Actualizar modelos",

View file

@ -356,6 +356,8 @@
"headerName": "Nom de l'en-tête",
"headerValue": "Valeur de l'en-tête",
"noCustomHeaders": "Aucun en-tête personnalisé défini. Cliquez sur le bouton + pour en ajouter un.",
"unboundApiKey": "Clé API Unbound",
"getUnboundApiKey": "Obtenir la clé API Unbound",
"requestyApiKey": "Clé API Requesty",
"refreshModels": {
"label": "Actualiser les modèles",

View file

@ -356,6 +356,8 @@
"headerName": "हेडर नाम",
"headerValue": "हेडर मूल्य",
"noCustomHeaders": "कोई कस्टम हेडर परिभाषित नहीं है। एक जोड़ने के लिए + बटन पर क्लिक करें।",
"unboundApiKey": "Unbound API कुंजी",
"getUnboundApiKey": "Unbound API कुंजी प्राप्त करें",
"requestyApiKey": "Requesty API कुंजी",
"refreshModels": {
"label": "मॉडल रिफ्रेश करें",

View file

@ -356,6 +356,8 @@
"headerName": "Nama header",
"headerValue": "Nilai header",
"noCustomHeaders": "Tidak ada header kustom yang didefinisikan. Klik tombol + untuk menambahkan satu.",
"unboundApiKey": "Unbound API Key",
"getUnboundApiKey": "Dapatkan Unbound API Key",
"requestyApiKey": "Requesty API Key",
"refreshModels": {
"label": "Refresh Model",

View file

@ -356,6 +356,8 @@
"headerName": "Nome intestazione",
"headerValue": "Valore intestazione",
"noCustomHeaders": "Nessuna intestazione personalizzata definita. Fai clic sul pulsante + per aggiungerne una.",
"unboundApiKey": "Chiave API Unbound",
"getUnboundApiKey": "Ottieni chiave API Unbound",
"requestyApiKey": "Chiave API Requesty",
"refreshModels": {
"label": "Aggiorna modelli",

View file

@ -356,6 +356,8 @@
"headerName": "ヘッダー名",
"headerValue": "ヘッダー値",
"noCustomHeaders": "カスタムヘッダーが定義されていません。+ ボタンをクリックして追加してください。",
"unboundApiKey": "Unbound API キー",
"getUnboundApiKey": "Unbound APIキーを取得",
"requestyApiKey": "Requesty APIキー",
"refreshModels": {
"label": "モデルを更新",

View file

@ -356,6 +356,8 @@
"headerName": "헤더 이름",
"headerValue": "헤더 값",
"noCustomHeaders": "정의된 사용자 정의 헤더가 없습니다. + 버튼을 클릭하여 추가하세요.",
"unboundApiKey": "Unbound API 키",
"getUnboundApiKey": "Unbound API 키 받기",
"requestyApiKey": "Requesty API 키",
"refreshModels": {
"label": "모델 새로고침",

View file

@ -356,6 +356,8 @@
"headerName": "Headernaam",
"headerValue": "Headerwaarde",
"noCustomHeaders": "Geen aangepaste headers gedefinieerd. Klik op de + knop om er een toe te voegen.",
"unboundApiKey": "Unbound API sleutel",
"getUnboundApiKey": "Unbound API-sleutel ophalen",
"requestyApiKey": "Requesty API-sleutel",
"refreshModels": {
"label": "Modellen verversen",

View file

@ -356,6 +356,8 @@
"headerName": "Nazwa nagłówka",
"headerValue": "Wartość nagłówka",
"noCustomHeaders": "Brak zdefiniowanych niestandardowych nagłówków. Kliknij przycisk +, aby dodać.",
"unboundApiKey": "Klucz API Unbound",
"getUnboundApiKey": "Uzyskaj klucz API Unbound",
"requestyApiKey": "Klucz API Requesty",
"refreshModels": {
"label": "Odśwież modele",

View file

@ -356,6 +356,8 @@
"headerName": "Nome do cabeçalho",
"headerValue": "Valor do cabeçalho",
"noCustomHeaders": "Nenhum cabeçalho personalizado definido. Clique no botão + para adicionar um.",
"unboundApiKey": "Chave de API Unbound",
"getUnboundApiKey": "Obter chave de API Unbound",
"requestyApiKey": "Chave de API Requesty",
"refreshModels": {
"label": "Atualizar modelos",

View file

@ -356,6 +356,8 @@
"headerName": "Имя заголовка",
"headerValue": "Значение заголовка",
"noCustomHeaders": "Пользовательские заголовки не определены. Нажмите кнопку +, чтобы добавить.",
"unboundApiKey": "Unbound API-ключ",
"getUnboundApiKey": "Получить Unbound API-ключ",
"requestyApiKey": "Requesty API-ключ",
"refreshModels": {
"label": "Обновить модели",

View file

@ -356,6 +356,8 @@
"headerName": "Başlık adı",
"headerValue": "Başlık değeri",
"noCustomHeaders": "Tanımlanmış özel başlık yok. Eklemek için + düğmesine tıklayın.",
"unboundApiKey": "Unbound API Anahtarı",
"getUnboundApiKey": "Unbound API Anahtarı Al",
"requestyApiKey": "Requesty API Anahtarı",
"refreshModels": {
"label": "Modelleri Yenile",

View file

@ -356,6 +356,8 @@
"headerName": "Tên tiêu đề",
"headerValue": "Giá trị tiêu đề",
"noCustomHeaders": "Chưa có tiêu đề tùy chỉnh nào được định nghĩa. Nhấp vào nút + để thêm.",
"unboundApiKey": "Khóa API Unbound",
"getUnboundApiKey": "Lấy khóa API Unbound",
"requestyApiKey": "Khóa API Requesty",
"refreshModels": {
"label": "Làm mới mô hình",

View file

@ -356,6 +356,8 @@
"headerName": "标头名称",
"headerValue": "标头值",
"noCustomHeaders": "暂无自定义标头。点击 + 按钮添加。",
"unboundApiKey": "Unbound API 密钥",
"getUnboundApiKey": "获取 Unbound API 密钥",
"requestyApiKey": "Requesty API 密钥",
"refreshModels": {
"label": "刷新模型",

View file

@ -366,6 +366,8 @@
"headerName": "標頭名稱",
"headerValue": "標頭值",
"noCustomHeaders": "尚未定義自訂標頭。點選 + 按鈕以新增。",
"unboundApiKey": "Unbound API 金鑰",
"getUnboundApiKey": "取得 Unbound API 金鑰",
"requestyApiKey": "Requesty API 金鑰",
"refreshModels": {
"label": "重新整理模型",

View file

@ -39,6 +39,7 @@ describe("Model Validation Functions", () => {
},
},
requesty: {},
unbound: {},
litellm: {},
ollama: {},
lmstudio: {},

View file

@ -48,6 +48,11 @@ function validateModelsAndKeysProvided(apiConfiguration: ProviderSettings): stri
return i18next.t("settings:validation.apiKey")
}
break
case "unbound":
if (!apiConfiguration.unboundApiKey) {
return i18next.t("settings:validation.apiKey")
}
break
case "litellm":
if (!apiConfiguration.litellmApiKey) {
return i18next.t("settings:validation.apiKey")