/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/core/src/v1/config/command.ts
13 строк
412 B
Dax
feat(core): add command registry (#30624)
04 июн 2026, 09:57
Не верифицирован
04 июн 2026, 09:57
1ff1910
Код
Авторство
О чём код?
export * as ConfigCommandV1 from "./command" import { Schema } from "effect" export const Info = Schema.Struct({ template: Schema.String, description: Schema.optional(Schema.String), agent: Schema.optional(Schema.String), model: Schema.optional(Schema.String), variant: Schema.optional(Schema.String), subtask: Schema.optional(Schema.Boolean), }) export type Info = Schema.Schema.Type<typeof Info>