feat(help): #689 acp help JSON schema

This commit is contained in:
YeonGyu-Kim
2026-05-25 11:11:52 +09:00
parent bab9caa6ce
commit eed88e4181
3 changed files with 220 additions and 0 deletions
+9
View File
@@ -3,6 +3,8 @@ 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"
import { AcpResultSchema as AcpSchema } from "../src/help/schema/acp"
const SCHEMA_OUTPUT_DIR = "assets/help"
interface SchemaEntry {
@@ -54,6 +56,13 @@ const SCHEMAS: SchemaEntry[] = [
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",
},
{
name: "acp",
schema: AcpSchema,
title: "ACP Server Status",
description: "JSON schema for oh-my-openagent Agent Control Protocol server output",
id: "https://raw.githubusercontent.com/code-yeongyu/oh-my-openagent/dev/assets/help/acp.schema.json",
},
]
async function main() {