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