mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-08 10:09:52 -04:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5d37d68bc4 | |||
| 0b84e24e65 | |||
| 3776975d5c | |||
| d2c99ba97c | |||
| 6f3a3600b9 | |||
| 9ca650f97c | |||
| db3b54a30d | |||
| b4f769f695 | |||
| e5ef00b8b8 | |||
| 917d6449e3 | |||
| db31c42e39 | |||
| c79ced174e | |||
| 8ba8af1dd9 | |||
| 6e82f5d3b9 | |||
| 48d1a6e5b9 | |||
| bc47030d4d | |||
| e6d20440f9 | |||
| c9cbd2b1f4 | |||
| 292dfa3036 |
Binary file not shown.
|
After Width: | Height: | Size: 62 KiB |
@@ -395,6 +395,7 @@
|
|||||||
"ignore": "7.0.5",
|
"ignore": "7.0.5",
|
||||||
"immer": "11.1.4",
|
"immer": "11.1.4",
|
||||||
"jsonc-parser": "3.3.1",
|
"jsonc-parser": "3.3.1",
|
||||||
|
"mime-types": "3.0.2",
|
||||||
"tree-sitter-bash": "0.25.0",
|
"tree-sitter-bash": "0.25.0",
|
||||||
"tree-sitter-powershell": "0.25.10",
|
"tree-sitter-powershell": "0.25.10",
|
||||||
"turndown": "7.2.0",
|
"turndown": "7.2.0",
|
||||||
|
|||||||
@@ -368,11 +368,12 @@ Other provider exports listed above remain direct facades until they explicitly
|
|||||||
|
|
||||||
## Provider options & HTTP overlays
|
## Provider options & HTTP overlays
|
||||||
|
|
||||||
Three escape hatches in order of stability:
|
Request options in order of stability:
|
||||||
|
|
||||||
1. **`generation`** — portable knobs (`maxTokens`, `temperature`, `topP`, `topK`, penalties, seed, stop).
|
1. **`generation`** — portable knobs (`maxTokens`, `temperature`, `topP`, `topK`, penalties, seed, stop).
|
||||||
2. **`providerOptions: { <provider>: {...} }`** — typed-at-the-facade provider-specific knobs (OpenAI `promptCacheKey`, Anthropic `thinking`, Gemini `thinkingConfig`, OpenRouter routing).
|
2. **`promptCacheKey`** — stable cache affinity lowered by every protocol that supports it.
|
||||||
3. **`http: { body, headers, query }`** — last-resort serializable overlays merged into the final HTTP request. Reach for this only when a stable typed path doesn't yet exist.
|
3. **`providerOptions: { <provider>: {...} }`** — typed-at-the-facade provider-specific knobs (OpenAI `store`, Anthropic `thinking`, Gemini `thinkingConfig`, OpenRouter routing).
|
||||||
|
4. **`http: { body, headers, query }`** — last-resort serializable overlays merged into the final HTTP request. Reach for this only when a stable typed path doesn't yet exist.
|
||||||
|
|
||||||
Route/provider defaults are overridden by request-level values for each axis.
|
Route/provider defaults are overridden by request-level values for each axis.
|
||||||
|
|
||||||
|
|||||||
@@ -33,9 +33,10 @@ const model = OpenAI.configure({
|
|||||||
//
|
//
|
||||||
// - `generation`: common controls such as max tokens, temperature, topP/topK,
|
// - `generation`: common controls such as max tokens, temperature, topP/topK,
|
||||||
// penalties, seed, and stop sequences.
|
// penalties, seed, and stop sequences.
|
||||||
|
// - `promptCacheKey`: stable cache affinity for protocols that support it.
|
||||||
// - `providerOptions`: namespaced provider-native behavior. For example,
|
// - `providerOptions`: namespaced provider-native behavior. For example,
|
||||||
// OpenAI cache keys and store behavior, Anthropic thinking, Gemini thinking
|
// OpenAI store behavior, Anthropic thinking, Gemini thinking config, or
|
||||||
// config, or OpenRouter routing/reasoning.
|
// OpenRouter routing/reasoning.
|
||||||
// - `http`: last-resort serializable overlays for final request body, headers,
|
// - `http`: last-resort serializable overlays for final request body, headers,
|
||||||
// and query params. Prefer typed `providerOptions` when a field is stable.
|
// and query params. Prefer typed `providerOptions` when a field is stable.
|
||||||
//
|
//
|
||||||
@@ -45,9 +46,7 @@ const request = LLM.request({
|
|||||||
system: "You are concise and practical.",
|
system: "You are concise and practical.",
|
||||||
prompt: "Tell me a joke",
|
prompt: "Tell me a joke",
|
||||||
generation: { maxTokens: 80, temperature: 0.7 },
|
generation: { maxTokens: 80, temperature: 0.7 },
|
||||||
providerOptions: {
|
promptCacheKey: "tutorial-joke",
|
||||||
openai: { promptCacheKey: "tutorial-joke" },
|
|
||||||
},
|
|
||||||
})
|
})
|
||||||
|
|
||||||
// 3. `generate` sends the request and collects the event stream into one
|
// 3. `generate` sends the request and collects the event stream into one
|
||||||
|
|||||||
@@ -25,8 +25,20 @@ import { ToolSchemaProjection } from "./utils/tool-schema"
|
|||||||
|
|
||||||
const ADAPTER = "gemini"
|
const ADAPTER = "gemini"
|
||||||
const MEDIA_MIMES = new Set<string>(ProviderShared.MEDIA_MIMES)
|
const MEDIA_MIMES = new Set<string>(ProviderShared.MEDIA_MIMES)
|
||||||
|
// Google documents this sentinel for replaying Gemini 3 function calls after their original signature was lost.
|
||||||
|
const SKIP_THOUGHT_SIGNATURE_VALIDATOR = "skip_thought_signature_validator"
|
||||||
export const DEFAULT_BASE_URL = "https://generativelanguage.googleapis.com/v1beta"
|
export const DEFAULT_BASE_URL = "https://generativelanguage.googleapis.com/v1beta"
|
||||||
|
|
||||||
|
// Gemini 3 rejects replayed function calls without a thought signature. Google's SDKs avoid that in normal chats by
|
||||||
|
// retaining complete model responses, but OpenCode reconstructs durable history and may encounter an unsigned call
|
||||||
|
// from an older or external session. Model IDs are open-ended, so unknown Gemini aliases inherit current behavior.
|
||||||
|
const requiresThoughtSignatureFallback = (modelID: string) => {
|
||||||
|
if (!/(^|\/)gemini-/i.test(modelID)) return false
|
||||||
|
if (/(^|\/)gemini-(?:1|2)(?:[.-]|$)/i.test(modelID)) return false
|
||||||
|
if (/(^|\/)gemini-pro(?:-vision)?$/i.test(modelID)) return false
|
||||||
|
return !/(^|\/)gemini-robotics-er-1\.5(?:[.-]|$)/i.test(modelID)
|
||||||
|
}
|
||||||
|
|
||||||
export interface OptionsInput {
|
export interface OptionsInput {
|
||||||
readonly [key: string]: unknown
|
readonly [key: string]: unknown
|
||||||
readonly cachedContent?: string
|
readonly cachedContent?: string
|
||||||
@@ -145,6 +157,9 @@ const GeminiGenerationConfig = Schema.Struct({
|
|||||||
temperature: Schema.optional(Schema.Number),
|
temperature: Schema.optional(Schema.Number),
|
||||||
topP: Schema.optional(Schema.Number),
|
topP: Schema.optional(Schema.Number),
|
||||||
topK: Schema.optional(Schema.Number),
|
topK: Schema.optional(Schema.Number),
|
||||||
|
frequencyPenalty: Schema.optional(Schema.Number),
|
||||||
|
presencePenalty: Schema.optional(Schema.Number),
|
||||||
|
seed: Schema.optional(Schema.Number),
|
||||||
stopSequences: optionalArray(Schema.String),
|
stopSequences: optionalArray(Schema.String),
|
||||||
thinkingConfig: Schema.optional(GeminiThinkingConfig),
|
thinkingConfig: Schema.optional(GeminiThinkingConfig),
|
||||||
})
|
})
|
||||||
@@ -202,11 +217,13 @@ interface ParserState {
|
|||||||
// keys on non-object scalars. Mirrors OpenCode's historical Gemini rules.
|
// keys on non-object scalars. Mirrors OpenCode's historical Gemini rules.
|
||||||
//
|
//
|
||||||
// 2. Project — lossy mapping from JSON Schema to Gemini's schema dialect:
|
// 2. Project — lossy mapping from JSON Schema to Gemini's schema dialect:
|
||||||
// drop empty objects, derive `nullable: true` from `type: [..., "null"]`,
|
// drop empty root parameter schemas while preserving nested empty objects,
|
||||||
// coerce `const` to `[const]` enum, recurse properties/items, propagate
|
// expand type arrays into `anyOf`, derive `nullable: true` from null members,
|
||||||
|
// coerce `const` to `[const]` enum, recurse properties/items, and propagate
|
||||||
// only an allowlisted set of keys (description, required, format, type,
|
// only an allowlisted set of keys (description, required, format, type,
|
||||||
// properties, items, allOf, anyOf, oneOf, minLength). Anything outside the
|
// nullable, enum, properties, items, allOf, anyOf, oneOf, minLength).
|
||||||
// allowlist (e.g. `additionalProperties`, `$ref`) is silently dropped.
|
// Anything outside the allowlist (e.g. `additionalProperties`, `$ref`) is
|
||||||
|
// silently dropped.
|
||||||
//
|
//
|
||||||
// Sanitize runs first, then project. The implementation lives in
|
// Sanitize runs first, then project. The implementation lives in
|
||||||
// `utils/gemini-tool-schema` so this protocol keeps the same shape as the other
|
// `utils/gemini-tool-schema` so this protocol keeps the same shape as the other
|
||||||
@@ -282,6 +299,8 @@ const lowerMessages = Effect.fn("Gemini.lowerMessages")(function* (request: LLMR
|
|||||||
|
|
||||||
if (message.role === "assistant") {
|
if (message.role === "assistant") {
|
||||||
const parts: Array<Schema.Schema.Type<typeof GeminiContentPart>> = []
|
const parts: Array<Schema.Schema.Type<typeof GeminiContentPart>> = []
|
||||||
|
// Parallel Gemini 3 calls may carry one signature on the first call; unsigned sibling calls are valid.
|
||||||
|
let hasSignedToolCall = false
|
||||||
for (const part of message.content) {
|
for (const part of message.content) {
|
||||||
if (!ProviderShared.supportsContent(part, ["text", "reasoning", "tool-call"]))
|
if (!ProviderShared.supportsContent(part, ["text", "reasoning", "tool-call"]))
|
||||||
return yield* ProviderShared.unsupportedContent("Gemini", "assistant", ["text", "reasoning", "tool-call"])
|
return yield* ProviderShared.unsupportedContent("Gemini", "assistant", ["text", "reasoning", "tool-call"])
|
||||||
@@ -294,7 +313,17 @@ const lowerMessages = Effect.fn("Gemini.lowerMessages")(function* (request: LLMR
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if (part.type === "tool-call") {
|
if (part.type === "tool-call") {
|
||||||
parts.push(lowerToolCall(part))
|
const lowered = lowerToolCall(part)
|
||||||
|
const signature = lowered.thoughtSignature
|
||||||
|
parts.push({
|
||||||
|
...lowered,
|
||||||
|
thoughtSignature:
|
||||||
|
signature ??
|
||||||
|
(requiresThoughtSignatureFallback(request.model.id) && !hasSignedToolCall
|
||||||
|
? SKIP_THOUGHT_SIGNATURE_VALIDATOR
|
||||||
|
: undefined),
|
||||||
|
})
|
||||||
|
if (signature !== undefined) hasSignedToolCall = true
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -388,6 +417,9 @@ const fromRequest = Effect.fn("Gemini.fromRequest")(function* (request: LLMReque
|
|||||||
temperature: generation?.temperature,
|
temperature: generation?.temperature,
|
||||||
topP: generation?.topP,
|
topP: generation?.topP,
|
||||||
topK: generation?.topK,
|
topK: generation?.topK,
|
||||||
|
frequencyPenalty: generation?.frequencyPenalty,
|
||||||
|
presencePenalty: generation?.presencePenalty,
|
||||||
|
seed: generation?.seed,
|
||||||
stopSequences: generation?.stop,
|
stopSequences: generation?.stop,
|
||||||
thinkingConfig: options.thinkingConfig,
|
thinkingConfig: options.thinkingConfig,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -539,7 +539,7 @@ const lowerOptions = (request: LLMRequest) => {
|
|||||||
return {
|
return {
|
||||||
...(options.instructions ? { instructions: options.instructions } : {}),
|
...(options.instructions ? { instructions: options.instructions } : {}),
|
||||||
...(options.store !== undefined ? { store: options.store } : {}),
|
...(options.store !== undefined ? { store: options.store } : {}),
|
||||||
...(options.promptCacheKey ? { prompt_cache_key: options.promptCacheKey } : {}),
|
...(request.promptCacheKey ? { prompt_cache_key: request.promptCacheKey } : {}),
|
||||||
...(options.include ? { include: options.include } : {}),
|
...(options.include ? { include: options.include } : {}),
|
||||||
...(options.reasoningEffort || options.reasoningSummary
|
...(options.reasoningEffort || options.reasoningSummary
|
||||||
? { reasoning: { effort: options.reasoningEffort, summary: options.reasoningSummary } }
|
? { reasoning: { effort: options.reasoningEffort, summary: options.reasoningSummary } }
|
||||||
|
|||||||
@@ -132,6 +132,7 @@ export const bodyFields = {
|
|||||||
stream: Schema.Literal(true),
|
stream: Schema.Literal(true),
|
||||||
stream_options: Schema.optional(Schema.Struct({ include_usage: Schema.Boolean })),
|
stream_options: Schema.optional(Schema.Struct({ include_usage: Schema.Boolean })),
|
||||||
store: Schema.optional(Schema.Boolean),
|
store: Schema.optional(Schema.Boolean),
|
||||||
|
prompt_cache_key: Schema.optional(Schema.String),
|
||||||
reasoning_effort: Schema.optional(OpenAIOptions.OpenAIReasoningEffort),
|
reasoning_effort: Schema.optional(OpenAIOptions.OpenAIReasoningEffort),
|
||||||
max_completion_tokens: Schema.optional(Schema.Number),
|
max_completion_tokens: Schema.optional(Schema.Number),
|
||||||
max_tokens: Schema.optional(Schema.Number),
|
max_tokens: Schema.optional(Schema.Number),
|
||||||
@@ -509,6 +510,7 @@ const lowerOptions = (request: LLMRequest) => {
|
|||||||
const options = OpenAIOptions.resolve(request)
|
const options = OpenAIOptions.resolve(request)
|
||||||
return {
|
return {
|
||||||
...(options.store !== undefined ? { store: options.store } : {}),
|
...(options.store !== undefined ? { store: options.store } : {}),
|
||||||
|
...(request.promptCacheKey ? { prompt_cache_key: request.promptCacheKey } : {}),
|
||||||
...(options.reasoningEffort ? { reasoning_effort: options.reasoningEffort } : {}),
|
...(options.reasoningEffort ? { reasoning_effort: options.reasoningEffort } : {}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,37 +61,57 @@ const emptyObjectSchema = (schema: Record<string, unknown>) =>
|
|||||||
(!isRecord(schema.properties) || Object.keys(schema.properties).length === 0) &&
|
(!isRecord(schema.properties) || Object.keys(schema.properties).length === 0) &&
|
||||||
!schema.additionalProperties
|
!schema.additionalProperties
|
||||||
|
|
||||||
const projectNode = (schema: unknown): Record<string, unknown> | undefined => {
|
const projectNode = (schema: unknown, nested = false): Record<string, unknown> | undefined => {
|
||||||
if (!isRecord(schema)) return undefined
|
if (!isRecord(schema)) return undefined
|
||||||
if (emptyObjectSchema(schema)) return undefined
|
if (!nested && emptyObjectSchema(schema)) return undefined
|
||||||
return Object.fromEntries(
|
const types = Array.isArray(schema.type) ? schema.type.filter((type) => type !== "null") : undefined
|
||||||
|
const anyOf = Array.isArray(schema.anyOf) ? schema.anyOf : undefined
|
||||||
|
const hasNullAnyOf = anyOf?.some((item) => isRecord(item) && item.type === "null") ?? false
|
||||||
|
const anyOfTypes = hasNullAnyOf ? anyOf?.filter((item) => !isRecord(item) || item.type !== "null") : anyOf
|
||||||
|
const flattenedAnyOf = hasNullAnyOf && anyOfTypes?.length === 1 ? projectNode(anyOfTypes[0], true) : undefined
|
||||||
|
const result = Object.fromEntries(
|
||||||
[
|
[
|
||||||
["description", schema.description],
|
["description", schema.description],
|
||||||
["required", schema.required],
|
["required", schema.required],
|
||||||
["format", schema.format],
|
["format", schema.format],
|
||||||
["type", Array.isArray(schema.type) ? schema.type.filter((type) => type !== "null")[0] : schema.type],
|
["type", types ? (types.length === 0 ? "null" : undefined) : schema.type],
|
||||||
["nullable", Array.isArray(schema.type) && schema.type.includes("null") ? true : undefined],
|
[
|
||||||
|
"nullable",
|
||||||
|
(Array.isArray(schema.type) && schema.type.includes("null") && types && types.length > 0) || hasNullAnyOf
|
||||||
|
? true
|
||||||
|
: undefined,
|
||||||
|
],
|
||||||
["enum", schema.const !== undefined ? [schema.const] : schema.enum],
|
["enum", schema.const !== undefined ? [schema.const] : schema.enum],
|
||||||
[
|
[
|
||||||
"properties",
|
"properties",
|
||||||
isRecord(schema.properties)
|
isRecord(schema.properties)
|
||||||
? Object.fromEntries(Object.entries(schema.properties).map(([key, value]) => [key, projectNode(value)]))
|
? Object.fromEntries(Object.entries(schema.properties).map(([key, value]) => [key, projectNode(value, true)]))
|
||||||
: undefined,
|
: undefined,
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"items",
|
"items",
|
||||||
Array.isArray(schema.items)
|
Array.isArray(schema.items)
|
||||||
? schema.items.map(projectNode)
|
? schema.items.map((item) => projectNode(item, true))
|
||||||
: schema.items === undefined
|
: schema.items === undefined
|
||||||
? undefined
|
? undefined
|
||||||
: projectNode(schema.items),
|
: projectNode(schema.items, true),
|
||||||
],
|
],
|
||||||
["allOf", Array.isArray(schema.allOf) ? schema.allOf.map(projectNode) : undefined],
|
["allOf", Array.isArray(schema.allOf) ? schema.allOf.map((item) => projectNode(item, true)) : undefined],
|
||||||
["anyOf", Array.isArray(schema.anyOf) ? schema.anyOf.map(projectNode) : undefined],
|
[
|
||||||
["oneOf", Array.isArray(schema.oneOf) ? schema.oneOf.map(projectNode) : undefined],
|
"anyOf",
|
||||||
|
anyOfTypes
|
||||||
|
? hasNullAnyOf && anyOfTypes.length === 1
|
||||||
|
? undefined
|
||||||
|
: anyOfTypes.map((item) => projectNode(item, true))
|
||||||
|
: types && types.length > 0
|
||||||
|
? types.map((type) => ({ type }))
|
||||||
|
: undefined,
|
||||||
|
],
|
||||||
|
["oneOf", Array.isArray(schema.oneOf) ? schema.oneOf.map((item) => projectNode(item, true)) : undefined],
|
||||||
["minLength", schema.minLength],
|
["minLength", schema.minLength],
|
||||||
].filter((entry) => entry[1] !== undefined),
|
].filter((entry) => entry[1] !== undefined),
|
||||||
)
|
)
|
||||||
|
return flattenedAnyOf ? { ...result, ...flattenedAnyOf } : result
|
||||||
}
|
}
|
||||||
|
|
||||||
export const convert = (schema: unknown) => projectNode(sanitizeNode(schema))
|
export const convert = (schema: unknown) => projectNode(sanitizeNode(schema))
|
||||||
|
|||||||
@@ -33,7 +33,6 @@ export const ServiceTierSchema = Schema.Literals(ServiceTiers)
|
|||||||
export interface Resolved {
|
export interface Resolved {
|
||||||
readonly instructions?: string
|
readonly instructions?: string
|
||||||
readonly store?: boolean
|
readonly store?: boolean
|
||||||
readonly promptCacheKey?: string
|
|
||||||
readonly reasoningEffort?: string
|
readonly reasoningEffort?: string
|
||||||
readonly reasoningSummary?: "auto" | "concise" | "detailed"
|
readonly reasoningSummary?: "auto" | "concise" | "detailed"
|
||||||
readonly include?: ReadonlyArray<ResponseIncludable>
|
readonly include?: ReadonlyArray<ResponseIncludable>
|
||||||
@@ -50,7 +49,6 @@ export const resolve = (request: LLMRequest): Resolved => {
|
|||||||
return {
|
return {
|
||||||
instructions: typeof input?.instructions === "string" ? input.instructions : undefined,
|
instructions: typeof input?.instructions === "string" ? input.instructions : undefined,
|
||||||
store: typeof input?.store === "boolean" ? input.store : undefined,
|
store: typeof input?.store === "boolean" ? input.store : undefined,
|
||||||
promptCacheKey: typeof input?.promptCacheKey === "string" ? input.promptCacheKey : undefined,
|
|
||||||
reasoningEffort: typeof input?.reasoningEffort === "string" ? input.reasoningEffort : undefined,
|
reasoningEffort: typeof input?.reasoningEffort === "string" ? input.reasoningEffort : undefined,
|
||||||
reasoningSummary:
|
reasoningSummary:
|
||||||
reasoningSummary === "auto" || reasoningSummary === "concise" || reasoningSummary === "detailed"
|
reasoningSummary === "auto" || reasoningSummary === "concise" || reasoningSummary === "detailed"
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ export interface OpenResponsesOptionsInput {
|
|||||||
readonly [key: string]: unknown
|
readonly [key: string]: unknown
|
||||||
readonly instructions?: string
|
readonly instructions?: string
|
||||||
readonly store?: boolean
|
readonly store?: boolean
|
||||||
readonly promptCacheKey?: string
|
|
||||||
readonly reasoningEffort?: ReasoningEffort
|
readonly reasoningEffort?: ReasoningEffort
|
||||||
readonly reasoningSummary?: "auto" | "concise" | "detailed"
|
readonly reasoningSummary?: "auto" | "concise" | "detailed"
|
||||||
readonly include?: ReadonlyArray<ResponseIncludable>
|
readonly include?: ReadonlyArray<ResponseIncludable>
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ const openAIProviderOptions = (options: OpenAIOptionsInput | undefined): Provide
|
|||||||
const openai = Object.fromEntries(
|
const openai = Object.fromEntries(
|
||||||
definedEntries({
|
definedEntries({
|
||||||
store: options?.store,
|
store: options?.store,
|
||||||
promptCacheKey: options?.promptCacheKey,
|
|
||||||
reasoningEffort: options?.reasoningEffort,
|
reasoningEffort: options?.reasoningEffort,
|
||||||
reasoningSummary: options?.reasoningSummary,
|
reasoningSummary: options?.reasoningSummary,
|
||||||
include: options?.include,
|
include: options?.include,
|
||||||
|
|||||||
@@ -55,7 +55,6 @@ export interface OpenRouterOptions {
|
|||||||
readonly debug?: Readonly<{ echo_upstream_body?: boolean }>
|
readonly debug?: Readonly<{ echo_upstream_body?: boolean }>
|
||||||
readonly models?: ReadonlyArray<string>
|
readonly models?: ReadonlyArray<string>
|
||||||
readonly plugins?: ReadonlyArray<OpenRouterPlugin>
|
readonly plugins?: ReadonlyArray<OpenRouterPlugin>
|
||||||
readonly promptCacheKey?: string
|
|
||||||
readonly provider?: OpenRouterProviderRouting
|
readonly provider?: OpenRouterProviderRouting
|
||||||
readonly reasoning?: Readonly<{
|
readonly reasoning?: Readonly<{
|
||||||
enabled?: boolean
|
enabled?: boolean
|
||||||
@@ -122,6 +121,7 @@ export const protocol = Protocol.make({
|
|||||||
...body,
|
...body,
|
||||||
messages,
|
messages,
|
||||||
...bodyOptions(request.providerOptions?.openrouter),
|
...bodyOptions(request.providerOptions?.openrouter),
|
||||||
|
...(request.promptCacheKey ? { prompt_cache_key: request.promptCacheKey } : {}),
|
||||||
} as OpenRouterBody
|
} as OpenRouterBody
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
@@ -161,7 +161,6 @@ const bodyOptions = (input: unknown) => {
|
|||||||
...(isRecord(debug) ? { debug } : {}),
|
...(isRecord(debug) ? { debug } : {}),
|
||||||
...(typeof user === "string" ? { user } : {}),
|
...(typeof user === "string" ? { user } : {}),
|
||||||
...(isRecord(reasoning) ? { reasoning } : {}),
|
...(isRecord(reasoning) ? { reasoning } : {}),
|
||||||
...(typeof promptCacheKey === "string" ? { prompt_cache_key: promptCacheKey } : {}),
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,6 +47,8 @@ const chatRoute = Route.make({
|
|||||||
protocol: OpenAIChat.protocol,
|
protocol: OpenAIChat.protocol,
|
||||||
endpoint: Endpoint.path("/chat/completions", { baseURL: OpenAICompatibleProfiles.profiles.xai.baseURL }),
|
endpoint: Endpoint.path("/chat/completions", { baseURL: OpenAICompatibleProfiles.profiles.xai.baseURL }),
|
||||||
transport: OpenAICompatibleChat.route.transport,
|
transport: OpenAICompatibleChat.route.transport,
|
||||||
|
headers: ({ request }): Record<string, string> =>
|
||||||
|
request.promptCacheKey ? { "x-grok-conv-id": request.promptCacheKey } : {},
|
||||||
})
|
})
|
||||||
|
|
||||||
export const routes = [responsesRoute, chatRoute]
|
export const routes = [responsesRoute, chatRoute]
|
||||||
|
|||||||
@@ -272,6 +272,8 @@ export class LLMRequest extends Schema.Class<LLMRequest>("LLM.Request")({
|
|||||||
providerOptions: Schema.optional(ProviderOptions),
|
providerOptions: Schema.optional(ProviderOptions),
|
||||||
http: Schema.optional(HttpOptions),
|
http: Schema.optional(HttpOptions),
|
||||||
cache: Schema.optional(CachePolicy),
|
cache: Schema.optional(CachePolicy),
|
||||||
|
// Stable cache affinity for protocols that support provider-managed prompt caching.
|
||||||
|
promptCacheKey: Schema.optional(Schema.String),
|
||||||
metadata: Schema.optional(Schema.Record(Schema.String, Schema.Unknown)),
|
metadata: Schema.optional(Schema.Record(Schema.String, Schema.Unknown)),
|
||||||
}) {}
|
}) {}
|
||||||
|
|
||||||
@@ -289,6 +291,7 @@ export namespace LLMRequest {
|
|||||||
providerOptions: request.providerOptions,
|
providerOptions: request.providerOptions,
|
||||||
http: request.http,
|
http: request.http,
|
||||||
cache: request.cache,
|
cache: request.cache,
|
||||||
|
promptCacheKey: request.promptCacheKey,
|
||||||
metadata: request.metadata,
|
metadata: request.metadata,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
@@ -3,11 +3,11 @@ import { CloudflareWorkersAI } from "../../src/providers"
|
|||||||
|
|
||||||
const model = CloudflareWorkersAI.configure({ accountId: "account", apiKey: "test" }).model("model")
|
const model = CloudflareWorkersAI.configure({ accountId: "account", apiKey: "test" }).model("model")
|
||||||
|
|
||||||
LLM.request({ model, prompt: "Hello", providerOptions: { openai: { promptCacheKey: "cache" } } })
|
LLM.request({ model, prompt: "Hello", promptCacheKey: "cache" })
|
||||||
|
|
||||||
LLM.request({
|
LLM.request({
|
||||||
model,
|
model,
|
||||||
prompt: "Hello",
|
prompt: "Hello",
|
||||||
// @ts-expect-error Cloudflare's OpenAI-compatible prompt cache key must be a string.
|
// @ts-expect-error Prompt cache keys must be strings.
|
||||||
providerOptions: { openai: { promptCacheKey: 1 } },
|
promptCacheKey: 1,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -16,6 +16,13 @@ const model = Gemini.route
|
|||||||
})
|
})
|
||||||
.model({ id: "gemini-2.5-flash" })
|
.model({ id: "gemini-2.5-flash" })
|
||||||
|
|
||||||
|
const gemini3 = Gemini.route
|
||||||
|
.with({
|
||||||
|
endpoint: { baseURL: "https://generativelanguage.test/v1beta/" },
|
||||||
|
auth: Auth.header("x-goog-api-key", "test"),
|
||||||
|
})
|
||||||
|
.model({ id: "gemini-3-flash-preview" })
|
||||||
|
|
||||||
const request = LLM.request({
|
const request = LLM.request({
|
||||||
id: "req_1",
|
id: "req_1",
|
||||||
model,
|
model,
|
||||||
@@ -86,6 +93,39 @@ describe("Gemini route", () => {
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
it.effect("forwards standard Gemini generation options", () =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const prepared = yield* compileRequest(
|
||||||
|
LLM.request({
|
||||||
|
model,
|
||||||
|
prompt: "Say hello.",
|
||||||
|
generation: {
|
||||||
|
maxTokens: 40,
|
||||||
|
temperature: 0.2,
|
||||||
|
topP: 0.8,
|
||||||
|
topK: 12,
|
||||||
|
frequencyPenalty: 0.3,
|
||||||
|
presencePenalty: 0.4,
|
||||||
|
seed: 42,
|
||||||
|
stop: ["done"],
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(prepared.body.generationConfig).toEqual({
|
||||||
|
maxOutputTokens: 40,
|
||||||
|
temperature: 0.2,
|
||||||
|
topP: 0.8,
|
||||||
|
topK: 12,
|
||||||
|
frequencyPenalty: 0.3,
|
||||||
|
presencePenalty: 0.4,
|
||||||
|
seed: 42,
|
||||||
|
stopSequences: ["done"],
|
||||||
|
thinkingConfig: undefined,
|
||||||
|
})
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
it.effect("lowers chronological system updates to wrapped user text in order", () =>
|
it.effect("lowers chronological system updates to wrapped user text in order", () =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const prepared = yield* compileRequest(
|
const prepared = yield* compileRequest(
|
||||||
@@ -350,6 +390,100 @@ describe("Gemini route", () => {
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
it.effect("preserves nested empty object tool schemas", () =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const prepared = yield* compileRequest(
|
||||||
|
LLM.request({
|
||||||
|
model,
|
||||||
|
prompt: "Use the tool.",
|
||||||
|
tools: [
|
||||||
|
{
|
||||||
|
name: "configure",
|
||||||
|
description: "Configure the operation",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object",
|
||||||
|
required: ["options"],
|
||||||
|
properties: {
|
||||||
|
options: { type: "object", description: "Optional provider settings", properties: {} },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(prepared.body.tools).toEqual([
|
||||||
|
{
|
||||||
|
functionDeclarations: [
|
||||||
|
{
|
||||||
|
name: "configure",
|
||||||
|
description: "Configure the operation",
|
||||||
|
parameters: {
|
||||||
|
type: "object",
|
||||||
|
required: ["options"],
|
||||||
|
properties: {
|
||||||
|
options: { type: "object", description: "Optional provider settings", properties: {} },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
])
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
it.effect("projects Gemini type arrays without narrowing their allowed values", () =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const prepared = yield* compileRequest(
|
||||||
|
LLM.request({
|
||||||
|
model,
|
||||||
|
prompt: "Use the tool.",
|
||||||
|
tools: [
|
||||||
|
{
|
||||||
|
name: "filter",
|
||||||
|
description: "Filter values",
|
||||||
|
inputSchema: {
|
||||||
|
type: "object",
|
||||||
|
properties: {
|
||||||
|
status: { type: ["number", "string"], description: "Status filter" },
|
||||||
|
maybe: { type: ["string", "null"] },
|
||||||
|
nothing: { type: ["null"] },
|
||||||
|
explicit: { anyOf: [{ type: "string" }, { type: "null" }] },
|
||||||
|
choice: { anyOf: [{ type: "string" }, { type: "number" }, { type: "null" }] },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(prepared.body.tools?.[0]?.functionDeclarations[0]?.parameters).toEqual({
|
||||||
|
type: "object",
|
||||||
|
properties: {
|
||||||
|
status: {
|
||||||
|
description: "Status filter",
|
||||||
|
anyOf: [{ type: "number" }, { type: "string" }],
|
||||||
|
},
|
||||||
|
maybe: {
|
||||||
|
nullable: true,
|
||||||
|
anyOf: [{ type: "string" }],
|
||||||
|
},
|
||||||
|
nothing: {
|
||||||
|
type: "null",
|
||||||
|
},
|
||||||
|
explicit: {
|
||||||
|
type: "string",
|
||||||
|
nullable: true,
|
||||||
|
},
|
||||||
|
choice: {
|
||||||
|
anyOf: [{ type: "string" }, { type: "number" }],
|
||||||
|
nullable: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
it.effect("parses text, reasoning, and usage stream fixtures", () =>
|
it.effect("parses text, reasoning, and usage stream fixtures", () =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const body = sseEvents(
|
const body = sseEvents(
|
||||||
@@ -536,6 +670,44 @@ describe("Gemini route", () => {
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
it.effect("replays unsigned Gemini 3 tool calls with the validator bypass sentinel", () =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const prepared = yield* compileRequest(
|
||||||
|
LLM.request({
|
||||||
|
model: gemini3,
|
||||||
|
messages: [
|
||||||
|
Message.assistant([ToolCallPart.make({ id: "tool_0", name: "lookup", input: { query: "weather" } })]),
|
||||||
|
Message.tool({ id: "tool_0", name: "lookup", result: "done", resultType: "text" }),
|
||||||
|
],
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(prepared.body.contents).toEqual([
|
||||||
|
{
|
||||||
|
role: "model",
|
||||||
|
parts: [
|
||||||
|
{
|
||||||
|
functionCall: { id: undefined, name: "lookup", args: { query: "weather" } },
|
||||||
|
thoughtSignature: "skip_thought_signature_validator",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
role: "user",
|
||||||
|
parts: [
|
||||||
|
{
|
||||||
|
functionResponse: {
|
||||||
|
id: undefined,
|
||||||
|
name: "lookup",
|
||||||
|
response: { name: "lookup", content: "done" },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
])
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
it.effect("emits streamed tool calls and maps finish reason", () =>
|
it.effect("emits streamed tool calls and maps finish reason", () =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const body = sseEvents({
|
const body = sseEvents({
|
||||||
|
|||||||
@@ -15,6 +15,8 @@ import {
|
|||||||
} from "../../src"
|
} from "../../src"
|
||||||
import * as Azure from "../../src/providers/azure"
|
import * as Azure from "../../src/providers/azure"
|
||||||
import * as OpenAI from "../../src/providers/openai"
|
import * as OpenAI from "../../src/providers/openai"
|
||||||
|
import * as OpenAICompatible from "../../src/providers/openai-compatible"
|
||||||
|
import * as XAI from "../../src/providers/xai"
|
||||||
import * as OpenAIChat from "../../src/protocols/openai-chat"
|
import * as OpenAIChat from "../../src/protocols/openai-chat"
|
||||||
import { ProviderShared } from "../../src/protocols/shared"
|
import { ProviderShared } from "../../src/protocols/shared"
|
||||||
import { Auth, LLMClient } from "../../src/route"
|
import { Auth, LLMClient } from "../../src/route"
|
||||||
@@ -154,6 +156,47 @@ describe("OpenAI Chat route", () => {
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
it.effect("maps the request prompt cache key", () =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const prepared = yield* compileRequest(
|
||||||
|
LLM.request({
|
||||||
|
model: OpenAICompatible.configure({
|
||||||
|
baseURL: "https://api.compatible.test/v1",
|
||||||
|
apiKey: "test",
|
||||||
|
}).model("compatible-model"),
|
||||||
|
prompt: "Hello",
|
||||||
|
promptCacheKey: "session_123",
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
expect(prepared.body.prompt_cache_key).toBe("session_123")
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
it.effect("maps the xAI Chat prompt cache key to conversation affinity", () =>
|
||||||
|
LLMClient.generate(
|
||||||
|
LLM.request({
|
||||||
|
model: XAI.configure({ apiKey: "test", baseURL: "https://api.x.ai/v1" }).chat("grok-4.5"),
|
||||||
|
prompt: "Hello",
|
||||||
|
promptCacheKey: "session_123",
|
||||||
|
}),
|
||||||
|
).pipe(
|
||||||
|
Effect.provide(
|
||||||
|
dynamicResponse((input) =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const web = yield* HttpClientRequest.toWeb(input.request).pipe(Effect.orDie)
|
||||||
|
expect(web.headers.get("x-grok-conv-id")).toBe("session_123")
|
||||||
|
const body = decodeJson(yield* Effect.promise(() => web.text()))
|
||||||
|
expect(ProviderShared.isRecord(body) ? body.prompt_cache_key : undefined).toBe("session_123")
|
||||||
|
return input.respond(sseEvents(deltaChunk({}, "stop")), {
|
||||||
|
headers: { "content-type": "text/event-stream" },
|
||||||
|
})
|
||||||
|
}),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
it.effect("passes through custom OpenAI-compatible reasoning effort strings", () =>
|
it.effect("passes through custom OpenAI-compatible reasoning effort strings", () =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const prepared = yield* compileRequest(
|
const prepared = yield* compileRequest(
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ const cacheRequest = LLM.request({
|
|||||||
system: LARGE_CACHEABLE_SYSTEM,
|
system: LARGE_CACHEABLE_SYSTEM,
|
||||||
prompt: "Say hi.",
|
prompt: "Say hi.",
|
||||||
generation: { maxTokens: 16, temperature: 0 },
|
generation: { maxTokens: 16, temperature: 0 },
|
||||||
providerOptions: { openai: { promptCacheKey: "recorded-cache-test" } },
|
promptCacheKey: "recorded-cache-test",
|
||||||
})
|
})
|
||||||
|
|
||||||
const recorded = recordedTests({
|
const recorded = recordedTests({
|
||||||
|
|||||||
@@ -682,9 +682,9 @@ describe("OpenAI Responses route", () => {
|
|||||||
LLM.request({
|
LLM.request({
|
||||||
model: OpenAI.configure({ baseURL: "https://api.openai.test/v1/", apiKey: "test" }).model("gpt-5.2"),
|
model: OpenAI.configure({ baseURL: "https://api.openai.test/v1/", apiKey: "test" }).model("gpt-5.2"),
|
||||||
prompt: "think",
|
prompt: "think",
|
||||||
|
promptCacheKey: "session_123",
|
||||||
providerOptions: {
|
providerOptions: {
|
||||||
openai: {
|
openai: {
|
||||||
promptCacheKey: "session_123",
|
|
||||||
reasoningEffort: "high",
|
reasoningEffort: "high",
|
||||||
reasoningSummary: "auto",
|
reasoningSummary: "auto",
|
||||||
include: ["reasoning.encrypted_content"],
|
include: ["reasoning.encrypted_content"],
|
||||||
@@ -803,17 +803,16 @@ describe("OpenAI Responses route", () => {
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
it.effect("request OpenAI provider options override route defaults", () =>
|
it.effect("maps the request prompt cache key", () =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const prepared = yield* compileRequest(
|
const prepared = yield* compileRequest(
|
||||||
LLM.request({
|
LLM.request({
|
||||||
model: OpenAI.configure({
|
model: OpenAI.configure({
|
||||||
baseURL: "https://api.openai.test/v1/",
|
baseURL: "https://api.openai.test/v1/",
|
||||||
apiKey: "test",
|
apiKey: "test",
|
||||||
providerOptions: { openai: { promptCacheKey: "model_cache" } },
|
|
||||||
}).model("gpt-4.1-mini"),
|
}).model("gpt-4.1-mini"),
|
||||||
prompt: "no cache",
|
prompt: "no cache",
|
||||||
providerOptions: { openai: { promptCacheKey: "request_cache" } },
|
promptCacheKey: "request_cache",
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -162,7 +162,6 @@ describe("OpenRouter", () => {
|
|||||||
openrouter: {
|
openrouter: {
|
||||||
usage: true,
|
usage: true,
|
||||||
reasoning: { effort: "high" },
|
reasoning: { effort: "high" },
|
||||||
promptCacheKey: "session_123",
|
|
||||||
models: ["anthropic/claude-sonnet-4.6", "google/gemini-3.1-pro"],
|
models: ["anthropic/claude-sonnet-4.6", "google/gemini-3.1-pro"],
|
||||||
provider: { order: ["anthropic", "google"], require_parameters: true },
|
provider: { order: ["anthropic", "google"], require_parameters: true },
|
||||||
plugins: [{ id: "response-healing" }],
|
plugins: [{ id: "response-healing" }],
|
||||||
@@ -174,6 +173,7 @@ describe("OpenRouter", () => {
|
|||||||
},
|
},
|
||||||
}).model("anthropic/claude-3.7-sonnet:thinking"),
|
}).model("anthropic/claude-3.7-sonnet:thinking"),
|
||||||
prompt: "Think briefly.",
|
prompt: "Think briefly.",
|
||||||
|
promptCacheKey: "session_123",
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -688,6 +688,8 @@ export default function Page() {
|
|||||||
return {
|
return {
|
||||||
queryKey: [...vcsKey(), mode] as const,
|
queryKey: [...vcsKey(), mode] as const,
|
||||||
enabled,
|
enabled,
|
||||||
|
refetchOnMount: "always" as const,
|
||||||
|
refetchOnWindowFocus: true,
|
||||||
queryFn: mode
|
queryFn: mode
|
||||||
? () =>
|
? () =>
|
||||||
sdk()
|
sdk()
|
||||||
@@ -701,6 +703,16 @@ export default function Page() {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
const refreshVcs = debounce(() => void queryClient.invalidateQueries({ queryKey: vcsKey() }), 100)
|
const refreshVcs = debounce(() => void queryClient.invalidateQueries({ queryKey: vcsKey() }), 100)
|
||||||
|
createEffect(
|
||||||
|
on(
|
||||||
|
() => desktopReviewOpen() || mobileChanges(),
|
||||||
|
(open, previous) => {
|
||||||
|
if (!open || previous || !desktopFileTreeOpen() || vcsQuery.isFetching) return
|
||||||
|
refreshVcs()
|
||||||
|
},
|
||||||
|
{ defer: true },
|
||||||
|
),
|
||||||
|
)
|
||||||
const reviewDiffs = () => {
|
const reviewDiffs = () => {
|
||||||
if (reviewMode() === "git" || reviewMode() === "branch")
|
if (reviewMode() === "git" || reviewMode() === "branch")
|
||||||
// avoids suspense
|
// avoids suspense
|
||||||
@@ -947,19 +959,6 @@ export default function Page() {
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
const stopVcs = sdk().event.listen((evt) => {
|
|
||||||
const details = evt.details as { type: string; properties?: unknown }
|
|
||||||
if (details.type !== "file.watcher.updated" && details.type !== "filesystem.changed") return
|
|
||||||
const props =
|
|
||||||
typeof details.properties === "object" && details.properties
|
|
||||||
? (details.properties as Record<string, unknown>)
|
|
||||||
: undefined
|
|
||||||
const file = typeof props?.file === "string" ? props.file : undefined
|
|
||||||
if (!file || file.startsWith(".git/")) return
|
|
||||||
refreshVcs()
|
|
||||||
})
|
|
||||||
onCleanup(stopVcs)
|
|
||||||
|
|
||||||
createEffect(
|
createEffect(
|
||||||
on(
|
on(
|
||||||
() => sdk().directory,
|
() => sdk().directory,
|
||||||
|
|||||||
@@ -22,5 +22,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": ["src", "package.json"],
|
"include": ["src", "package.json"],
|
||||||
"exclude": ["dist", "ts-dist"]
|
"exclude": ["dist", "ts-dist"],
|
||||||
|
"references": [{ "path": "../core" }]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
"fix-node-pty": "bun run script/fix-node-pty.ts",
|
"fix-node-pty": "bun run script/fix-node-pty.ts",
|
||||||
"benchmark:location": "bun run script/benchmark-location.ts",
|
"benchmark:location": "bun run script/benchmark-location.ts",
|
||||||
"test": "bun test --only-failures",
|
"test": "bun test --only-failures",
|
||||||
"typecheck": "tsgo --noEmit"
|
"typecheck": "tsgo -b tsconfig.json tsconfig.tests.json"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"opencode": "./bin/opencode"
|
"opencode": "./bin/opencode"
|
||||||
@@ -118,6 +118,7 @@
|
|||||||
"immer": "11.1.4",
|
"immer": "11.1.4",
|
||||||
"ignore": "7.0.5",
|
"ignore": "7.0.5",
|
||||||
"jsonc-parser": "3.3.1",
|
"jsonc-parser": "3.3.1",
|
||||||
|
"mime-types": "3.0.2",
|
||||||
"turndown": "7.2.0",
|
"turndown": "7.2.0",
|
||||||
"tree-sitter-bash": "0.25.0",
|
"tree-sitter-bash": "0.25.0",
|
||||||
"tree-sitter-powershell": "0.25.10",
|
"tree-sitter-powershell": "0.25.10",
|
||||||
|
|||||||
@@ -132,14 +132,16 @@ function renderMigration(name: string, sql: string) {
|
|||||||
return `import { Effect } from "effect"
|
return `import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: ${JSON.stringify(name)},
|
id: ${JSON.stringify(name)},
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
${renderStatements(sql)}
|
${renderStatements(sql)}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -147,13 +149,15 @@ function renderSchema(sql: string) {
|
|||||||
return `import { Effect } from "effect"
|
return `import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "./migration"
|
import type { DatabaseMigration } from "./migration"
|
||||||
|
|
||||||
export default {
|
const schema: Omit<DatabaseMigration.Migration, "id"> = {
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
${renderStatements(sql)}
|
${renderStatements(sql)}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies Omit<DatabaseMigration.Migration, "id">
|
}
|
||||||
|
|
||||||
|
export default schema
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -191,10 +195,10 @@ async function formatTypescript(input: string) {
|
|||||||
function renderRegistry(names: string[]) {
|
function renderRegistry(names: string[]) {
|
||||||
return `import type { DatabaseMigration } from "./migration"
|
return `import type { DatabaseMigration } from "./migration"
|
||||||
|
|
||||||
export const migrations = (
|
export const migrations: DatabaseMigration.Migration[] = (
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
${names.map((name) => ` import("./migration/${name}"),`).join("\n")}
|
${names.map((name) => ` import("./migration/${name}"),`).join("\n")}
|
||||||
])
|
])
|
||||||
).map((module) => module.default) satisfies DatabaseMigration.Migration[]
|
).map((module) => module.default)
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -263,6 +263,7 @@ function mapOpenRouterOptions(settings: Readonly<Record<string, unknown>>) {
|
|||||||
"extraBody",
|
"extraBody",
|
||||||
"fetch",
|
"fetch",
|
||||||
"headers",
|
"headers",
|
||||||
|
"promptCacheKey",
|
||||||
"timeout",
|
"timeout",
|
||||||
].includes(key),
|
].includes(key),
|
||||||
),
|
),
|
||||||
@@ -279,7 +280,6 @@ function mapXAIOptions(settings: Readonly<Record<string, unknown>>) {
|
|||||||
const options = {
|
const options = {
|
||||||
...(typeof settings.reasoningEffort === "string" ? { reasoningEffort: settings.reasoningEffort } : {}),
|
...(typeof settings.reasoningEffort === "string" ? { reasoningEffort: settings.reasoningEffort } : {}),
|
||||||
...(typeof settings.store === "boolean" ? { store: settings.store } : {}),
|
...(typeof settings.store === "boolean" ? { store: settings.store } : {}),
|
||||||
...(typeof settings.promptCacheKey === "string" ? { promptCacheKey: settings.promptCacheKey } : {}),
|
|
||||||
}
|
}
|
||||||
if (Object.keys(options).length === 0) return {}
|
if (Object.keys(options).length === 0) return {}
|
||||||
return { providerOptions: { xai: options } }
|
return { providerOptions: { xai: options } }
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ ${render(current)}`
|
|||||||
const key = Instructions.Key.make("core/codemode")
|
const key = Instructions.Key.make("core/codemode")
|
||||||
const codec = Schema.toCodecJson(CodeModeCatalog.Summary)
|
const codec = Schema.toCodecJson(CodeModeCatalog.Summary)
|
||||||
|
|
||||||
export const make = (entries?: ReadonlyArray<CodeModeCatalog.Entry>): Instructions.Instructions => {
|
export const make = (entries?: ReadonlyArray<CodeModeCatalog.Entry>): Instructions.List => {
|
||||||
const catalog = entries === undefined ? Instructions.removed : CodeModeCatalog.summarize(entries)
|
const catalog = entries === undefined ? Instructions.removed : CodeModeCatalog.summarize(entries)
|
||||||
return Instructions.make({
|
return Instructions.make({
|
||||||
key,
|
key,
|
||||||
|
|||||||
@@ -13,12 +13,14 @@ export const Plugin = define({
|
|||||||
const config = yield* Config.Service
|
const config = yield* Config.Service
|
||||||
const loaded = { entries: yield* config.entries() }
|
const loaded = { entries: yield* config.entries() }
|
||||||
yield* ctx.integration.transform((integrations) => {
|
yield* ctx.integration.transform((integrations) => {
|
||||||
const configuredIntegrations = new Set(
|
|
||||||
configuredProviders(loaded.entries).flatMap(([id, provider]) => (provider.env === undefined ? [] : [id])),
|
|
||||||
)
|
|
||||||
for (const [id, provider] of configuredProviders(loaded.entries)) {
|
for (const [id, provider] of configuredProviders(loaded.entries)) {
|
||||||
const integrationID = id
|
const integrationID = id
|
||||||
if (!configuredIntegrations.has(id) && !integrations.get(integrationID)) continue
|
if (!integrations.get(integrationID)) {
|
||||||
|
integrations.method.update({
|
||||||
|
integrationID,
|
||||||
|
method: { type: "key", label: "Manually enter API Key" },
|
||||||
|
})
|
||||||
|
}
|
||||||
integrations.update(integrationID, (integration) => {
|
integrations.update(integrationID, (integration) => {
|
||||||
integration.name = provider.name ?? integration.name
|
integration.name = provider.name ?? integration.name
|
||||||
})
|
})
|
||||||
|
|||||||
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
import type { DatabaseMigration } from "./migration"
|
import type { DatabaseMigration } from "./migration"
|
||||||
|
|
||||||
export const migrations = (
|
export const migrations: DatabaseMigration.Migration[] = (
|
||||||
await Promise.all([
|
await Promise.all([
|
||||||
import("./migration/20260127222353_familiar_lady_ursula"),
|
import("./migration/20260127222353_familiar_lady_ursula"),
|
||||||
import("./migration/20260211171708_add_project_commands"),
|
import("./migration/20260211171708_add_project_commands"),
|
||||||
@@ -43,4 +43,4 @@ export const migrations = (
|
|||||||
import("./migration/20260804233008_loose_psylocke"),
|
import("./migration/20260804233008_loose_psylocke"),
|
||||||
import("./migration/20260805200742_import_legacy_credentials"),
|
import("./migration/20260805200742_import_legacy_credentials"),
|
||||||
])
|
])
|
||||||
).map((module) => module.default) satisfies DatabaseMigration.Migration[]
|
).map((module) => module.default)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260127222353_familiar_lady_ursula",
|
id: "20260127222353_familiar_lady_ursula",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -104,4 +104,6 @@ export default {
|
|||||||
yield* tx.run(`CREATE INDEX \`todo_session_idx\` ON \`todo\` (\`session_id\`);`)
|
yield* tx.run(`CREATE INDEX \`todo_session_idx\` ON \`todo\` (\`session_id\`);`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260211171708_add_project_commands",
|
id: "20260211171708_add_project_commands",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
yield* tx.run(`ALTER TABLE \`project\` ADD \`commands\` text;`)
|
yield* tx.run(`ALTER TABLE \`project\` ADD \`commands\` text;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260213144116_wakeful_the_professor",
|
id: "20260213144116_wakeful_the_professor",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -20,4 +20,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260225215848_workspace",
|
id: "20260225215848_workspace",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -16,4 +16,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260227213759_add_session_workspace_id",
|
id: "20260227213759_add_session_workspace_id",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -9,4 +9,6 @@ export default {
|
|||||||
yield* tx.run(`CREATE INDEX \`session_workspace_idx\` ON \`session\` (\`workspace_id\`);`)
|
yield* tx.run(`CREATE INDEX \`session_workspace_idx\` ON \`session\` (\`workspace_id\`);`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260228203230_blue_harpoon",
|
id: "20260228203230_blue_harpoon",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -27,4 +27,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260303231226_add_workspace_fields",
|
id: "20260303231226_add_workspace_fields",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -12,4 +12,6 @@ export default {
|
|||||||
yield* tx.run(`ALTER TABLE \`workspace\` DROP COLUMN \`config\`;`)
|
yield* tx.run(`ALTER TABLE \`workspace\` DROP COLUMN \`config\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260309230000_move_org_to_state",
|
id: "20260309230000_move_org_to_state",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -12,4 +12,6 @@ export default {
|
|||||||
yield* tx.run(`ALTER TABLE \`account\` DROP COLUMN \`selected_org_id\`;`)
|
yield* tx.run(`ALTER TABLE \`account\` DROP COLUMN \`selected_org_id\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260312043431_session_message_cursor",
|
id: "20260312043431_session_message_cursor",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -13,4 +13,6 @@ export default {
|
|||||||
yield* tx.run(`CREATE INDEX \`part_message_id_id_idx\` ON \`part\` (\`message_id\`,\`id\`);`)
|
yield* tx.run(`CREATE INDEX \`part_message_id_id_idx\` ON \`part\` (\`message_id\`,\`id\`);`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260323234822_events",
|
id: "20260323234822_events",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -23,4 +23,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260410174513_workspace-name",
|
id: "20260410174513_workspace-name",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -26,4 +26,6 @@ export default {
|
|||||||
yield* tx.run(`PRAGMA foreign_keys=ON;`)
|
yield* tx.run(`PRAGMA foreign_keys=ON;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260413175956_chief_energizer",
|
id: "20260413175956_chief_energizer",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -21,4 +21,6 @@ export default {
|
|||||||
yield* tx.run(`CREATE INDEX \`session_entry_time_created_idx\` ON \`session_entry\` (\`time_created\`);`)
|
yield* tx.run(`CREATE INDEX \`session_entry_time_created_idx\` ON \`session_entry\` (\`time_created\`);`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260423070820_add_icon_url_override",
|
id: "20260423070820_add_icon_url_override",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -11,4 +11,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260427172553_slow_nightmare",
|
id: "20260427172553_slow_nightmare",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -27,4 +27,6 @@ export default {
|
|||||||
yield* tx.run(`DROP TABLE \`session_entry\`;`)
|
yield* tx.run(`DROP TABLE \`session_entry\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260428004200_add_session_path",
|
id: "20260428004200_add_session_path",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
yield* tx.run(`ALTER TABLE \`session\` ADD \`path\` text;`)
|
yield* tx.run(`ALTER TABLE \`session\` ADD \`path\` text;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260501142318_next_venus",
|
id: "20260501142318_next_venus",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -9,4 +9,6 @@ export default {
|
|||||||
yield* tx.run(`ALTER TABLE \`session\` ADD \`model\` text;`)
|
yield* tx.run(`ALTER TABLE \`session\` ADD \`model\` text;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260504145000_add_sync_owner",
|
id: "20260504145000_add_sync_owner",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
yield* tx.run(`ALTER TABLE \`event_sequence\` ADD \`owner_id\` text;`)
|
yield* tx.run(`ALTER TABLE \`event_sequence\` ADD \`owner_id\` text;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260507164347_add_workspace_time",
|
id: "20260507164347_add_workspace_time",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
yield* tx.run(`ALTER TABLE \`workspace\` ADD \`time_used\` integer NOT NULL DEFAULT 0;`)
|
yield* tx.run(`ALTER TABLE \`workspace\` ADD \`time_used\` integer NOT NULL DEFAULT 0;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260510033149_session_usage",
|
id: "20260510033149_session_usage",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -53,4 +53,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260511000411_data_migration_state",
|
id: "20260511000411_data_migration_state",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -13,4 +13,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260511173437_session-metadata",
|
id: "20260511173437_session-metadata",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -13,4 +13,6 @@ export default {
|
|||||||
yield* tx.run(`ALTER TABLE \`session\` ADD \`metadata\` text;`)
|
yield* tx.run(`ALTER TABLE \`session\` ADD \`metadata\` text;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260601010001_normalize_storage_paths",
|
id: "20260601010001_normalize_storage_paths",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -19,4 +19,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260601202201_amazing_prowler",
|
id: "20260601202201_amazing_prowler",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
yield* tx.run(`DROP TABLE \`permission\`;`)
|
yield* tx.run(`DROP TABLE \`permission\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260602002951_lowly_union_jack",
|
id: "20260602002951_lowly_union_jack",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -21,4 +21,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260602182828_add_project_directories",
|
id: "20260602182828_add_project_directories",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -17,4 +17,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
+4
-2
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260603001617_session_message_projection_indexes",
|
id: "20260603001617_session_message_projection_indexes",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -16,4 +16,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
+4
-2
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260603040000_session_message_projection_order",
|
id: "20260603040000_session_message_projection_order",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -16,4 +16,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260603141458_session_input_inbox",
|
id: "20260603141458_session_input_inbox",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -22,4 +22,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260603160727_jittery_ezekiel_stane",
|
id: "20260603160727_jittery_ezekiel_stane",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -17,4 +17,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260604172448_event_sourced_session_input",
|
id: "20260604172448_event_sourced_session_input",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -44,4 +44,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260605003541_add_session_context_snapshot",
|
id: "20260605003541_add_session_context_snapshot",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -18,4 +18,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260605042240_add_context_epoch_agent",
|
id: "20260605042240_add_context_epoch_agent",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
yield* tx.run(`ALTER TABLE \`session_context_epoch\` ADD \`agent\` text DEFAULT 'build' NOT NULL;`)
|
yield* tx.run(`ALTER TABLE \`session_context_epoch\` ADD \`agent\` text DEFAULT 'build' NOT NULL;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260611035744_credential",
|
id: "20260611035744_credential",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -22,4 +22,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260611192811_lush_chimera",
|
id: "20260611192811_lush_chimera",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -22,4 +22,6 @@ export default {
|
|||||||
`)
|
`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260612174303_project_dir_strategy",
|
id: "20260612174303_project_dir_strategy",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -26,4 +26,6 @@ export default {
|
|||||||
yield* tx.run(`PRAGMA foreign_keys=ON;`)
|
yield* tx.run(`PRAGMA foreign_keys=ON;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
+4
-2
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260622142730_simplify_session_context_epoch",
|
id: "20260622142730_simplify_session_context_epoch",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -10,4 +10,6 @@ export default {
|
|||||||
yield* tx.run(`ALTER TABLE \`session_context_epoch\` DROP COLUMN \`revision\`;`)
|
yield* tx.run(`ALTER TABLE \`session_context_epoch\` DROP COLUMN \`revision\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260622170816_reset_v2_session_state",
|
id: "20260622170816_reset_v2_session_state",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -12,4 +12,6 @@ export default {
|
|||||||
yield* tx.run(`DELETE FROM \`event_sequence\`;`)
|
yield* tx.run(`DELETE FROM \`event_sequence\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260622202450_simplify_session_input",
|
id: "20260622202450_simplify_session_input",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -14,4 +14,6 @@ export default {
|
|||||||
yield* tx.run(`DELETE FROM \`workspace\`;`)
|
yield* tx.run(`DELETE FROM \`workspace\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "../migration"
|
import type { DatabaseMigration } from "../migration"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260804233008_loose_psylocke",
|
id: "20260804233008_loose_psylocke",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
@@ -135,4 +135,6 @@ export default {
|
|||||||
yield* tx.run(`DROP TABLE \`session_input\`;`)
|
yield* tx.run(`DROP TABLE \`session_input\`;`)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|||||||
@@ -30,12 +30,14 @@ const decodeJson = Schema.decodeUnknownOption(Schema.UnknownFromJsonString)
|
|||||||
const decodeValue = Schema.decodeUnknownOption(LegacyValue)
|
const decodeValue = Schema.decodeUnknownOption(LegacyValue)
|
||||||
const wellKnownSourcesKey = "wellknown:sources"
|
const wellKnownSourcesKey = "wellknown:sources"
|
||||||
|
|
||||||
export default {
|
const migration: DatabaseMigration.Migration = {
|
||||||
id: "20260805200742_import_legacy_credentials",
|
id: "20260805200742_import_legacy_credentials",
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return importLegacyCredentials(tx, path.join(Global.Path.data, "auth.json"))
|
return importLegacyCredentials(tx, path.join(Global.Path.data, "auth.json"))
|
||||||
},
|
},
|
||||||
} satisfies DatabaseMigration.Migration
|
}
|
||||||
|
|
||||||
|
export default migration
|
||||||
|
|
||||||
export function importLegacyCredentials(tx: Parameters<DatabaseMigration.Migration["up"]>[0], filepath: string) {
|
export function importLegacyCredentials(tx: Parameters<DatabaseMigration.Migration["up"]>[0], filepath: string) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { Effect } from "effect"
|
import { Effect } from "effect"
|
||||||
import type { DatabaseMigration } from "./migration"
|
import type { DatabaseMigration } from "./migration"
|
||||||
|
|
||||||
export default {
|
const schema: Omit<DatabaseMigration.Migration, "id"> = {
|
||||||
up(tx) {
|
up(tx) {
|
||||||
return Effect.gen(function* () {
|
return Effect.gen(function* () {
|
||||||
yield* tx.run(`
|
yield* tx.run(`
|
||||||
@@ -248,4 +248,6 @@ export default {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
} satisfies Omit<DatabaseMigration.Migration, "id">
|
}
|
||||||
|
|
||||||
|
export default schema
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
import { CrossSpawnSpawner } from "@opencode-ai/util/cross-spawn-spawner"
|
||||||
|
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
||||||
|
import { Context, Effect, Layer } from "effect"
|
||||||
|
import { ChildProcessSpawner } from "effect/unstable/process/ChildProcessSpawner"
|
||||||
|
import type { Files } from "./files"
|
||||||
|
import { makeFiles } from "./index"
|
||||||
|
import { makeLocalDriver } from "./local"
|
||||||
|
|
||||||
|
export interface Interface {
|
||||||
|
readonly files: Files
|
||||||
|
readonly spawner: ChildProcessSpawner["Service"]
|
||||||
|
}
|
||||||
|
|
||||||
|
export class Service extends Context.Service<Service, Interface>()("@opencode/Environment") {}
|
||||||
|
|
||||||
|
const layer = Layer.effect(
|
||||||
|
Service,
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const spawner = yield* ChildProcessSpawner
|
||||||
|
return Service.of({ files: makeFiles(makeLocalDriver(spawner)), spawner })
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
export const node = makeLocationNode({ service: Service, layer, deps: [CrossSpawnSpawner.node] })
|
||||||
|
|
||||||
|
export * as EnvironmentService from "./environment"
|
||||||
@@ -50,13 +50,13 @@ fi
|
|||||||
`
|
`
|
||||||
|
|
||||||
const listScript = `
|
const listScript = `
|
||||||
${loadMetadata()}
|
${loadMetadata("-L")}
|
||||||
kind=\${metadata%%${TAB}*}
|
kind=\${metadata%%${TAB}*}
|
||||||
if [ "$kind" != directory ]; then
|
if [ "$kind" != directory ]; then
|
||||||
printf '%s' "$kind" >&2
|
printf '%s' "$kind" >&2
|
||||||
exit ${WRONG_KIND}
|
exit ${WRONG_KIND}
|
||||||
fi
|
fi
|
||||||
find "$1" -mindepth 1 -maxdepth 1 -printf '%y\\0%f\\0'
|
find -H "$1" -mindepth 1 -maxdepth 1 -printf '%y\\0%f\\0'
|
||||||
`
|
`
|
||||||
|
|
||||||
const moveScript = `
|
const moveScript = `
|
||||||
|
|||||||
@@ -30,7 +30,8 @@ export class Failed extends Schema.TaggedErrorClass<Failed>()("Environment.Faile
|
|||||||
|
|
||||||
export interface FilesImpl {
|
export interface FilesImpl {
|
||||||
/**
|
/**
|
||||||
* Reads a file, following a final symlink so `info` describes the target whose bytes are returned.
|
* Content operations (`read`, `list`) follow final symlinks; metadata operations (`stat` and entry
|
||||||
|
* tags returned by `list`) do not. `info` describes the target file whose bytes are returned.
|
||||||
* The process-backed default caps collected output at 64 MiB; larger whole-file reads fail with
|
* The process-backed default caps collected output at 64 MiB; larger whole-file reads fail with
|
||||||
* `Failed`, so callers must use ranges for larger files.
|
* `Failed`, so callers must use ranges for larger files.
|
||||||
*/
|
*/
|
||||||
@@ -41,7 +42,7 @@ export interface FilesImpl {
|
|||||||
readonly write: (path: string, bytes: Uint8Array) => Effect.Effect<void, Failed>
|
readonly write: (path: string, bytes: Uint8Array) => Effect.Effect<void, Failed>
|
||||||
/** Describes the path entry itself, so a final symlink is reported as `symlink` rather than followed. */
|
/** Describes the path entry itself, so a final symlink is reported as `symlink` rather than followed. */
|
||||||
readonly stat: (path: string) => Effect.Effect<FileInfo, NotFound | Failed>
|
readonly stat: (path: string) => Effect.Effect<FileInfo, NotFound | Failed>
|
||||||
/** Lists a directory entry without following a final symlink; intermediate symlinks are traversed. */
|
/** Follows a final symlink to the listed directory while preserving each returned entry's own type. */
|
||||||
readonly list: (path: string) => Effect.Effect<ReadonlyArray<DirEntry>, NotFound | WrongKind | Failed>
|
readonly list: (path: string) => Effect.Effect<ReadonlyArray<DirEntry>, NotFound | WrongKind | Failed>
|
||||||
readonly remove: (path: string) => Effect.Effect<void, Failed>
|
readonly remove: (path: string) => Effect.Effect<void, Failed>
|
||||||
readonly move: (from: string, to: string) => Effect.Effect<void, NotFound | Failed>
|
readonly move: (from: string, to: string) => Effect.Effect<void, NotFound | Failed>
|
||||||
@@ -50,4 +51,20 @@ export interface FilesImpl {
|
|||||||
|
|
||||||
export interface Files extends FilesImpl {}
|
export interface Files extends FilesImpl {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Derives a follow-stat kind from the lstat-like Files contract. A dangling
|
||||||
|
* symlink fails with `NotFound`.
|
||||||
|
*/
|
||||||
|
export const typeFollowing = (files: Files, path: string) =>
|
||||||
|
files.stat(path).pipe(
|
||||||
|
Effect.flatMap((info) =>
|
||||||
|
info.type === "symlink"
|
||||||
|
? files.read(path, { offset: 0, length: 0 }).pipe(
|
||||||
|
Effect.map((result) => result.info.type),
|
||||||
|
Effect.catchTag("Environment.WrongKind", (error) => Effect.succeed(error.actual)),
|
||||||
|
)
|
||||||
|
: Effect.succeed(info.type),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
export * as EnvironmentFiles from "./files"
|
export * as EnvironmentFiles from "./files"
|
||||||
|
|||||||
@@ -9,10 +9,13 @@ export {
|
|||||||
type FilesImpl,
|
type FilesImpl,
|
||||||
type FileType,
|
type FileType,
|
||||||
NotFound,
|
NotFound,
|
||||||
|
typeFollowing,
|
||||||
WrongKind,
|
WrongKind,
|
||||||
} from "./files"
|
} from "./files"
|
||||||
export { execDefaults } from "./exec-defaults"
|
export { execDefaults } from "./exec-defaults"
|
||||||
|
export { makeLocalDriver } from "./local"
|
||||||
export { makeMemoryDriver, type MemoryDriver } from "./memory"
|
export { makeMemoryDriver, type MemoryDriver } from "./memory"
|
||||||
|
export { type Interface, node, Service } from "./environment"
|
||||||
|
|
||||||
import type { Driver } from "./driver"
|
import type { Driver } from "./driver"
|
||||||
import { execDefaults } from "./exec-defaults"
|
import { execDefaults } from "./exec-defaults"
|
||||||
|
|||||||
@@ -0,0 +1,103 @@
|
|||||||
|
import fs from "node:fs/promises"
|
||||||
|
import path from "node:path"
|
||||||
|
import { Effect } from "effect"
|
||||||
|
import type { ChildProcessSpawner } from "effect/unstable/process/ChildProcessSpawner"
|
||||||
|
import type { Driver } from "./driver"
|
||||||
|
import { Failed, NotFound, WrongKind, type FileInfo, type FilesImpl, type FileType } from "./files"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The host filesystem binding. Deliberately raw node:fs rather than effect's
|
||||||
|
* FileSystem service or FSUtil: the contract needs lstat semantics (stat
|
||||||
|
* reports "symlink") and typed directory entries, and effect's node
|
||||||
|
* FileSystem provides neither — its stat always follows symlinks and
|
||||||
|
* readDirectory returns names only. FSUtil hits the same gap and its
|
||||||
|
* readDirectoryEntries already bypasses to raw node readdir internally.
|
||||||
|
* Nothing above the environment seam touches node:fs.
|
||||||
|
*/
|
||||||
|
export const makeLocalDriver = (spawner: ChildProcessSpawner["Service"]): Driver => {
|
||||||
|
const overrides: FilesImpl = {
|
||||||
|
read: (value, range) =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const info = yield* stat(value, true)
|
||||||
|
if (info.type !== "file") return yield* new WrongKind({ path: value, actual: info.type })
|
||||||
|
if (range === undefined) {
|
||||||
|
const bytes = yield* attempt(value, () => fs.readFile(value), true)
|
||||||
|
return { info, bytes }
|
||||||
|
}
|
||||||
|
const bytes = yield* attempt(
|
||||||
|
value,
|
||||||
|
async () => {
|
||||||
|
const handle = await fs.open(value, "r")
|
||||||
|
try {
|
||||||
|
const buffer = new Uint8Array(range.length)
|
||||||
|
const result = await handle.read(buffer, 0, range.length, range.offset)
|
||||||
|
return buffer.subarray(0, result.bytesRead)
|
||||||
|
} finally {
|
||||||
|
await handle.close()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
true,
|
||||||
|
)
|
||||||
|
return { info, bytes }
|
||||||
|
}),
|
||||||
|
stat: (value) => stat(value, false),
|
||||||
|
list: (value) =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const info = yield* stat(value, true)
|
||||||
|
if (info.type !== "directory") return yield* new WrongKind({ path: value, actual: info.type })
|
||||||
|
const entries = yield* attempt(value, () => fs.readdir(value, { withFileTypes: true }), true)
|
||||||
|
return entries.map((entry) => ({ name: entry.name, type: fileType(entry) }))
|
||||||
|
}),
|
||||||
|
write: (value, bytes) =>
|
||||||
|
attempt(value, async () => {
|
||||||
|
await fs.mkdir(path.dirname(value), { recursive: true })
|
||||||
|
await fs.writeFile(value, bytes)
|
||||||
|
}),
|
||||||
|
remove: (value) => attempt(value, () => fs.rm(value, { recursive: true, force: true })),
|
||||||
|
move: (from, to) =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
yield* stat(from, false)
|
||||||
|
const destination = yield* stat(to, false).pipe(
|
||||||
|
Effect.map((info) => (info.type === "directory" ? path.join(to, path.basename(from)) : to)),
|
||||||
|
Effect.catchIf(
|
||||||
|
(error) => error instanceof NotFound,
|
||||||
|
() => Effect.succeed(to),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
yield* attempt(from, () => fs.rename(from, destination))
|
||||||
|
}),
|
||||||
|
mkdir: (value) => attempt(value, () => fs.mkdir(value, { recursive: true }).then(() => undefined)),
|
||||||
|
}
|
||||||
|
|
||||||
|
return { spawner, overrides }
|
||||||
|
}
|
||||||
|
|
||||||
|
const stat = (value: string, follow: boolean) =>
|
||||||
|
attempt(value, () => (follow ? fs.stat(value) : fs.lstat(value)), true).pipe(
|
||||||
|
Effect.map((stats): FileInfo => ({ type: fileType(stats), size: stats.size, mtimeMs: stats.mtimeMs })),
|
||||||
|
)
|
||||||
|
|
||||||
|
const fileType = (entry: { isFile(): boolean; isDirectory(): boolean; isSymbolicLink(): boolean }): FileType => {
|
||||||
|
if (entry.isFile()) return "file"
|
||||||
|
if (entry.isDirectory()) return "directory"
|
||||||
|
if (entry.isSymbolicLink()) return "symlink"
|
||||||
|
return "other"
|
||||||
|
}
|
||||||
|
|
||||||
|
function attempt<A>(value: string, run: () => Promise<A>): Effect.Effect<A, Failed>
|
||||||
|
function attempt<A>(value: string, run: () => Promise<A>, missing: true): Effect.Effect<A, NotFound | Failed>
|
||||||
|
function attempt<A>(value: string, run: () => Promise<A>, missing = false) {
|
||||||
|
return Effect.tryPromise({
|
||||||
|
try: run,
|
||||||
|
catch: (cause) =>
|
||||||
|
missing && isMissing(cause) ? new NotFound({ path: value }) : new Failed({ path: value, cause }),
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const isMissing = (cause: unknown) =>
|
||||||
|
cause !== null &&
|
||||||
|
typeof cause === "object" &&
|
||||||
|
"code" in cause &&
|
||||||
|
(cause.code === "ENOENT" || cause.code === "ENOTDIR")
|
||||||
|
|
||||||
|
export * as EnvironmentLocal from "./local"
|
||||||
@@ -90,7 +90,7 @@ export const makeMemoryDriver = (): MemoryDriver => {
|
|||||||
catch: (cause) => failed(value, cause),
|
catch: (cause) => failed(value, cause),
|
||||||
}),
|
}),
|
||||||
list: (value) => {
|
list: (value) => {
|
||||||
const target = resolveKey(value, false) ?? key(value)
|
const target = resolveKey(value, true) ?? key(value)
|
||||||
const node = nodes.get(target)
|
const node = nodes.get(target)
|
||||||
if (!node) return Effect.fail(new NotFound({ path: value }))
|
if (!node) return Effect.fail(new NotFound({ path: value }))
|
||||||
if (node.type !== "directory") return Effect.fail(new WrongKind({ path: value, actual: node.type }))
|
if (node.type !== "directory") return Effect.fail(new WrongKind({ path: value, actual: node.type }))
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ import { Context, Effect, Layer } from "effect"
|
|||||||
import { KeyedMutex } from "./effect/keyed-mutex"
|
import { KeyedMutex } from "./effect/keyed-mutex"
|
||||||
import { FSUtil } from "@opencode-ai/util/fs-util"
|
import { FSUtil } from "@opencode-ai/util/fs-util"
|
||||||
import { Bom } from "@opencode-ai/util/bom"
|
import { Bom } from "@opencode-ai/util/bom"
|
||||||
|
import { Environment } from "./environment"
|
||||||
|
import type { Files } from "./environment"
|
||||||
|
|
||||||
export interface Target {
|
export interface Target {
|
||||||
readonly absolute: string
|
readonly absolute: string
|
||||||
@@ -29,13 +31,36 @@ export interface WriteResult {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface Interface {
|
export interface Interface {
|
||||||
readonly write: (input: WriteInput) => Effect.Effect<WriteResult, FSUtil.Error>
|
/** Serialize a complete read/prepare/write mutation transaction by resolved path. */
|
||||||
|
readonly withLock: (
|
||||||
|
targets: ReadonlyArray<string>,
|
||||||
|
) => <A, E, R>(effect: Effect.Effect<A, E, R>) => Effect.Effect<A, E, R>
|
||||||
|
readonly write: (input: WriteInput) => Effect.Effect<WriteResult, Environment.Failed>
|
||||||
/** Write text while retaining an existing UTF-8 BOM and emitting at most one BOM. */
|
/** Write text while retaining an existing UTF-8 BOM and emitting at most one BOM. */
|
||||||
readonly writeTextPreservingBom: (input: TextWriteInput) => Effect.Effect<WriteResult, FSUtil.Error>
|
readonly writeTextPreservingBom: (
|
||||||
|
input: TextWriteInput,
|
||||||
|
) => Effect.Effect<WriteResult, Environment.WrongKind | Environment.Failed>
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Service extends Context.Service<Service, Interface>()("@opencode/FileMutation") {}
|
export class Service extends Context.Service<Service, Interface>()("@opencode/FileMutation") {}
|
||||||
|
|
||||||
|
export const readText = Effect.fn("FileMutation.readText")(function* (files: Files, target: string) {
|
||||||
|
return Bom.decodeBytes((yield* files.read(target)).bytes)
|
||||||
|
})
|
||||||
|
|
||||||
|
export const syncTextBom = Effect.fn("FileMutation.syncTextBom")(function* (
|
||||||
|
files: Files,
|
||||||
|
target: string,
|
||||||
|
bom: boolean,
|
||||||
|
) {
|
||||||
|
const synced = Bom.syncBytes((yield* files.read(target)).bytes, bom)
|
||||||
|
if (synced.bytes) yield* files.write(target, synced.bytes)
|
||||||
|
return synced.text
|
||||||
|
})
|
||||||
|
|
||||||
|
/** Share transaction locks across Location graphs that address the same file. */
|
||||||
|
const transactionLocks = KeyedMutex.makeUnsafe<string>()
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Serialize file changes by absolute target. Conditional writes compare and
|
* Serialize file changes by absolute target. Conditional writes compare and
|
||||||
* write under the same process-local lock so cooperating OpenCode mutations do
|
* write under the same process-local lock so cooperating OpenCode mutations do
|
||||||
@@ -44,8 +69,12 @@ export class Service extends Context.Service<Service, Interface>()("@opencode/Fi
|
|||||||
const layer = Layer.effect(
|
const layer = Layer.effect(
|
||||||
Service,
|
Service,
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const fs = yield* FSUtil.Service
|
const environment = yield* Environment.Service
|
||||||
const locks = KeyedMutex.makeUnsafe<string>()
|
const locks = KeyedMutex.makeUnsafe<string>()
|
||||||
|
const withLock: Interface["withLock"] = (targets) => (effect) =>
|
||||||
|
[...new Set(targets.map(FSUtil.resolve))]
|
||||||
|
.sort()
|
||||||
|
.reduceRight((result, target) => transactionLocks.withLock(target)(result), effect)
|
||||||
const withTargetLock =
|
const withTargetLock =
|
||||||
(target: Target) =>
|
(target: Target) =>
|
||||||
<A, E, R>(effect: Effect.Effect<A, E, R>) =>
|
<A, E, R>(effect: Effect.Effect<A, E, R>) =>
|
||||||
@@ -61,8 +90,14 @@ const layer = Layer.effect(
|
|||||||
const write = Effect.fn("FileMutation.write")((input: WriteInput) =>
|
const write = Effect.fn("FileMutation.write")((input: WriteInput) =>
|
||||||
withTargetLock(input.target)(
|
withTargetLock(input.target)(
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const existed = yield* fs.exists(input.target.absolute)
|
const existed = yield* environment.files.stat(input.target.absolute).pipe(
|
||||||
yield* fs.writeWithDirs(input.target.absolute, input.content)
|
Effect.as(true),
|
||||||
|
Effect.catchTag("Environment.NotFound", () => Effect.succeed(false)),
|
||||||
|
)
|
||||||
|
yield* environment.files.write(
|
||||||
|
input.target.absolute,
|
||||||
|
typeof input.content === "string" ? new TextEncoder().encode(input.content) : input.content,
|
||||||
|
)
|
||||||
return writeResult(input.target, existed)
|
return writeResult(input.target, existed)
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
@@ -72,23 +107,24 @@ const layer = Layer.effect(
|
|||||||
withTargetLock(input.target)(
|
withTargetLock(input.target)(
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const next = Bom.split(input.content)
|
const next = Bom.split(input.content)
|
||||||
const current = yield* fs
|
const current = yield* environment.files.read(input.target.absolute, { offset: 0, length: 3 }).pipe(
|
||||||
.readFile(input.target.absolute)
|
Effect.map((result) => result.bytes),
|
||||||
.pipe(Effect.catchReason("PlatformError", "NotFound", () => Effect.succeed(undefined)))
|
Effect.catchTag("Environment.NotFound", () => Effect.succeed(undefined)),
|
||||||
yield* fs.writeWithDirs(
|
)
|
||||||
|
yield* environment.files.write(
|
||||||
input.target.absolute,
|
input.target.absolute,
|
||||||
Bom.join(next.text, Boolean(current && Bom.has(current)) || next.bom),
|
new TextEncoder().encode(Bom.join(next.text, Boolean(current && Bom.has(current)) || next.bom)),
|
||||||
)
|
)
|
||||||
return writeResult(input.target, current !== undefined)
|
return writeResult(input.target, current !== undefined)
|
||||||
}),
|
}),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
return Service.of({ write, writeTextPreservingBom })
|
return Service.of({ withLock, write, writeTextPreservingBom })
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
export const node = makeLocationNode({ service: Service, layer, deps: [FSUtil.node] })
|
export const node = makeLocationNode({ service: Service, layer, deps: [Environment.node] })
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deferred until the corresponding integrations exist.
|
* Deferred until the corresponding integrations exist.
|
||||||
|
|||||||
@@ -11,15 +11,6 @@ import { FSUtil } from "@opencode-ai/util/fs-util"
|
|||||||
import { Git } from "../git"
|
import { Git } from "../git"
|
||||||
import { Location } from "../location"
|
import { Location } from "../location"
|
||||||
import { Watcher } from "./watcher"
|
import { Watcher } from "./watcher"
|
||||||
import { Ignore } from "./ignore"
|
|
||||||
import { Protected } from "./protected"
|
|
||||||
|
|
||||||
function protecteds(dir: string) {
|
|
||||||
return Protected.paths().filter((item) => {
|
|
||||||
const relative = path.relative(dir, item)
|
|
||||||
return relative !== "" && !relative.startsWith("..") && !path.isAbsolute(relative)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Interface {}
|
export interface Interface {}
|
||||||
|
|
||||||
@@ -44,19 +35,6 @@ const layer = Layer.effect(
|
|||||||
const config = (yield* configService.entries())
|
const config = (yield* configService.entries())
|
||||||
.filter((entry): entry is Document => entry.type === "document")
|
.filter((entry): entry is Document => entry.type === "document")
|
||||||
.flatMap((item) => item.info.watcher?.ignore ?? [])
|
.flatMap((item) => item.info.watcher?.ignore ?? [])
|
||||||
const home = Protected.isHome(location.directory)
|
|
||||||
|
|
||||||
if (!home && location.vcs) {
|
|
||||||
const updates = yield* watcher.subscribe({
|
|
||||||
path: location.directory,
|
|
||||||
type: "directory",
|
|
||||||
ignore: [...Ignore.PATTERNS, ...config, ...protecteds(location.directory)],
|
|
||||||
})
|
|
||||||
yield* updates.pipe(Stream.runForEach(publish), Effect.forkScoped)
|
|
||||||
}
|
|
||||||
if (home) {
|
|
||||||
yield* Effect.logInfo("location watcher skipped home directory", { directory: location.directory })
|
|
||||||
}
|
|
||||||
|
|
||||||
if (location.vcs?.type === "git") {
|
if (location.vcs?.type === "git") {
|
||||||
const resolved = (yield* git.repo.discover(location.directory))?.gitDirectory
|
const resolved = (yield* git.repo.discover(location.directory))?.gitDirectory
|
||||||
@@ -64,10 +42,7 @@ const layer = Layer.effect(
|
|||||||
? yield* fs.realPath(resolved).pipe(Effect.catch(() => Effect.succeed(resolved)))
|
? yield* fs.realPath(resolved).pipe(Effect.catch(() => Effect.succeed(resolved)))
|
||||||
: undefined
|
: undefined
|
||||||
if (vcs && !config.includes(".git") && !config.includes(vcs) && (!resolved || !config.includes(resolved))) {
|
if (vcs && !config.includes(".git") && !config.includes(vcs) && (!resolved || !config.includes(resolved))) {
|
||||||
const ignore = (yield* fs.readDirectoryEntries(vcs).pipe(Effect.catch(() => Effect.succeed([])))).flatMap(
|
const updates = yield* watcher.subscribe({ path: path.join(vcs, "HEAD"), type: "file" })
|
||||||
(entry) => (entry.name === "HEAD" ? [] : [entry.name]),
|
|
||||||
)
|
|
||||||
const updates = yield* watcher.subscribe({ path: vcs, type: "directory", ignore })
|
|
||||||
yield* updates.pipe(Stream.runForEach(publish), Effect.forkScoped)
|
yield* updates.pipe(Stream.runForEach(publish), Effect.forkScoped)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ const Files = Schema.Array(File)
|
|||||||
const key = Instructions.Key.make("core/instructions")
|
const key = Instructions.Key.make("core/instructions")
|
||||||
|
|
||||||
export interface Interface {
|
export interface Interface {
|
||||||
readonly load: () => Effect.Effect<Instructions.Instructions>
|
readonly load: () => Effect.Effect<Instructions.List>
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Options = Schema.Struct({
|
export const Options = Schema.Struct({
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import { SessionSchema } from "../session/schema"
|
|||||||
import { Instructions } from "./index"
|
import { Instructions } from "./index"
|
||||||
|
|
||||||
export interface Interface {
|
export interface Interface {
|
||||||
readonly load: (sessionID: SessionSchema.ID) => Effect.Effect<Instructions.Instructions>
|
readonly load: (sessionID: SessionSchema.ID) => Effect.Effect<Instructions.List>
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Service extends Context.Service<Service, Interface>()("@opencode/InstructionBuiltIns") {}
|
export class Service extends Context.Service<Service, Interface>()("@opencode/InstructionBuiltIns") {}
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ export declare namespace Source {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** Ordered sources; identical values render identical bytes. */
|
/** Ordered sources; identical values render identical bytes. */
|
||||||
export type Instructions = ReadonlyArray<Source>
|
export type List = ReadonlyArray<Source>
|
||||||
|
|
||||||
export type ReadResult = ReadonlyArray<{
|
export type ReadResult = ReadonlyArray<{
|
||||||
readonly key: Key
|
readonly key: Key
|
||||||
@@ -82,10 +82,10 @@ export class DuplicateKeyError extends Schema.TaggedErrorClass<DuplicateKeyError
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const empty: Instructions = []
|
export const empty: List = []
|
||||||
|
|
||||||
/** Closes a typed definition into one `Source`, so differently typed sources compose. */
|
/** Closes a typed definition into one `Source`, so differently typed sources compose. */
|
||||||
export function make<A>(source: Source.Definition<A>): Instructions {
|
export function make<A>(source: Source.Definition<A>): List {
|
||||||
const decode = Schema.decodeUnknownOption(source.codec)
|
const decode = Schema.decodeUnknownOption(source.codec)
|
||||||
const encode = Schema.encodeSync(source.codec)
|
const encode = Schema.encodeSync(source.codec)
|
||||||
const initial = (value: A) => requireText(source.key, "initial", source.render.initial(value))
|
const initial = (value: A) => requireText(source.key, "initial", source.render.initial(value))
|
||||||
@@ -121,7 +121,7 @@ export function make<A>(source: Source.Definition<A>): Instructions {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
export function combine(values: ReadonlyArray<Instructions>): Instructions {
|
export function combine(values: ReadonlyArray<List>): List {
|
||||||
const sources = values.flat()
|
const sources = values.flat()
|
||||||
const keys = new Set<Key>()
|
const keys = new Set<Key>()
|
||||||
for (const source of sources) {
|
for (const source of sources) {
|
||||||
@@ -131,7 +131,7 @@ export function combine(values: ReadonlyArray<Instructions>): Instructions {
|
|||||||
return sources
|
return sources
|
||||||
}
|
}
|
||||||
|
|
||||||
export function read(value: Instructions): Effect.Effect<ReadResult> {
|
export function read(value: List): Effect.Effect<ReadResult> {
|
||||||
return Effect.forEach(
|
return Effect.forEach(
|
||||||
value,
|
value,
|
||||||
(source) => source.read.pipe(Effect.map((observed) => ({ key: source.key, value: observed }))),
|
(source) => source.read.pipe(Effect.map((observed) => ({ key: source.key, value: observed }))),
|
||||||
@@ -158,7 +158,7 @@ export function diff(observed: ReadResult, previous?: Values): Effect.Effect<Adm
|
|||||||
return Effect.succeed({ delta, blobs })
|
return Effect.succeed({ delta, blobs })
|
||||||
}
|
}
|
||||||
|
|
||||||
export function renderInitial(value: Instructions, values: Readonly<Record<string, Schema.Json>>) {
|
export function renderInitial(value: List, values: Readonly<Record<string, Schema.Json>>) {
|
||||||
return render(
|
return render(
|
||||||
value.flatMap((source) => {
|
value.flatMap((source) => {
|
||||||
if (!Object.hasOwn(values, source.key)) return []
|
if (!Object.hasOwn(values, source.key)) return []
|
||||||
@@ -169,7 +169,7 @@ export function renderInitial(value: Instructions, values: Readonly<Record<strin
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function renderUpdate(
|
export function renderUpdate(
|
||||||
value: Instructions,
|
value: List,
|
||||||
previous: Readonly<Record<string, Schema.Json>>,
|
previous: Readonly<Record<string, Schema.Json>>,
|
||||||
delta: Readonly<Record<string, Option.Option<Schema.Json>>>,
|
delta: Readonly<Record<string, Option.Option<Schema.Json>>>,
|
||||||
) {
|
) {
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { LayerNode } from "@opencode-ai/util/effect/layer-node"
|
|||||||
import { Node } from "@opencode-ai/util/effect/app-node"
|
import { Node } from "@opencode-ai/util/effect/app-node"
|
||||||
import { Bus } from "./bus"
|
import { Bus } from "./bus"
|
||||||
import { FileMutation } from "./file-mutation"
|
import { FileMutation } from "./file-mutation"
|
||||||
|
import { Environment } from "./environment"
|
||||||
import { Formatter } from "./formatter"
|
import { Formatter } from "./formatter"
|
||||||
import { FileSystem } from "./filesystem"
|
import { FileSystem } from "./filesystem"
|
||||||
import { FileSystemSearch } from "./filesystem/search"
|
import { FileSystemSearch } from "./filesystem/search"
|
||||||
@@ -53,6 +54,7 @@ export { LocationServiceMap } from "./location-service-map"
|
|||||||
|
|
||||||
const locationServiceNodes = [
|
const locationServiceNodes = [
|
||||||
Location.node,
|
Location.node,
|
||||||
|
Environment.node,
|
||||||
Config.node,
|
Config.node,
|
||||||
Agent.node,
|
Agent.node,
|
||||||
Command.node,
|
Command.node,
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ const update = (previous: ReadonlyArray<Summary>, current: ReadonlyArray<Summary
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface Interface {
|
export interface Interface {
|
||||||
readonly load: (agent: Agent.Selection) => Effect.Effect<Instructions.Instructions>
|
readonly load: (agent: Agent.Selection) => Effect.Effect<Instructions.List>
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Service extends Context.Service<Service, Interface>()("@opencode/McpInstructions") {}
|
export class Service extends Context.Service<Service, Interface>()("@opencode/McpInstructions") {}
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ import { ConfigReferencePlugin } from "../config/plugin/reference"
|
|||||||
import { ConfigSkillPlugin } from "../config/plugin/skill"
|
import { ConfigSkillPlugin } from "../config/plugin/skill"
|
||||||
import { ConfigWebSearchPlugin } from "../config/plugin/websearch"
|
import { ConfigWebSearchPlugin } from "../config/plugin/websearch"
|
||||||
import { Bus } from "../bus"
|
import { Bus } from "../bus"
|
||||||
|
import { Environment } from "../environment"
|
||||||
import { FileMutation } from "../file-mutation"
|
import { FileMutation } from "../file-mutation"
|
||||||
import { Formatter } from "../formatter"
|
import { Formatter } from "../formatter"
|
||||||
import { Form } from "../form"
|
import { Form } from "../form"
|
||||||
@@ -70,6 +71,7 @@ const services = Effect.fn("PluginInternal.services")(function* () {
|
|||||||
const config = yield* Config.Service
|
const config = yield* Config.Service
|
||||||
const credential = yield* Credential.Service
|
const credential = yield* Credential.Service
|
||||||
const bus = yield* Bus.Service
|
const bus = yield* Bus.Service
|
||||||
|
const environment = yield* Environment.Service
|
||||||
const mutation = yield* FileMutation.Service
|
const mutation = yield* FileMutation.Service
|
||||||
const formatter = yield* Formatter.Service
|
const formatter = yield* Formatter.Service
|
||||||
const filesystem = yield* FileSystem.Service
|
const filesystem = yield* FileSystem.Service
|
||||||
@@ -102,6 +104,7 @@ const services = Effect.fn("PluginInternal.services")(function* () {
|
|||||||
Context.make(Config.Service, config),
|
Context.make(Config.Service, config),
|
||||||
Context.make(Credential.Service, credential),
|
Context.make(Credential.Service, credential),
|
||||||
Context.make(Bus.Service, bus),
|
Context.make(Bus.Service, bus),
|
||||||
|
Context.make(Environment.Service, environment),
|
||||||
Context.make(FileMutation.Service, mutation),
|
Context.make(FileMutation.Service, mutation),
|
||||||
Context.make(Formatter.Service, formatter),
|
Context.make(Formatter.Service, formatter),
|
||||||
Context.make(FileSystem.Service, filesystem),
|
Context.make(FileSystem.Service, filesystem),
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import { Credential } from "../credential"
|
|||||||
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
||||||
import { httpClient } from "@opencode-ai/util/effect/app-node-platform"
|
import { httpClient } from "@opencode-ai/util/effect/app-node-platform"
|
||||||
import { Bus } from "../bus"
|
import { Bus } from "../bus"
|
||||||
|
import { Environment } from "../environment"
|
||||||
import { FileMutation } from "../file-mutation"
|
import { FileMutation } from "../file-mutation"
|
||||||
import { Formatter } from "../formatter"
|
import { Formatter } from "../formatter"
|
||||||
import { FileSystem } from "../filesystem"
|
import { FileSystem } from "../filesystem"
|
||||||
@@ -282,7 +283,9 @@ const layer = Layer.effect(
|
|||||||
})
|
})
|
||||||
const updates = Stream.merge(
|
const updates = Stream.merge(
|
||||||
config.changes().pipe(
|
config.changes().pipe(
|
||||||
Stream.filterEffect((update) => Effect.map(config.entries(), (entries) => isPluginSource(entries, update.path))),
|
Stream.filterEffect((update) =>
|
||||||
|
Effect.map(config.entries(), (entries) => isPluginSource(entries, update.path)),
|
||||||
|
),
|
||||||
Stream.merge(Stream.fromPubSub(configuredChanges)),
|
Stream.merge(Stream.fromPubSub(configuredChanges)),
|
||||||
),
|
),
|
||||||
bus.subscribe([Event.Updated, SdkPlugins.Updated]),
|
bus.subscribe([Event.Updated, SdkPlugins.Updated]),
|
||||||
@@ -320,6 +323,7 @@ export const node = makeLocationNode({
|
|||||||
Config.node,
|
Config.node,
|
||||||
Credential.node,
|
Credential.node,
|
||||||
Bus.node,
|
Bus.node,
|
||||||
|
Environment.node,
|
||||||
FileMutation.node,
|
FileMutation.node,
|
||||||
Formatter.node,
|
Formatter.node,
|
||||||
FileSystem.node,
|
FileSystem.node,
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ const update = (previous: ReadonlyArray<typeof Summary.Type>, current: ReadonlyA
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface Interface {
|
export interface Interface {
|
||||||
readonly load: () => Effect.Effect<Instructions.Instructions>
|
readonly load: () => Effect.Effect<Instructions.List>
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Service extends Context.Service<Service, Interface>()("@opencode/ReferenceInstructions") {}
|
export class Service extends Context.Service<Service, Interface>()("@opencode/ReferenceInstructions") {}
|
||||||
|
|||||||
@@ -3,8 +3,9 @@ export * as Ripgrep from "./ripgrep"
|
|||||||
import { Context, Effect, Fiber, Layer, Schema, Stream } from "effect"
|
import { Context, Effect, Fiber, Layer, Schema, Stream } from "effect"
|
||||||
import { ChildProcess } from "effect/unstable/process"
|
import { ChildProcess } from "effect/unstable/process"
|
||||||
import { Entry, Match } from "@opencode-ai/schema/filesystem"
|
import { Entry, Match } from "@opencode-ai/schema/filesystem"
|
||||||
import { makeGlobalNode } from "@opencode-ai/util/effect/app-node"
|
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
||||||
import { AppProcess, collectStream, waitForAbort } from "@opencode-ai/util/process"
|
import { collectStream, waitForAbort } from "@opencode-ai/util/process"
|
||||||
|
import { Environment } from "./environment"
|
||||||
import { NonNegativeInt, PositiveInt, RelativePath } from "./schema"
|
import { NonNegativeInt, PositiveInt, RelativePath } from "./schema"
|
||||||
import { RipgrepBinary } from "./ripgrep/binary"
|
import { RipgrepBinary } from "./ripgrep/binary"
|
||||||
|
|
||||||
@@ -93,7 +94,7 @@ const isInvalidPattern = (stderr: string) =>
|
|||||||
const layer = Layer.effect(
|
const layer = Layer.effect(
|
||||||
Service,
|
Service,
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const process = yield* AppProcess.Service
|
const environment = yield* Environment.Service
|
||||||
const binary = yield* RipgrepBinary.Service
|
const binary = yield* RipgrepBinary.Service
|
||||||
|
|
||||||
const run = <A>(input: {
|
const run = <A>(input: {
|
||||||
@@ -107,7 +108,8 @@ const layer = Layer.effect(
|
|||||||
}) => {
|
}) => {
|
||||||
const program = Effect.scoped(
|
const program = Effect.scoped(
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const handle = yield* process.spawn(
|
// Hosted environments will resolve rg through their driver image; the spawner is the execution seam.
|
||||||
|
const handle = yield* environment.spawner.spawn(
|
||||||
ChildProcess.make(yield* binary.filepath, input.args, { cwd: input.cwd, extendEnv: true, stdin: "ignore" }),
|
ChildProcess.make(yield* binary.filepath, input.args, { cwd: input.cwd, extendEnv: true, stdin: "ignore" }),
|
||||||
)
|
)
|
||||||
const stderrFiber = yield* collectStream(handle.stderr, ERROR_BYTES).pipe(
|
const stderrFiber = yield* collectStream(handle.stderr, ERROR_BYTES).pipe(
|
||||||
@@ -275,4 +277,4 @@ const layer = Layer.effect(
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
export const node = makeGlobalNode({ service: Service, layer: layer, deps: [RipgrepBinary.node, AppProcess.node] })
|
export const node = makeLocationNode({ service: Service, layer, deps: [Environment.node, RipgrepBinary.node] })
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import { llmClient } from "../effect/app-node-platform"
|
|||||||
import { SessionEvent } from "./event"
|
import { SessionEvent } from "./event"
|
||||||
import type { SessionMessage } from "./message"
|
import type { SessionMessage } from "./message"
|
||||||
import { SessionModelHeaders } from "./model-headers"
|
import { SessionModelHeaders } from "./model-headers"
|
||||||
|
import { SessionPromptCacheKey } from "./prompt-cache-key"
|
||||||
import { App } from "../app"
|
import { App } from "../app"
|
||||||
import { SessionRunnerModel } from "./runner/model"
|
import { SessionRunnerModel } from "./runner/model"
|
||||||
import { SessionSchema } from "./schema"
|
import { SessionSchema } from "./schema"
|
||||||
@@ -258,6 +259,7 @@ const make = (dependencies: Dependencies) => {
|
|||||||
.stream(
|
.stream(
|
||||||
LLM.request({
|
LLM.request({
|
||||||
model: plan.model,
|
model: plan.model,
|
||||||
|
promptCacheKey: SessionPromptCacheKey.make(plan.session.id),
|
||||||
http: { headers: SessionModelHeaders.make(plan.session, dependencies.app) },
|
http: { headers: SessionModelHeaders.make(plan.session, dependencies.app) },
|
||||||
messages: [Message.user(plan.prompt)],
|
messages: [Message.user(plan.prompt)],
|
||||||
tools: [],
|
tools: [],
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ import { SessionStore } from "./store"
|
|||||||
export interface Selection {
|
export interface Selection {
|
||||||
readonly session: SessionSchema.Info
|
readonly session: SessionSchema.Info
|
||||||
readonly agent: Agent.Selection & { readonly info: Agent.Info }
|
readonly agent: Agent.Selection & { readonly info: Agent.Info }
|
||||||
readonly instructions: Instructions.Instructions
|
readonly instructions: Instructions.List
|
||||||
readonly tools: Tool.Snapshot
|
readonly tools: Tool.Snapshot
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,9 +2,14 @@ export * as SessionRestart from "./restart"
|
|||||||
|
|
||||||
import { Context, Effect, Layer } from "effect"
|
import { Context, Effect, Layer } from "effect"
|
||||||
import { makeGlobalNode } from "@opencode-ai/util/effect/app-node"
|
import { makeGlobalNode } from "@opencode-ai/util/effect/app-node"
|
||||||
|
import { Bus } from "../../bus"
|
||||||
|
import { SessionEvent } from "../event"
|
||||||
import { SessionExecution } from "../execution"
|
import { SessionExecution } from "../execution"
|
||||||
import { SessionStore } from "../store"
|
import { SessionStore } from "../store"
|
||||||
|
|
||||||
|
const CONTINUE_AFTER_SERVER_RESTART =
|
||||||
|
"The server restarted while you were working. Continue from where you left off without repeating completed work."
|
||||||
|
|
||||||
export interface Interface {
|
export interface Interface {
|
||||||
/**
|
/**
|
||||||
* Marks every execution active in this process for resumption by the next server start.
|
* Marks every execution active in this process for resumption by the next server start.
|
||||||
@@ -26,6 +31,7 @@ export const layer = Layer.effect(
|
|||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
const store = yield* SessionStore.Service
|
const store = yield* SessionStore.Service
|
||||||
const execution = yield* SessionExecution.Service
|
const execution = yield* SessionExecution.Service
|
||||||
|
const bus = yield* Bus.Service
|
||||||
return Service.of({
|
return Service.of({
|
||||||
suspendActiveSessions: Effect.gen(function* () {
|
suspendActiveSessions: Effect.gen(function* () {
|
||||||
yield* store.suspend(yield* execution.active)
|
yield* store.suspend(yield* execution.active)
|
||||||
@@ -37,6 +43,11 @@ export const layer = Layer.effect(
|
|||||||
(sessionID) =>
|
(sessionID) =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
if (!(yield* store.consumeSuspended(sessionID))) return
|
if (!(yield* store.consumeSuspended(sessionID))) return
|
||||||
|
yield* bus.publish(SessionEvent.Synthetic, {
|
||||||
|
sessionID,
|
||||||
|
text: CONTINUE_AFTER_SERVER_RESTART,
|
||||||
|
description: "Continuing after restart",
|
||||||
|
})
|
||||||
// Drain failures are already logged and durably recorded by the execution layer.
|
// Drain failures are already logged and durably recorded by the execution layer.
|
||||||
yield* Effect.ignore(execution.resume(sessionID))
|
yield* Effect.ignore(execution.resume(sessionID))
|
||||||
}),
|
}),
|
||||||
@@ -47,4 +58,8 @@ export const layer = Layer.effect(
|
|||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
export const node = makeGlobalNode({ service: Service, layer, deps: [SessionStore.node, SessionExecution.node] })
|
export const node = makeGlobalNode({
|
||||||
|
service: Service,
|
||||||
|
layer,
|
||||||
|
deps: [SessionStore.node, SessionExecution.node, Bus.node],
|
||||||
|
})
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ import { SessionContext } from "./context"
|
|||||||
import { SessionGenerate } from "./generate"
|
import { SessionGenerate } from "./generate"
|
||||||
import { SessionHistory } from "./history"
|
import { SessionHistory } from "./history"
|
||||||
import { SessionModelHeaders } from "./model-headers"
|
import { SessionModelHeaders } from "./model-headers"
|
||||||
|
import { SessionPromptCacheKey } from "./prompt-cache-key"
|
||||||
import { SessionRunnerModel } from "./runner/model"
|
import { SessionRunnerModel } from "./runner/model"
|
||||||
import PROMPT_DEFAULT from "./runner/prompt/base.txt"
|
import PROMPT_DEFAULT from "./runner/prompt/base.txt"
|
||||||
import { toLLMMessages } from "./runner/to-llm-message"
|
import { toLLMMessages } from "./runner/to-llm-message"
|
||||||
@@ -31,9 +32,6 @@ export const layer = Layer.effect(
|
|||||||
const model = yield* models.resolve(selection.session)
|
const model = yield* models.resolve(selection.session)
|
||||||
const history = yield* SessionHistory.preview(database.db, selection.session.id, selection.instructions)
|
const history = yield* SessionHistory.preview(database.db, selection.session.id, selection.instructions)
|
||||||
const providerMetadataKey = model.model.route.providerMetadataKey ?? model.model.provider
|
const providerMetadataKey = model.model.route.providerMetadataKey ?? model.model.provider
|
||||||
const promptCacheKey = /^ses_[0-9a-f]{64}$/.test(selection.session.id)
|
|
||||||
? selection.session.id.slice(4)
|
|
||||||
: selection.session.id
|
|
||||||
const tools = selection.tools
|
const tools = selection.tools
|
||||||
const toolDefinitions = tools.definitions
|
const toolDefinitions = tools.definitions
|
||||||
const toolsByName = new Map(toolDefinitions.map((tool) => [tool.name, tool]))
|
const toolsByName = new Map(toolDefinitions.map((tool) => [tool.name, tool]))
|
||||||
@@ -71,7 +69,7 @@ export const layer = Layer.effect(
|
|||||||
LLM.request({
|
LLM.request({
|
||||||
model: model.model,
|
model: model.model,
|
||||||
http: { headers: SessionModelHeaders.make(selection.session, app) },
|
http: { headers: SessionModelHeaders.make(selection.session, app) },
|
||||||
providerOptions: { [providerMetadataKey]: { promptCacheKey } },
|
promptCacheKey: SessionPromptCacheKey.make(selection.session.id),
|
||||||
system: contextEvent.system,
|
system: contextEvent.system,
|
||||||
messages: contextEvent.messages,
|
messages: contextEvent.messages,
|
||||||
tools: hookedTools,
|
tools: hookedTools,
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ export const load = Effect.fn("SessionHistory.load")(function* (db: DatabaseServ
|
|||||||
export const entriesForRunner = Effect.fn("SessionHistory.entriesForRunner")(function* (
|
export const entriesForRunner = Effect.fn("SessionHistory.entriesForRunner")(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
sessionID: SessionSchema.ID,
|
sessionID: SessionSchema.ID,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
) {
|
) {
|
||||||
return yield* db
|
return yield* db
|
||||||
.transaction(() =>
|
.transaction(() =>
|
||||||
@@ -92,7 +92,7 @@ export const entriesForRunner = Effect.fn("SessionHistory.entriesForRunner")(fun
|
|||||||
export const preview = Effect.fn("SessionHistory.preview")(function* (
|
export const preview = Effect.fn("SessionHistory.preview")(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
sessionID: SessionSchema.ID,
|
sessionID: SessionSchema.ID,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
) {
|
) {
|
||||||
const observed = yield* Instructions.read(instructions)
|
const observed = yield* Instructions.read(instructions)
|
||||||
return yield* db
|
return yield* db
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ export interface Interface {
|
|||||||
}) => Effect.Effect<void, InstructionEntry.ValueTooLargeError>
|
}) => Effect.Effect<void, InstructionEntry.ValueTooLargeError>
|
||||||
readonly remove: (input: { readonly sessionID: SessionSchema.ID; readonly key: Key }) => Effect.Effect<void>
|
readonly remove: (input: { readonly sessionID: SessionSchema.ID; readonly key: Key }) => Effect.Effect<void>
|
||||||
/** Produces one Instructions source per stored entry, keyed `api/<key>`. */
|
/** Produces one Instructions source per stored entry, keyed `api/<key>`. */
|
||||||
readonly load: (sessionID: SessionSchema.ID) => Effect.Effect<Instructions.Instructions>
|
readonly load: (sessionID: SessionSchema.ID) => Effect.Effect<Instructions.List>
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Service extends Context.Service<Service, Interface>()("@opencode/InstructionEntry") {}
|
export class Service extends Context.Service<Service, Interface>()("@opencode/InstructionEntry") {}
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ export interface Observation extends Instructions.Admission {
|
|||||||
|
|
||||||
export const observe = Effect.fn("InstructionState.observe")(function* (
|
export const observe = Effect.fn("InstructionState.observe")(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
sessionID: SessionSchema.ID,
|
sessionID: SessionSchema.ID,
|
||||||
): Effect.fn.Return<Observation, Instructions.InitializationBlocked> {
|
): Effect.fn.Return<Observation, Instructions.InitializationBlocked> {
|
||||||
const [observed, stored] = yield* Effect.all([Instructions.read(instructions), find(db, sessionID)], {
|
const [observed, stored] = yield* Effect.all([Instructions.read(instructions), find(db, sessionID)], {
|
||||||
@@ -38,7 +38,7 @@ export const observe = Effect.fn("InstructionState.observe")(function* (
|
|||||||
export const commit = Effect.fn("InstructionState.commit")(function* (
|
export const commit = Effect.fn("InstructionState.commit")(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
bus: Bus.Interface,
|
bus: Bus.Interface,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
observation: Observation,
|
observation: Observation,
|
||||||
) {
|
) {
|
||||||
if (!observation.initial && Object.keys(observation.delta).length === 0) return
|
if (!observation.initial && Object.keys(observation.delta).length === 0) return
|
||||||
@@ -62,7 +62,7 @@ export const commit = Effect.fn("InstructionState.commit")(function* (
|
|||||||
|
|
||||||
const renderUpdateText = Effect.fnUntraced(function* (
|
const renderUpdateText = Effect.fnUntraced(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
observation: Observation,
|
observation: Observation,
|
||||||
) {
|
) {
|
||||||
const replaced = Object.entries(observation.previous).filter(([key]) => Object.hasOwn(observation.delta, key))
|
const replaced = Object.entries(observation.previous).filter(([key]) => Object.hasOwn(observation.delta, key))
|
||||||
@@ -77,7 +77,7 @@ const renderUpdateText = Effect.fnUntraced(function* (
|
|||||||
export const prepare = Effect.fn("InstructionState.prepare")(function* (
|
export const prepare = Effect.fn("InstructionState.prepare")(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
bus: Bus.Interface,
|
bus: Bus.Interface,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
sessionID: SessionSchema.ID,
|
sessionID: SessionSchema.ID,
|
||||||
) {
|
) {
|
||||||
yield* commit(db, bus, instructions, yield* observe(db, instructions, sessionID))
|
yield* commit(db, bus, instructions, yield* observe(db, instructions, sessionID))
|
||||||
@@ -162,7 +162,7 @@ export const reset = Effect.fn("InstructionState.reset")(function* (db: Database
|
|||||||
export const initial = Effect.fn("InstructionState.initial")(function* (
|
export const initial = Effect.fn("InstructionState.initial")(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
sessionID: SessionSchema.ID,
|
sessionID: SessionSchema.ID,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
) {
|
) {
|
||||||
const state = yield* find(db, sessionID)
|
const state = yield* find(db, sessionID)
|
||||||
if (!state) return yield* Effect.die(new Error(`Instruction state not found during assembly: ${sessionID}`))
|
if (!state) return yield* Effect.die(new Error(`Instruction state not found during assembly: ${sessionID}`))
|
||||||
@@ -181,7 +181,7 @@ export const current = Effect.fn("InstructionState.current")(function* (
|
|||||||
export const preview = Effect.fn("InstructionState.preview")(function* (
|
export const preview = Effect.fn("InstructionState.preview")(function* (
|
||||||
db: DatabaseService,
|
db: DatabaseService,
|
||||||
sessionID: SessionSchema.ID,
|
sessionID: SessionSchema.ID,
|
||||||
instructions: Instructions.Instructions,
|
instructions: Instructions.List,
|
||||||
observed: Instructions.ReadResult,
|
observed: Instructions.ReadResult,
|
||||||
) {
|
) {
|
||||||
const state = yield* find(db, sessionID)
|
const state = yield* find(db, sessionID)
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ import { QuestionTool } from "../tool/plugin/question"
|
|||||||
import { Tool } from "../tool"
|
import { Tool } from "../tool"
|
||||||
import { SessionContext } from "./context"
|
import { SessionContext } from "./context"
|
||||||
import { SessionModelHeaders } from "./model-headers"
|
import { SessionModelHeaders } from "./model-headers"
|
||||||
|
import { SessionPromptCacheKey } from "./prompt-cache-key"
|
||||||
import { PromptCacheDiagnostics } from "./prompt-cache-diagnostics"
|
import { PromptCacheDiagnostics } from "./prompt-cache-diagnostics"
|
||||||
import { MAX_STEPS_PROMPT } from "./runner/max-steps"
|
import { MAX_STEPS_PROMPT } from "./runner/max-steps"
|
||||||
import PROMPT_DEFAULT from "./runner/prompt/base.txt"
|
import PROMPT_DEFAULT from "./runner/prompt/base.txt"
|
||||||
@@ -181,7 +182,6 @@ export const layer = Layer.effect(
|
|||||||
// The final Step keeps definitions available to protocols with native "none",
|
// The final Step keeps definitions available to protocols with native "none",
|
||||||
// preserving their prompt cache prefix. Calls are still rejected at execution.
|
// preserving their prompt cache prefix. Calls are still rejected at execution.
|
||||||
const tools = input.context.tools
|
const tools = input.context.tools
|
||||||
const promptCacheKey = /^ses_[0-9a-f]{64}$/.test(session.id) ? session.id.slice(4) : session.id
|
|
||||||
const system = [agent.info.system ? agent.info.system : PROMPT_DEFAULT, input.context.initial]
|
const system = [agent.info.system ? agent.info.system : PROMPT_DEFAULT, input.context.initial]
|
||||||
.filter((part) => part.length > 0)
|
.filter((part) => part.length > 0)
|
||||||
.map(SystemPart.make)
|
.map(SystemPart.make)
|
||||||
@@ -220,7 +220,7 @@ export const layer = Layer.effect(
|
|||||||
http: {
|
http: {
|
||||||
headers: SessionModelHeaders.make(session, app),
|
headers: SessionModelHeaders.make(session, app),
|
||||||
},
|
},
|
||||||
providerOptions: { [providerMetadataKey]: { promptCacheKey } },
|
promptCacheKey: SessionPromptCacheKey.make(session.id),
|
||||||
system: context.system,
|
system: context.system,
|
||||||
messages: boundImages(unsupportedParts(context.messages, resolved.capabilities)),
|
messages: boundImages(unsupportedParts(context.messages, resolved.capabilities)),
|
||||||
tools: Array.from(hooked, ([name, tool]) => ({ ...tool, name })),
|
tools: Array.from(hooked, ([name, tool]) => ({ ...tool, name })),
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
export * as SessionPromptCacheKey from "./prompt-cache-key"
|
||||||
|
|
||||||
|
import { SessionSchema } from "./schema"
|
||||||
|
|
||||||
|
export const make = (sessionID: SessionSchema.ID) =>
|
||||||
|
/^ses_[0-9a-f]{64}$/.test(sessionID) ? sessionID.slice(4) : sessionID
|
||||||
+257
-258
@@ -6,9 +6,9 @@ import { ChildProcess } from "effect/unstable/process"
|
|||||||
import { produce } from "immer"
|
import { produce } from "immer"
|
||||||
import { Shell } from "@opencode-ai/schema/shell"
|
import { Shell } from "@opencode-ai/schema/shell"
|
||||||
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
||||||
import { AppProcess } from "@opencode-ai/util/process"
|
|
||||||
import { Config } from "./config"
|
import { Config } from "./config"
|
||||||
import { Bus } from "./bus"
|
import { Bus } from "./bus"
|
||||||
|
import { Environment } from "./environment"
|
||||||
import { Location } from "./location"
|
import { Location } from "./location"
|
||||||
import { Global } from "@opencode-ai/util/global"
|
import { Global } from "@opencode-ai/util/global"
|
||||||
import { ShellSelect } from "./shell/select"
|
import { ShellSelect } from "./shell/select"
|
||||||
@@ -65,285 +65,284 @@ export interface Interface {
|
|||||||
|
|
||||||
export class Service extends Context.Service<Service, Interface>()("@opencode/Shell") {}
|
export class Service extends Context.Service<Service, Interface>()("@opencode/Shell") {}
|
||||||
|
|
||||||
export const layer = (options?: ShellSelect.Options) => Layer.effect(
|
export const layer = (options?: ShellSelect.Options) =>
|
||||||
Service,
|
Layer.effect(
|
||||||
Effect.gen(function* () {
|
Service,
|
||||||
const bus = yield* Bus.Service
|
Effect.gen(function* () {
|
||||||
const location = yield* Location.Service
|
const bus = yield* Bus.Service
|
||||||
const config = yield* Config.Service
|
const location = yield* Location.Service
|
||||||
const global = yield* Global.Service
|
const config = yield* Config.Service
|
||||||
const appProcess = yield* AppProcess.Service
|
const global = yield* Global.Service
|
||||||
const hooks = yield* PluginHooks.Service
|
const environment = yield* Environment.Service
|
||||||
const context = yield* Effect.context()
|
const hooks = yield* PluginHooks.Service
|
||||||
const runFork = Effect.runForkWith(context)
|
const context = yield* Effect.context()
|
||||||
const sessions = new Map<string, Active>()
|
const runFork = Effect.runForkWith(context)
|
||||||
const exitOrder: string[] = []
|
const sessions = new Map<string, Active>()
|
||||||
|
const exitOrder: string[] = []
|
||||||
|
|
||||||
const outputDir = path.join(global.data, "shell", location.project.id)
|
const outputDir = path.join(global.data, "shell", location.project.id)
|
||||||
const { mkdir, unlink } = yield* Effect.promise(() => import("fs/promises"))
|
const { mkdir, unlink } = yield* Effect.promise(() => import("fs/promises"))
|
||||||
const { createWriteStream, createReadStream } = yield* Effect.promise(() => import("fs"))
|
const { createWriteStream, createReadStream } = yield* Effect.promise(() => import("fs"))
|
||||||
yield* Effect.promise(() => mkdir(outputDir, { recursive: true }))
|
yield* Effect.promise(() => mkdir(outputDir, { recursive: true }))
|
||||||
|
|
||||||
yield* Effect.addFinalizer(() =>
|
yield* Effect.addFinalizer(() =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
for (const session of sessions.values()) {
|
for (const session of sessions.values()) {
|
||||||
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
||||||
// Unblock waiters still pending at teardown; succeed is a no-op once already resolved.
|
// Unblock waiters still pending at teardown; succeed is a no-op once already resolved.
|
||||||
yield* Deferred.fail(session.done, new NotFoundError({ id: Shell.ID.make(session.info.id) }))
|
yield* Deferred.fail(session.done, new NotFoundError({ id: Shell.ID.make(session.info.id) }))
|
||||||
|
}
|
||||||
|
sessions.clear()
|
||||||
|
exitOrder.length = 0
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
|
||||||
|
const require = Effect.fn("Shell.require")(function* (id: Shell.ID) {
|
||||||
|
const session = sessions.get(id)
|
||||||
|
if (!session) return yield* new NotFoundError({ id })
|
||||||
|
return session
|
||||||
|
})
|
||||||
|
|
||||||
|
const removeSession = Effect.fnUntraced(function* (id: Shell.ID) {
|
||||||
|
const session = sessions.get(id)
|
||||||
|
if (!session) return
|
||||||
|
sessions.delete(id)
|
||||||
|
const index = exitOrder.indexOf(id)
|
||||||
|
if (index !== -1) exitOrder.splice(index, 1)
|
||||||
|
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
||||||
|
// Unblock any wait still pending when the command is removed before it terminated.
|
||||||
|
yield* Deferred.fail(session.done, new NotFoundError({ id }))
|
||||||
|
yield* Effect.promise(() => unlink(session.file).catch(() => {}))
|
||||||
|
yield* bus.publish(Shell.Event.Deleted, { id })
|
||||||
|
})
|
||||||
|
|
||||||
|
const remove = Effect.fn("Shell.remove")(function* (id: Shell.ID) {
|
||||||
|
yield* require(id)
|
||||||
|
yield* removeSession(id)
|
||||||
|
})
|
||||||
|
|
||||||
|
const list = Effect.fn("Shell.list")(function* () {
|
||||||
|
return Array.from(sessions.values())
|
||||||
|
.filter((session) => session.info.status === "running")
|
||||||
|
.map((session) => session.info)
|
||||||
|
})
|
||||||
|
|
||||||
|
const get = Effect.fn("Shell.get")(function* (id: Shell.ID) {
|
||||||
|
return (yield* require(id)).info
|
||||||
|
})
|
||||||
|
|
||||||
|
const wait = Effect.fn("Shell.wait")(function* (id: Shell.ID) {
|
||||||
|
return yield* Deferred.await((yield* require(id)).done)
|
||||||
|
})
|
||||||
|
|
||||||
|
const timeout = Effect.fn("Shell.timeout")(function* (id: Shell.ID, duration: number) {
|
||||||
|
const session = yield* require(id)
|
||||||
|
if (session.info.status !== "running" || !session.timeout) return session.info
|
||||||
|
yield* session.timeout(duration)
|
||||||
|
return session.info
|
||||||
|
})
|
||||||
|
|
||||||
|
const resolve = () =>
|
||||||
|
config.entries().pipe(Effect.map((entries) => ShellSelect.preferred(Config.latest(entries, "shell"), options)))
|
||||||
|
|
||||||
|
const name = () => resolve().pipe(Effect.map(ShellSelect.name))
|
||||||
|
|
||||||
|
const output = Effect.fn("Shell.output")(function* (id: Shell.ID, input?: Shell.OutputInput) {
|
||||||
|
const session = yield* require(id)
|
||||||
|
const cursor = input?.cursor ?? 0
|
||||||
|
const limit = input?.limit ?? 65536
|
||||||
|
if (cursor >= session.size) return { output: "", cursor: session.size, size: session.size, truncated: false }
|
||||||
|
const start = Math.max(0, cursor)
|
||||||
|
const length = Math.min(limit, session.size - start)
|
||||||
|
const buffer = Buffer.alloc(length)
|
||||||
|
const bytesRead = yield* Effect.promise(
|
||||||
|
() =>
|
||||||
|
new Promise<number>((resolve) => {
|
||||||
|
const stream = createReadStream(session.file, { start, end: start + length - 1 })
|
||||||
|
let offset = 0
|
||||||
|
stream.on("data", (chunk: string | Buffer) => {
|
||||||
|
const bytes = Buffer.from(chunk)
|
||||||
|
bytes.copy(buffer, offset)
|
||||||
|
offset += bytes.length
|
||||||
|
})
|
||||||
|
stream.on("end", () => resolve(offset))
|
||||||
|
stream.on("error", () => resolve(0))
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
return {
|
||||||
|
output: buffer.subarray(0, bytesRead).toString("utf8"),
|
||||||
|
cursor: start + bytesRead,
|
||||||
|
size: session.size,
|
||||||
|
truncated: false,
|
||||||
}
|
}
|
||||||
sessions.clear()
|
})
|
||||||
exitOrder.length = 0
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
|
|
||||||
const require = Effect.fn("Shell.require")(function* (id: Shell.ID) {
|
const create = Effect.fn("Shell.create")(function* <E = never, R = never>(
|
||||||
const session = sessions.get(id)
|
input: Shell.CreateInput,
|
||||||
if (!session) return yield* new NotFoundError({ id })
|
before?: (input: ShellCreateBefore) => Effect.Effect<void, E, R>,
|
||||||
return session
|
) {
|
||||||
})
|
const invocation: ShellCreateBefore = {
|
||||||
|
command: input.command,
|
||||||
|
cwd: input.cwd ?? location.directory,
|
||||||
|
timeout: input.timeout,
|
||||||
|
shell: yield* resolve(),
|
||||||
|
env: {
|
||||||
|
...process.env,
|
||||||
|
TERM: "xterm-256color",
|
||||||
|
OPENCODE_TERMINAL: "1",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
yield* hooks.trigger("shell", "create.before", invocation)
|
||||||
|
if (before) yield* before(invocation)
|
||||||
|
|
||||||
const removeSession = Effect.fnUntraced(function* (id: Shell.ID) {
|
const id = Shell.ID.ascending()
|
||||||
const session = sessions.get(id)
|
const args = ShellSelect.args(invocation.shell, invocation.command)
|
||||||
if (!session) return
|
const file = path.join(outputDir, `${id}.out`)
|
||||||
sessions.delete(id)
|
|
||||||
const index = exitOrder.indexOf(id)
|
|
||||||
if (index !== -1) exitOrder.splice(index, 1)
|
|
||||||
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
|
||||||
// Unblock any wait still pending when the command is removed before it terminated.
|
|
||||||
yield* Deferred.fail(session.done, new NotFoundError({ id }))
|
|
||||||
yield* Effect.promise(() => unlink(session.file).catch(() => {}))
|
|
||||||
yield* bus.publish(Shell.Event.Deleted, { id })
|
|
||||||
})
|
|
||||||
|
|
||||||
const remove = Effect.fn("Shell.remove")(function* (id: Shell.ID) {
|
const info: Info = {
|
||||||
yield* require(id)
|
id,
|
||||||
yield* removeSession(id)
|
status: "running",
|
||||||
})
|
command: invocation.command,
|
||||||
|
cwd: invocation.cwd,
|
||||||
|
shell: invocation.shell,
|
||||||
|
file,
|
||||||
|
metadata: input.metadata ?? {},
|
||||||
|
time: { started: Date.now() },
|
||||||
|
}
|
||||||
|
|
||||||
const list = Effect.fn("Shell.list")(function* () {
|
// Spawn through the Environment and stream combined output to the file. The handle is scope-bound, so
|
||||||
return Array.from(sessions.values())
|
// the managing fiber keeps its scope open until the command terminates (it awaits `done` at the
|
||||||
.filter((session) => session.info.status === "running")
|
// end). `create` returns once `ready` resolves with the registered session.
|
||||||
.map((session) => session.info)
|
const ready = Deferred.makeUnsafe<Active>()
|
||||||
})
|
runFork(
|
||||||
|
Effect.scoped(
|
||||||
const get = Effect.fn("Shell.get")(function* (id: Shell.ID) {
|
Effect.gen(function* () {
|
||||||
return (yield* require(id)).info
|
const handle = yield* environment.spawner.spawn(
|
||||||
})
|
ChildProcess.make(invocation.shell, args, {
|
||||||
|
cwd: invocation.cwd,
|
||||||
const wait = Effect.fn("Shell.wait")(function* (id: Shell.ID) {
|
env: invocation.env,
|
||||||
return yield* Deferred.await((yield* require(id)).done)
|
stdin: "ignore",
|
||||||
})
|
detached: process.platform !== "win32",
|
||||||
|
forceKillAfter: Duration.seconds(3),
|
||||||
const timeout = Effect.fn("Shell.timeout")(function* (id: Shell.ID, duration: number) {
|
|
||||||
const session = yield* require(id)
|
|
||||||
if (session.info.status !== "running" || !session.timeout) return session.info
|
|
||||||
yield* session.timeout(duration)
|
|
||||||
return session.info
|
|
||||||
})
|
|
||||||
|
|
||||||
const resolve = () =>
|
|
||||||
config
|
|
||||||
.entries()
|
|
||||||
.pipe(Effect.map((entries) => ShellSelect.preferred(Config.latest(entries, "shell"), options)))
|
|
||||||
|
|
||||||
const name = () => resolve().pipe(Effect.map(ShellSelect.name))
|
|
||||||
|
|
||||||
const output = Effect.fn("Shell.output")(function* (id: Shell.ID, input?: Shell.OutputInput) {
|
|
||||||
const session = yield* require(id)
|
|
||||||
const cursor = input?.cursor ?? 0
|
|
||||||
const limit = input?.limit ?? 65536
|
|
||||||
if (cursor >= session.size) return { output: "", cursor: session.size, size: session.size, truncated: false }
|
|
||||||
const start = Math.max(0, cursor)
|
|
||||||
const length = Math.min(limit, session.size - start)
|
|
||||||
const buffer = Buffer.alloc(length)
|
|
||||||
const bytesRead = yield* Effect.promise(
|
|
||||||
() =>
|
|
||||||
new Promise<number>((resolve) => {
|
|
||||||
const stream = createReadStream(session.file, { start, end: start + length - 1 })
|
|
||||||
let offset = 0
|
|
||||||
stream.on("data", (chunk: string | Buffer) => {
|
|
||||||
const bytes = Buffer.from(chunk)
|
|
||||||
bytes.copy(buffer, offset)
|
|
||||||
offset += bytes.length
|
|
||||||
})
|
|
||||||
stream.on("end", () => resolve(offset))
|
|
||||||
stream.on("error", () => resolve(0))
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
return {
|
|
||||||
output: buffer.subarray(0, bytesRead).toString("utf8"),
|
|
||||||
cursor: start + bytesRead,
|
|
||||||
size: session.size,
|
|
||||||
truncated: false,
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
const create = Effect.fn("Shell.create")(function* <E = never, R = never>(
|
|
||||||
input: Shell.CreateInput,
|
|
||||||
before?: (input: ShellCreateBefore) => Effect.Effect<void, E, R>,
|
|
||||||
) {
|
|
||||||
const invocation: ShellCreateBefore = {
|
|
||||||
command: input.command,
|
|
||||||
cwd: input.cwd ?? location.directory,
|
|
||||||
timeout: input.timeout,
|
|
||||||
shell: yield* resolve(),
|
|
||||||
env: {
|
|
||||||
...process.env,
|
|
||||||
TERM: "xterm-256color",
|
|
||||||
OPENCODE_TERMINAL: "1",
|
|
||||||
},
|
|
||||||
}
|
|
||||||
yield* hooks.trigger("shell", "create.before", invocation)
|
|
||||||
if (before) yield* before(invocation)
|
|
||||||
|
|
||||||
const id = Shell.ID.ascending()
|
|
||||||
const args = ShellSelect.args(invocation.shell, invocation.command)
|
|
||||||
const file = path.join(outputDir, `${id}.out`)
|
|
||||||
|
|
||||||
const info: Info = {
|
|
||||||
id,
|
|
||||||
status: "running",
|
|
||||||
command: invocation.command,
|
|
||||||
cwd: invocation.cwd,
|
|
||||||
shell: invocation.shell,
|
|
||||||
file,
|
|
||||||
metadata: input.metadata ?? {},
|
|
||||||
time: { started: Date.now() },
|
|
||||||
}
|
|
||||||
|
|
||||||
// Spawn via AppProcess and stream combined output to the file. The handle is scope-bound, so
|
|
||||||
// the managing fiber keeps its scope open until the command terminates (it awaits `done` at the
|
|
||||||
// end). `create` returns once `ready` resolves with the registered session.
|
|
||||||
const ready = Deferred.makeUnsafe<Active>()
|
|
||||||
runFork(
|
|
||||||
Effect.scoped(
|
|
||||||
Effect.gen(function* () {
|
|
||||||
const handle = yield* appProcess.spawn(
|
|
||||||
ChildProcess.make(invocation.shell, args, {
|
|
||||||
cwd: invocation.cwd,
|
|
||||||
env: invocation.env,
|
|
||||||
stdin: "ignore",
|
|
||||||
detached: process.platform !== "win32",
|
|
||||||
forceKillAfter: Duration.seconds(3),
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
const session: Active = {
|
|
||||||
info: produce(info, (draft) => {
|
|
||||||
draft.pid = handle.pid
|
|
||||||
}),
|
|
||||||
file,
|
|
||||||
size: 0,
|
|
||||||
done: Deferred.makeUnsafe<Info, NotFoundError>(),
|
|
||||||
}
|
|
||||||
sessions.set(id, session)
|
|
||||||
|
|
||||||
const stream = createWriteStream(file)
|
|
||||||
const outputDone = Deferred.makeUnsafe<void>()
|
|
||||||
const pump = handle.all.pipe(
|
|
||||||
Stream.runForEach((chunk: Uint8Array) =>
|
|
||||||
Effect.sync(() => {
|
|
||||||
stream.write(chunk)
|
|
||||||
session.size += chunk.length
|
|
||||||
}),
|
}),
|
||||||
),
|
)
|
||||||
)
|
const session: Active = {
|
||||||
runFork(
|
info: produce(info, (draft) => {
|
||||||
Effect.gen(function* () {
|
draft.pid = handle.pid
|
||||||
yield* pump.pipe(Effect.catch(() => Effect.void))
|
|
||||||
yield* Effect.promise(
|
|
||||||
() =>
|
|
||||||
new Promise<void>((resolve) => {
|
|
||||||
stream.end(() => resolve())
|
|
||||||
}),
|
|
||||||
)
|
|
||||||
yield* Deferred.succeed(outputDone, undefined)
|
|
||||||
}).pipe(Effect.catch(() => Deferred.succeed(outputDone, undefined))),
|
|
||||||
)
|
|
||||||
yield* Effect.promise(
|
|
||||||
() =>
|
|
||||||
new Promise<void>((resolve) => {
|
|
||||||
stream.once("open", () => resolve())
|
|
||||||
stream.once("error", () => resolve())
|
|
||||||
}),
|
}),
|
||||||
)
|
file,
|
||||||
|
size: 0,
|
||||||
|
done: Deferred.makeUnsafe<Info, NotFoundError>(),
|
||||||
|
}
|
||||||
|
sessions.set(id, session)
|
||||||
|
|
||||||
const finish = (status: Info["status"], exit?: number, beforeWait = Effect.void) =>
|
const stream = createWriteStream(file)
|
||||||
Effect.gen(function* () {
|
const outputDone = Deferred.makeUnsafe<void>()
|
||||||
if (session.info.status !== "running") return
|
const pump = handle.all.pipe(
|
||||||
session.info = produce(session.info, (draft) => {
|
Stream.runForEach((chunk: Uint8Array) =>
|
||||||
draft.status = status
|
Effect.sync(() => {
|
||||||
if (exit !== undefined) draft.exit = exit
|
stream.write(chunk)
|
||||||
draft.time.completed = Date.now()
|
session.size += chunk.length
|
||||||
})
|
}),
|
||||||
yield* beforeWait
|
),
|
||||||
yield* Deferred.await(outputDone)
|
)
|
||||||
// Resolve waiters with the terminal Info before any retention eviction, so an evicted
|
runFork(
|
||||||
// session still reports success rather than the removal NotFoundError. This runs before
|
Effect.gen(function* () {
|
||||||
// the timeout-fiber interrupt below, which on the timeout path would otherwise cancel
|
yield* pump.pipe(Effect.catch(() => Effect.void))
|
||||||
// this very fiber (finish is invoked by the timeout fiber) before waiters are resolved.
|
yield* Effect.promise(
|
||||||
yield* Deferred.succeed(session.done, session.info)
|
() =>
|
||||||
yield* bus.publish(Shell.Event.Exited, {
|
new Promise<void>((resolve) => {
|
||||||
id,
|
stream.end(() => resolve())
|
||||||
...(exit !== undefined ? { exit } : {}),
|
}),
|
||||||
status,
|
)
|
||||||
})
|
yield* Deferred.succeed(outputDone, undefined)
|
||||||
exitOrder.push(id)
|
}).pipe(Effect.catch(() => Deferred.succeed(outputDone, undefined))),
|
||||||
while (exitOrder.length > EXITED_LIMIT) {
|
)
|
||||||
const oldest = exitOrder[0]
|
yield* Effect.promise(
|
||||||
if (!oldest) break
|
() =>
|
||||||
yield* removeSession(Shell.ID.make(oldest))
|
new Promise<void>((resolve) => {
|
||||||
}
|
stream.once("open", () => resolve())
|
||||||
// Cancel a pending timeout once the command exits on its own. Interrupting last avoids
|
stream.once("error", () => resolve())
|
||||||
// aborting finish when finish itself runs on the timeout fiber.
|
}),
|
||||||
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
)
|
||||||
})
|
|
||||||
|
|
||||||
session.timeout = (duration) =>
|
const finish = (status: Info["status"], exit?: number, beforeWait = Effect.void) =>
|
||||||
Effect.gen(function* () {
|
Effect.gen(function* () {
|
||||||
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
if (session.info.status !== "running") return
|
||||||
session.timeoutFiber = undefined
|
session.info = produce(session.info, (draft) => {
|
||||||
if (duration === 0 || session.info.status !== "running") return
|
draft.status = status
|
||||||
session.timeoutFiber = runFork(
|
if (exit !== undefined) draft.exit = exit
|
||||||
Effect.sleep(Duration.millis(duration)).pipe(
|
draft.time.completed = Date.now()
|
||||||
Effect.flatMap(() =>
|
})
|
||||||
finish("timeout", undefined, handle.kill().pipe(Effect.catch(() => Effect.void))),
|
yield* beforeWait
|
||||||
|
yield* Deferred.await(outputDone)
|
||||||
|
// Resolve waiters with the terminal Info before any retention eviction, so an evicted
|
||||||
|
// session still reports success rather than the removal NotFoundError. This runs before
|
||||||
|
// the timeout-fiber interrupt below, which on the timeout path would otherwise cancel
|
||||||
|
// this very fiber (finish is invoked by the timeout fiber) before waiters are resolved.
|
||||||
|
yield* Deferred.succeed(session.done, session.info)
|
||||||
|
yield* bus.publish(Shell.Event.Exited, {
|
||||||
|
id,
|
||||||
|
...(exit !== undefined ? { exit } : {}),
|
||||||
|
status,
|
||||||
|
})
|
||||||
|
exitOrder.push(id)
|
||||||
|
while (exitOrder.length > EXITED_LIMIT) {
|
||||||
|
const oldest = exitOrder[0]
|
||||||
|
if (!oldest) break
|
||||||
|
yield* removeSession(Shell.ID.make(oldest))
|
||||||
|
}
|
||||||
|
// Cancel a pending timeout once the command exits on its own. Interrupting last avoids
|
||||||
|
// aborting finish when finish itself runs on the timeout fiber.
|
||||||
|
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
||||||
|
})
|
||||||
|
|
||||||
|
session.timeout = (duration) =>
|
||||||
|
Effect.gen(function* () {
|
||||||
|
if (session.timeoutFiber) yield* Fiber.interrupt(session.timeoutFiber)
|
||||||
|
session.timeoutFiber = undefined
|
||||||
|
if (duration === 0 || session.info.status !== "running") return
|
||||||
|
session.timeoutFiber = runFork(
|
||||||
|
Effect.sleep(Duration.millis(duration)).pipe(
|
||||||
|
Effect.flatMap(() =>
|
||||||
|
finish("timeout", undefined, handle.kill().pipe(Effect.catch(() => Effect.void))),
|
||||||
|
),
|
||||||
|
Effect.catch(() => Effect.void),
|
||||||
),
|
),
|
||||||
Effect.catch(() => Effect.void),
|
)
|
||||||
),
|
})
|
||||||
)
|
|
||||||
})
|
|
||||||
|
|
||||||
yield* session.timeout(invocation.timeout)
|
yield* session.timeout(invocation.timeout)
|
||||||
|
|
||||||
runFork(
|
runFork(
|
||||||
handle.exitCode.pipe(
|
handle.exitCode.pipe(
|
||||||
Effect.flatMap((code) => finish("exited", code)),
|
Effect.flatMap((code) => finish("exited", code)),
|
||||||
Effect.catch(() => Effect.void),
|
Effect.catch(() => Effect.void),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
yield* bus.publish(Shell.Event.Created, { info })
|
yield* bus.publish(Shell.Event.Created, { info })
|
||||||
yield* Deferred.succeed(ready, session)
|
yield* Deferred.succeed(ready, session)
|
||||||
// Hold the handle's scope open until the command terminates; closing it earlier would
|
// Hold the handle's scope open until the command terminates; closing it earlier would
|
||||||
// release (kill) the process before its exit is observed.
|
// release (kill) the process before its exit is observed.
|
||||||
yield* Deferred.await(session.done).pipe(Effect.catch(() => Effect.void))
|
yield* Deferred.await(session.done).pipe(Effect.catch(() => Effect.void))
|
||||||
}),
|
}),
|
||||||
).pipe(Effect.catch(() => Effect.void)),
|
).pipe(Effect.catch(() => Effect.void)),
|
||||||
)
|
)
|
||||||
|
|
||||||
const session = yield* Deferred.await(ready)
|
const session = yield* Deferred.await(ready)
|
||||||
return session.info
|
return session.info
|
||||||
})
|
})
|
||||||
|
|
||||||
return Service.of({ name, create, list, get, wait, timeout, output, remove })
|
return Service.of({ name, create, list, get, wait, timeout, output, remove })
|
||||||
}),
|
}),
|
||||||
)
|
)
|
||||||
|
|
||||||
export function configured(options?: ShellSelect.Options) {
|
export function configured(options?: ShellSelect.Options) {
|
||||||
return makeLocationNode({
|
return makeLocationNode({
|
||||||
service: Service,
|
service: Service,
|
||||||
layer: layer(options),
|
layer: layer(options),
|
||||||
deps: [Bus.node, Location.node, Config.node, Global.node, AppProcess.node, PluginHooks.node],
|
deps: [Bus.node, Location.node, Config.node, Global.node, Environment.node, PluginHooks.node],
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+105
-34
@@ -2,8 +2,7 @@ export * as Skill from "./skill"
|
|||||||
|
|
||||||
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
|
||||||
import path from "path"
|
import path from "path"
|
||||||
import { Context, Effect, Layer, Schema, Stream, Types } from "effect"
|
import { Context, Effect, FiberMap, Layer, PubSub, Schema, Semaphore, Stream, Types } from "effect"
|
||||||
import { FileSystem } from "@opencode-ai/schema/filesystem"
|
|
||||||
import { Skill } from "@opencode-ai/schema/skill"
|
import { Skill } from "@opencode-ai/schema/skill"
|
||||||
import { Agent } from "./agent"
|
import { Agent } from "./agent"
|
||||||
import { ConfigMarkdown } from "./config/markdown"
|
import { ConfigMarkdown } from "./config/markdown"
|
||||||
@@ -13,6 +12,7 @@ import { Permission } from "./permission"
|
|||||||
import { AbsolutePath } from "./schema"
|
import { AbsolutePath } from "./schema"
|
||||||
import { SkillDiscovery } from "./skill/discovery"
|
import { SkillDiscovery } from "./skill/discovery"
|
||||||
import { State } from "./state"
|
import { State } from "./state"
|
||||||
|
import { Watcher } from "./filesystem/watcher"
|
||||||
|
|
||||||
export const DirectorySource = Skill.DirectorySource
|
export const DirectorySource = Skill.DirectorySource
|
||||||
export type DirectorySource = Skill.DirectorySource
|
export type DirectorySource = Skill.DirectorySource
|
||||||
@@ -81,6 +81,82 @@ const layer = Layer.effect(
|
|||||||
const discovery = yield* SkillDiscovery.Service
|
const discovery = yield* SkillDiscovery.Service
|
||||||
const fs = yield* FSUtil.Service
|
const fs = yield* FSUtil.Service
|
||||||
const bus = yield* Bus.Service
|
const bus = yield* Bus.Service
|
||||||
|
const watcher = yield* Watcher.Service
|
||||||
|
const cache = new Map<string, { skills: Info[]; paths: readonly string[] }>()
|
||||||
|
const watches = yield* FiberMap.make<string>()
|
||||||
|
const lock = Semaphore.makeUnsafe(1)
|
||||||
|
const changes = yield* PubSub.unbounded<string>()
|
||||||
|
|
||||||
|
const invalidate = Effect.fn("Skill.invalidateFromWatcher")(function* (file: string) {
|
||||||
|
const changed = yield* lock.withPermit(
|
||||||
|
Effect.gen(function* () {
|
||||||
|
const invalidated = Array.from(cache.entries()).filter(([, loaded]) =>
|
||||||
|
loaded.paths.some((item) => FSUtil.overlaps(item, file)),
|
||||||
|
)
|
||||||
|
if (invalidated.length === 0) return false
|
||||||
|
cache.clear()
|
||||||
|
yield* FiberMap.clear(watches)
|
||||||
|
yield* Effect.logInfo("skill cache invalidated", {
|
||||||
|
file,
|
||||||
|
sources: invalidated.map(([key]) => key),
|
||||||
|
skills: invalidated.flatMap(([, loaded]) => loaded.skills.map((skill) => skill.id)),
|
||||||
|
})
|
||||||
|
return true
|
||||||
|
}),
|
||||||
|
)
|
||||||
|
if (!changed) return
|
||||||
|
yield* bus.publish(Skill.Event.Updated, {}).pipe(Effect.asVoid)
|
||||||
|
})
|
||||||
|
|
||||||
|
yield* Stream.fromPubSub(changes).pipe(Stream.runForEach(invalidate), Effect.forkScoped({ startImmediately: true }))
|
||||||
|
|
||||||
|
const watch = Effect.fn("Skill.watch")(function* (directory: string, type: Watcher.WatchInput["type"]) {
|
||||||
|
const target = path.resolve(directory)
|
||||||
|
const updates = yield* watcher.subscribe(
|
||||||
|
type === "file" ? { path: target, type: "file" } : { path: target, type: "directory" },
|
||||||
|
)
|
||||||
|
yield* FiberMap.run(
|
||||||
|
watches,
|
||||||
|
`${type}:${target}`,
|
||||||
|
updates.pipe(Stream.runForEach((update) => PubSub.publish(changes, update.path).pipe(Effect.asVoid))),
|
||||||
|
{
|
||||||
|
onlyIfMissing: true,
|
||||||
|
startImmediately: true,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
})
|
||||||
|
|
||||||
|
function firstMissing(target: string): Effect.Effect<string | undefined> {
|
||||||
|
const parent = path.dirname(target)
|
||||||
|
if (parent === target) return Effect.succeed(undefined)
|
||||||
|
return fs.isDir(parent).pipe(Effect.flatMap((exists) => (exists ? Effect.succeed(target) : firstMissing(parent))))
|
||||||
|
}
|
||||||
|
|
||||||
|
const watchDirectory: (directory: string) => Effect.Effect<string[]> = Effect.fn("Skill.watchDirectory")(function* (
|
||||||
|
directory: string,
|
||||||
|
) {
|
||||||
|
const target = path.resolve(directory)
|
||||||
|
const resolved = yield* fs.realPath(directory).pipe(Effect.catch(() => Effect.succeed(undefined)))
|
||||||
|
if (resolved) {
|
||||||
|
yield* watch(resolved, "directory")
|
||||||
|
if (resolved !== target) {
|
||||||
|
yield* watch(target, "file")
|
||||||
|
}
|
||||||
|
return resolved === target ? [target] : [target, resolved]
|
||||||
|
}
|
||||||
|
const missing = yield* firstMissing(target)
|
||||||
|
if (missing) yield* watch(missing, "file")
|
||||||
|
if (
|
||||||
|
yield* fs.realPath(directory).pipe(
|
||||||
|
Effect.as(true),
|
||||||
|
Effect.catch(() => Effect.succeed(false)),
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
if (missing) yield* FiberMap.remove(watches, `file:${path.resolve(missing)}`)
|
||||||
|
return yield* watchDirectory(directory)
|
||||||
|
}
|
||||||
|
return [target]
|
||||||
|
})
|
||||||
|
|
||||||
const state = State.create<Data, Draft>({
|
const state = State.create<Data, Draft>({
|
||||||
name: "skill",
|
name: "skill",
|
||||||
@@ -92,7 +168,10 @@ const layer = Layer.effect(
|
|||||||
},
|
},
|
||||||
list: () => draft.sources as Source[],
|
list: () => draft.sources as Source[],
|
||||||
}),
|
}),
|
||||||
finalize: () => bus.publish(Skill.Event.Updated, {}).pipe(Effect.asVoid),
|
finalize: () =>
|
||||||
|
lock
|
||||||
|
.withPermit(FiberMap.clear(watches).pipe(Effect.andThen(Effect.sync(() => cache.clear())), Effect.asVoid))
|
||||||
|
.pipe(Effect.andThen(bus.publish(Skill.Event.Updated, {})), Effect.asVoid),
|
||||||
})
|
})
|
||||||
|
|
||||||
const load = Effect.fn("Skill.load")(function* (source: Source) {
|
const load = Effect.fn("Skill.load")(function* (source: Source) {
|
||||||
@@ -104,14 +183,22 @@ const layer = Layer.effect(
|
|||||||
directories: [],
|
directories: [],
|
||||||
skills: [source.skill.id],
|
skills: [source.skill.id],
|
||||||
})
|
})
|
||||||
return { skills: [source.skill], directories: [] }
|
return { skills: [source.skill], paths: [] }
|
||||||
}
|
}
|
||||||
const directories = source.type === "directory" ? [source.path] : yield* discovery.pull(source.url)
|
const directories = source.type === "directory" ? [source.path] : yield* discovery.pull(source.url)
|
||||||
|
const roots = (yield* Effect.forEach(directories, watchDirectory)).flat()
|
||||||
|
const paths = [...roots]
|
||||||
for (const directory of directories) {
|
for (const directory of directories) {
|
||||||
const files = yield* fs
|
const files = yield* fs
|
||||||
.scan("{*.md,**/SKILL.md}", { cwd: directory, absolute: true, include: "file", symlink: true, dot: true })
|
.scan("{*.md,**/SKILL.md}", { cwd: directory, absolute: true, include: "file", symlink: true, dot: true })
|
||||||
.pipe(Effect.catch(() => Effect.succeed([] as string[])))
|
.pipe(Effect.catch(() => Effect.succeed([] as string[])))
|
||||||
for (const filepath of files.toSorted()) {
|
for (const filepath of files.toSorted()) {
|
||||||
|
const resolved = yield* fs.realPath(filepath).pipe(Effect.catch(() => Effect.succeed(filepath)))
|
||||||
|
if (!roots.some((root) => FSUtil.contains(root, resolved))) {
|
||||||
|
const external = path.dirname(resolved)
|
||||||
|
paths.push(external)
|
||||||
|
yield* watch(external, "directory")
|
||||||
|
}
|
||||||
const content = yield* fs.readFileStringSafe(filepath).pipe(Effect.catch(() => Effect.succeed(undefined)))
|
const content = yield* fs.readFileStringSafe(filepath).pipe(Effect.catch(() => Effect.succeed(undefined)))
|
||||||
if (!content) continue
|
if (!content) continue
|
||||||
const markdown = ConfigMarkdown.parseOption(content)
|
const markdown = ConfigMarkdown.parseOption(content)
|
||||||
@@ -139,38 +226,22 @@ const layer = Layer.effect(
|
|||||||
directories,
|
directories,
|
||||||
skills: skills.map((skill) => skill.id),
|
skills: skills.map((skill) => skill.id),
|
||||||
})
|
})
|
||||||
return { skills, directories }
|
return { skills, paths }
|
||||||
})
|
})
|
||||||
|
|
||||||
const cache = new Map<string, { skills: Info[]; directories: readonly string[] }>()
|
|
||||||
const invalidate = Effect.fn("Skill.invalidateFromWatcher")(function* (file: string) {
|
|
||||||
const invalidated = Array.from(cache.entries()).filter(([, loaded]) =>
|
|
||||||
loaded.directories.some((directory) => FSUtil.contains(directory, file)),
|
|
||||||
)
|
|
||||||
if (invalidated.length === 0) return
|
|
||||||
for (const [key] of invalidated) cache.delete(key)
|
|
||||||
yield* Effect.logInfo("skill cache invalidated", {
|
|
||||||
file,
|
|
||||||
sources: invalidated.map(([key]) => key),
|
|
||||||
skills: invalidated.flatMap(([, loaded]) => loaded.skills.map((skill) => skill.id)),
|
|
||||||
})
|
|
||||||
yield* bus.publish(Skill.Event.Updated, {}).pipe(Effect.asVoid)
|
|
||||||
})
|
|
||||||
|
|
||||||
yield* bus.subscribe(FileSystem.Event.Changed).pipe(
|
|
||||||
Stream.runForEach((event) => invalidate(event.data.file)),
|
|
||||||
Effect.forkScoped({ startImmediately: true }),
|
|
||||||
)
|
|
||||||
|
|
||||||
const list = Effect.fn("Skill.list")(function* () {
|
const list = Effect.fn("Skill.list")(function* () {
|
||||||
const skills = new Map<ID, Info>()
|
return yield* lock.withPermit(
|
||||||
for (const source of state.get().sources) {
|
Effect.gen(function* () {
|
||||||
const key = Source.key(source)
|
const skills = new Map<ID, Info>()
|
||||||
const loaded = cache.get(key) ?? (yield* load(source))
|
for (const source of state.get().sources) {
|
||||||
cache.set(key, loaded)
|
const key = Source.key(source)
|
||||||
for (const skill of loaded.skills) skills.set(skill.id, skill)
|
const loaded = cache.get(key) ?? (yield* load(source))
|
||||||
}
|
cache.set(key, loaded)
|
||||||
return Array.from(skills.values())
|
for (const skill of loaded.skills) skills.set(skill.id, skill)
|
||||||
|
}
|
||||||
|
return Array.from(skills.values())
|
||||||
|
}),
|
||||||
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
return Service.of({
|
return Service.of({
|
||||||
@@ -187,5 +258,5 @@ const layer = Layer.effect(
|
|||||||
export const node = makeLocationNode({
|
export const node = makeLocationNode({
|
||||||
service: Service,
|
service: Service,
|
||||||
layer,
|
layer,
|
||||||
deps: [SkillDiscovery.node, FSUtil.node, Bus.node],
|
deps: [SkillDiscovery.node, FSUtil.node, Bus.node, Watcher.node],
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ const update = (previous: ReadonlyArray<Summary>, current: ReadonlyArray<Summary
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface Interface {
|
export interface Interface {
|
||||||
readonly load: (agent: Agent.Selection) => Effect.Effect<Instructions.Instructions>
|
readonly load: (agent: Agent.Selection) => Effect.Effect<Instructions.List>
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Service extends Context.Service<Service, Interface>()("@opencode/SkillInstructions") {}
|
export class Service extends Context.Service<Service, Interface>()("@opencode/SkillInstructions") {}
|
||||||
|
|||||||
@@ -118,13 +118,12 @@ const layer = Layer.effect(
|
|||||||
yield* hooks.trigger("tool", "execute.after", afterEvent)
|
yield* hooks.trigger("tool", "execute.after", afterEvent)
|
||||||
return yield* afterEvent.error
|
return yield* afterEvent.error
|
||||||
}
|
}
|
||||||
const content = yield* normalizeImages(execution.value.content)
|
|
||||||
const afterEvent: PluginHooks.Domains["tool"]["execute.after"] = {
|
const afterEvent: PluginHooks.Domains["tool"]["execute.after"] = {
|
||||||
...base,
|
...base,
|
||||||
status: "completed",
|
status: "completed",
|
||||||
result: {
|
result: {
|
||||||
...(execution.value.output === undefined ? {} : { output: execution.value.output }),
|
...(execution.value.output === undefined ? {} : { output: execution.value.output }),
|
||||||
content: content.length > 0 ? content : execution.value.content,
|
content: execution.value.content,
|
||||||
...(execution.value.metadata === undefined ? {} : { metadata: execution.value.metadata }),
|
...(execution.value.metadata === undefined ? {} : { metadata: execution.value.metadata }),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,9 +11,11 @@ import { ToolFailure } from "@opencode-ai/ai"
|
|||||||
import { FileDiff } from "@opencode-ai/schema/file-diff"
|
import { FileDiff } from "@opencode-ai/schema/file-diff"
|
||||||
import { Bom } from "@opencode-ai/util/bom"
|
import { Bom } from "@opencode-ai/util/bom"
|
||||||
import { Effect, Schema } from "effect"
|
import { Effect, Schema } from "effect"
|
||||||
|
import path from "path"
|
||||||
|
import { Environment } from "../../environment"
|
||||||
import { FileMutation } from "../../file-mutation"
|
import { FileMutation } from "../../file-mutation"
|
||||||
import { Formatter } from "../../formatter"
|
import { Formatter } from "../../formatter"
|
||||||
import { FSUtil } from "@opencode-ai/util/fs-util"
|
import { Location } from "../../location"
|
||||||
import { LocationMutation } from "../../location-mutation"
|
import { LocationMutation } from "../../location-mutation"
|
||||||
import { Permission } from "../../permission"
|
import { Permission } from "../../permission"
|
||||||
import { fileDiff } from "./file-diff"
|
import { fileDiff } from "./file-diff"
|
||||||
@@ -109,9 +111,10 @@ export const Plugin = {
|
|||||||
id: "opencode.tool.edit",
|
id: "opencode.tool.edit",
|
||||||
effect: Effect.fn("EditTool.Plugin")(function* (ctx: PluginContext) {
|
effect: Effect.fn("EditTool.Plugin")(function* (ctx: PluginContext) {
|
||||||
const mutation = yield* LocationMutation.Service
|
const mutation = yield* LocationMutation.Service
|
||||||
const files = yield* FileMutation.Service
|
const fileMutation = yield* FileMutation.Service
|
||||||
|
const environment = yield* Environment.Service
|
||||||
const formatter = yield* Formatter.Service
|
const formatter = yield* Formatter.Service
|
||||||
const fs = yield* FSUtil.Service
|
const location = yield* Location.Service
|
||||||
const permission = yield* Permission.Service
|
const permission = yield* Permission.Service
|
||||||
|
|
||||||
yield* ctx.tool
|
yield* ctx.tool
|
||||||
@@ -152,17 +155,16 @@ export const Plugin = {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
const info = yield* fs
|
const original = yield* FileMutation.readText(environment.files, target.absolute).pipe(
|
||||||
.stat(target.absolute)
|
Effect.catchTag("Environment.NotFound", () =>
|
||||||
.pipe(
|
Effect.fail(new ToolFailure({ message: `File not found: ${input.path}` })),
|
||||||
Effect.catchReason("PlatformError", "NotFound", () =>
|
),
|
||||||
Effect.fail(new ToolFailure({ message: `File not found: ${input.path}` })),
|
Effect.catchTag("Environment.WrongKind", (error) =>
|
||||||
),
|
error.actual === "directory"
|
||||||
)
|
? Effect.fail(new ToolFailure({ message: `Path is a directory, not a file: ${input.path}` }))
|
||||||
if (info.type === "Directory") {
|
: Effect.fail(new ToolFailure({ message: `Unable to edit ${input.path}`, error })),
|
||||||
return yield* new ToolFailure({ message: `Path is a directory, not a file: ${input.path}` })
|
),
|
||||||
}
|
)
|
||||||
const original = yield* Bom.readFile(fs, target.absolute)
|
|
||||||
const source = original.text
|
const source = original.text
|
||||||
const ending = source.includes(crlf) ? crlf : "\n"
|
const ending = source.includes(crlf) ? crlf : "\n"
|
||||||
const oldString = input.oldString.replaceAll(crlf, "\n").replaceAll("\n", ending)
|
const oldString = input.oldString.replaceAll(crlf, "\n").replaceAll("\n", ending)
|
||||||
@@ -204,19 +206,20 @@ export const Plugin = {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
const replacementBom = replaced.startsWith("\uFEFF")
|
const replacementBom = replaced.startsWith("\uFEFF")
|
||||||
const result = yield* files.write({
|
const result = yield* fileMutation.write({
|
||||||
target,
|
target,
|
||||||
content: Bom.join(replaced, original.bom || replacementBom),
|
content: Bom.join(replaced, original.bom || replacementBom),
|
||||||
})
|
})
|
||||||
const bom = original.bom || replacementBom
|
const bom = original.bom || replacementBom
|
||||||
const formatted = (yield* formatter.file(target.absolute))
|
const formatted = (yield* formatter.file(target.absolute))
|
||||||
? yield* Bom.syncFile(fs, target.absolute, bom)
|
? yield* FileMutation.syncTextBom(environment.files, target.absolute, bom)
|
||||||
: (yield* Bom.readFile(fs, target.absolute)).text
|
: (yield* FileMutation.readText(environment.files, target.absolute)).text
|
||||||
return {
|
return {
|
||||||
files: [fileDiff(result.resource, source, formatted)],
|
files: [fileDiff(result.resource, source, formatted)],
|
||||||
replacements,
|
replacements,
|
||||||
} satisfies Output
|
} satisfies Output
|
||||||
}).pipe(
|
}).pipe(
|
||||||
|
fileMutation.withLock([path.resolve(location.directory, input.path)]),
|
||||||
Effect.map((output) => ({
|
Effect.map((output) => ({
|
||||||
output,
|
output,
|
||||||
content: `Edited ${output.files[0]?.file} (${output.replacements} replacement${output.replacements === 1 ? "" : "s"})`,
|
content: `Edited ${output.files[0]?.file} (${output.replacements} replacement${output.replacements === 1 ? "" : "s"})`,
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user