feat(help): #688 sandbox help JSON schema

This commit is contained in:
YeonGyu-Kim
2026-05-25 11:09:56 +09:00
parent 2c6c42f852
commit 1fdb88a355
3 changed files with 221 additions and 0 deletions
+8
View File
@@ -2,6 +2,7 @@
import { z } from "zod"
import { DoctorResultSchema as DoctorSchema } from "../src/help/schema/doctor"
import { StatusResultSchema as StatusSchema } from "../src/help/schema/status"
import { SandboxResultSchema as SandboxSchema } from "../src/help/schema/sandbox"
const SCHEMA_OUTPUT_DIR = "assets/help"
interface SchemaEntry {
@@ -46,6 +47,13 @@ const SCHEMAS: SchemaEntry[] = [
description: "JSON schema for oh-my-openagent system status output",
id: "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/help/status.schema.json",
},
{
name: "sandbox",
schema: SandboxSchema,
title: "Sandbox Environment",
description: "JSON schema for oh-my-openagent sandbox execution environment output",
id: "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/help/sandbox.schema.json",
},
]
async function main() {