594 lines
18 KiB
TypeScript
594 lines
18 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
import type { ChannelPlugin } from "../channels/plugins/index.js";
|
|
import {
|
|
loadResolvedExtensionRegistry,
|
|
type ResolvedExtensionRegistry,
|
|
} from "../extension-host/resolved-registry.js";
|
|
import { resolveOpenClawPackageRootSync } from "../infra/openclaw-root.js";
|
|
import { FIELD_HELP } from "./schema.help.js";
|
|
import { buildConfigSchema, type ConfigSchemaResponse } from "./schema.js";
|
|
|
|
type JsonValue = null | boolean | number | string | JsonValue[] | { [key: string]: JsonValue };
|
|
|
|
type JsonSchemaNode = Record<string, unknown>;
|
|
|
|
type JsonSchemaObject = JsonSchemaNode & {
|
|
type?: string | string[];
|
|
properties?: Record<string, JsonSchemaObject>;
|
|
required?: string[];
|
|
additionalProperties?: JsonSchemaObject | boolean;
|
|
items?: JsonSchemaObject | JsonSchemaObject[];
|
|
enum?: unknown[];
|
|
default?: unknown;
|
|
deprecated?: boolean;
|
|
anyOf?: JsonSchemaObject[];
|
|
allOf?: JsonSchemaObject[];
|
|
oneOf?: JsonSchemaObject[];
|
|
};
|
|
|
|
export type ConfigDocBaselineKind = "core" | "channel" | "plugin";
|
|
|
|
export type ConfigDocBaselineEntry = {
|
|
path: string;
|
|
kind: ConfigDocBaselineKind;
|
|
type?: string | string[];
|
|
required: boolean;
|
|
enumValues?: JsonValue[];
|
|
defaultValue?: JsonValue;
|
|
deprecated: boolean;
|
|
sensitive: boolean;
|
|
tags: string[];
|
|
label?: string;
|
|
help?: string;
|
|
hasChildren: boolean;
|
|
};
|
|
|
|
export type ConfigDocBaseline = {
|
|
generatedBy: "scripts/generate-config-doc-baseline.ts";
|
|
entries: ConfigDocBaselineEntry[];
|
|
};
|
|
|
|
export type ConfigDocBaselineStatefileRender = {
|
|
json: string;
|
|
jsonl: string;
|
|
baseline: ConfigDocBaseline;
|
|
};
|
|
|
|
export type ConfigDocBaselineStatefileWriteResult = {
|
|
changed: boolean;
|
|
wrote: boolean;
|
|
jsonPath: string;
|
|
statefilePath: string;
|
|
};
|
|
|
|
const GENERATED_BY = "scripts/generate-config-doc-baseline.ts" as const;
|
|
const DEFAULT_JSON_OUTPUT = "docs/.generated/config-baseline.json";
|
|
const DEFAULT_STATEFILE_OUTPUT = "docs/.generated/config-baseline.jsonl";
|
|
function resolveRepoRoot(): string {
|
|
const fromPackage = resolveOpenClawPackageRootSync({
|
|
cwd: path.dirname(fileURLToPath(import.meta.url)),
|
|
moduleUrl: import.meta.url,
|
|
});
|
|
if (fromPackage) {
|
|
return fromPackage;
|
|
}
|
|
return path.resolve(path.dirname(fileURLToPath(import.meta.url)), "../..");
|
|
}
|
|
|
|
function normalizeBaselinePath(rawPath: string): string {
|
|
return rawPath
|
|
.trim()
|
|
.replace(/\[\]/g, ".*")
|
|
.replace(/\[(\*|\d+)\]/g, ".*")
|
|
.replace(/^\.+|\.+$/g, "")
|
|
.replace(/\.+/g, ".");
|
|
}
|
|
|
|
function normalizeJsonValue(value: unknown): JsonValue | undefined {
|
|
if (value === null) {
|
|
return null;
|
|
}
|
|
if (typeof value === "string" || typeof value === "boolean") {
|
|
return value;
|
|
}
|
|
if (typeof value === "number") {
|
|
return Number.isFinite(value) ? value : undefined;
|
|
}
|
|
if (Array.isArray(value)) {
|
|
const normalized = value
|
|
.map((entry) => normalizeJsonValue(entry))
|
|
.filter((entry): entry is JsonValue => entry !== undefined);
|
|
return normalized;
|
|
}
|
|
if (!value || typeof value !== "object") {
|
|
return undefined;
|
|
}
|
|
|
|
const entries = Object.entries(value as Record<string, unknown>)
|
|
.toSorted(([left], [right]) => left.localeCompare(right))
|
|
.map(([key, entry]) => {
|
|
const normalized = normalizeJsonValue(entry);
|
|
return normalized === undefined ? null : ([key, normalized] as const);
|
|
})
|
|
.filter((entry): entry is readonly [string, JsonValue] => entry !== null);
|
|
|
|
return Object.fromEntries(entries);
|
|
}
|
|
|
|
function normalizeEnumValues(values: unknown[] | undefined): JsonValue[] | undefined {
|
|
if (!values) {
|
|
return undefined;
|
|
}
|
|
const normalized = values
|
|
.map((entry) => normalizeJsonValue(entry))
|
|
.filter((entry): entry is JsonValue => entry !== undefined);
|
|
return normalized.length > 0 ? normalized : undefined;
|
|
}
|
|
|
|
function asSchemaObject(value: unknown): JsonSchemaObject | null {
|
|
if (!value || typeof value !== "object" || Array.isArray(value)) {
|
|
return null;
|
|
}
|
|
return value as JsonSchemaObject;
|
|
}
|
|
|
|
function schemaHasChildren(schema: JsonSchemaObject): boolean {
|
|
if (schema.properties && Object.keys(schema.properties).length > 0) {
|
|
return true;
|
|
}
|
|
if (schema.additionalProperties && typeof schema.additionalProperties === "object") {
|
|
return true;
|
|
}
|
|
if (Array.isArray(schema.items)) {
|
|
return schema.items.some((entry) => typeof entry === "object" && entry !== null);
|
|
}
|
|
for (const branch of [schema.oneOf, schema.anyOf, schema.allOf]) {
|
|
if (branch?.some((entry) => entry && typeof entry === "object" && schemaHasChildren(entry))) {
|
|
return true;
|
|
}
|
|
}
|
|
return Boolean(schema.items && typeof schema.items === "object");
|
|
}
|
|
|
|
function splitHintLookupPath(path: string): string[] {
|
|
const normalized = normalizeBaselinePath(path);
|
|
return normalized ? normalized.split(".").filter(Boolean) : [];
|
|
}
|
|
|
|
function resolveUiHintMatch(
|
|
uiHints: ConfigSchemaResponse["uiHints"],
|
|
path: string,
|
|
): ConfigSchemaResponse["uiHints"][string] | undefined {
|
|
const targetParts = splitHintLookupPath(path);
|
|
let bestMatch:
|
|
| {
|
|
hint: ConfigSchemaResponse["uiHints"][string];
|
|
wildcardCount: number;
|
|
}
|
|
| undefined;
|
|
|
|
for (const [hintPath, hint] of Object.entries(uiHints)) {
|
|
const hintParts = splitHintLookupPath(hintPath);
|
|
if (hintParts.length !== targetParts.length) {
|
|
continue;
|
|
}
|
|
|
|
let wildcardCount = 0;
|
|
let matches = true;
|
|
for (let index = 0; index < hintParts.length; index += 1) {
|
|
const hintPart = hintParts[index];
|
|
const targetPart = targetParts[index];
|
|
if (hintPart === targetPart) {
|
|
continue;
|
|
}
|
|
if (hintPart === "*") {
|
|
wildcardCount += 1;
|
|
continue;
|
|
}
|
|
matches = false;
|
|
break;
|
|
}
|
|
|
|
if (!matches) {
|
|
continue;
|
|
}
|
|
if (!bestMatch || wildcardCount < bestMatch.wildcardCount) {
|
|
bestMatch = { hint, wildcardCount };
|
|
}
|
|
}
|
|
|
|
return bestMatch?.hint;
|
|
}
|
|
|
|
function normalizeTypeValue(value: string | string[] | undefined): string | string[] | undefined {
|
|
if (!value) {
|
|
return undefined;
|
|
}
|
|
if (Array.isArray(value)) {
|
|
const normalized = [...new Set(value)].toSorted((left, right) => left.localeCompare(right));
|
|
return normalized.length === 1 ? normalized[0] : normalized;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
function mergeTypeValues(
|
|
left: string | string[] | undefined,
|
|
right: string | string[] | undefined,
|
|
): string | string[] | undefined {
|
|
const merged = new Set<string>();
|
|
for (const value of [left, right]) {
|
|
if (!value) {
|
|
continue;
|
|
}
|
|
if (Array.isArray(value)) {
|
|
for (const entry of value) {
|
|
merged.add(entry);
|
|
}
|
|
continue;
|
|
}
|
|
merged.add(value);
|
|
}
|
|
return normalizeTypeValue([...merged]);
|
|
}
|
|
|
|
function areJsonValuesEqual(left: JsonValue | undefined, right: JsonValue | undefined): boolean {
|
|
return JSON.stringify(left) === JSON.stringify(right);
|
|
}
|
|
|
|
function mergeJsonValueArrays(
|
|
left: JsonValue[] | undefined,
|
|
right: JsonValue[] | undefined,
|
|
): JsonValue[] | undefined {
|
|
if (!left?.length) {
|
|
return right ? [...right] : undefined;
|
|
}
|
|
if (!right?.length) {
|
|
return [...left];
|
|
}
|
|
|
|
const merged = new Map<string, JsonValue>();
|
|
for (const value of [...left, ...right]) {
|
|
merged.set(JSON.stringify(value), value);
|
|
}
|
|
return [...merged.entries()]
|
|
.toSorted(([leftKey], [rightKey]) => leftKey.localeCompare(rightKey))
|
|
.map(([, value]) => value);
|
|
}
|
|
|
|
function mergeConfigDocBaselineEntry(
|
|
current: ConfigDocBaselineEntry,
|
|
next: ConfigDocBaselineEntry,
|
|
): ConfigDocBaselineEntry {
|
|
const label = current.label === next.label ? current.label : (current.label ?? next.label);
|
|
const help = current.help === next.help ? current.help : (current.help ?? next.help);
|
|
const defaultValue = areJsonValuesEqual(current.defaultValue, next.defaultValue)
|
|
? (current.defaultValue ?? next.defaultValue)
|
|
: undefined;
|
|
|
|
return {
|
|
path: current.path,
|
|
kind: current.kind,
|
|
type: mergeTypeValues(current.type, next.type),
|
|
required: current.required && next.required,
|
|
enumValues: mergeJsonValueArrays(current.enumValues, next.enumValues),
|
|
defaultValue,
|
|
deprecated: current.deprecated || next.deprecated,
|
|
sensitive: current.sensitive || next.sensitive,
|
|
tags: [...new Set([...current.tags, ...next.tags])].toSorted((left, right) =>
|
|
left.localeCompare(right),
|
|
),
|
|
label,
|
|
help,
|
|
hasChildren: current.hasChildren || next.hasChildren,
|
|
};
|
|
}
|
|
|
|
function resolveEntryKind(configPath: string): ConfigDocBaselineKind {
|
|
if (configPath.startsWith("channels.")) {
|
|
return "channel";
|
|
}
|
|
if (configPath.startsWith("plugins.entries.")) {
|
|
return "plugin";
|
|
}
|
|
return "core";
|
|
}
|
|
|
|
async function resolveFirstExistingPath(candidates: string[]): Promise<string | null> {
|
|
for (const candidate of candidates) {
|
|
try {
|
|
await fs.access(candidate);
|
|
return candidate;
|
|
} catch {
|
|
// Keep scanning for other source file variants.
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
function isChannelPlugin(value: unknown): value is ChannelPlugin {
|
|
if (!value || typeof value !== "object") {
|
|
return false;
|
|
}
|
|
const candidate = value as { id?: unknown; meta?: unknown; capabilities?: unknown };
|
|
return typeof candidate.id === "string" && typeof candidate.meta === "object";
|
|
}
|
|
|
|
async function importChannelPluginModule(rootDir: string): Promise<ChannelPlugin> {
|
|
const modulePath = await resolveFirstExistingPath([
|
|
path.join(rootDir, "src", "channel.ts"),
|
|
path.join(rootDir, "src", "channel.js"),
|
|
path.join(rootDir, "src", "plugin.ts"),
|
|
path.join(rootDir, "src", "plugin.js"),
|
|
path.join(rootDir, "src", "index.ts"),
|
|
path.join(rootDir, "src", "index.js"),
|
|
path.join(rootDir, "src", "channel.mts"),
|
|
path.join(rootDir, "src", "channel.mjs"),
|
|
path.join(rootDir, "src", "plugin.mts"),
|
|
path.join(rootDir, "src", "plugin.mjs"),
|
|
]);
|
|
if (!modulePath) {
|
|
throw new Error(`channel source not found under ${rootDir}`);
|
|
}
|
|
|
|
const imported = (await import(pathToFileURL(modulePath).href)) as Record<string, unknown>;
|
|
for (const value of Object.values(imported)) {
|
|
if (isChannelPlugin(value)) {
|
|
return value;
|
|
}
|
|
if (typeof value === "function" && value.length === 0) {
|
|
const resolved = value();
|
|
if (isChannelPlugin(resolved)) {
|
|
return resolved;
|
|
}
|
|
}
|
|
}
|
|
|
|
throw new Error(`channel plugin export not found in ${modulePath}`);
|
|
}
|
|
|
|
async function loadBundledConfigSchemaResponse(): Promise<ConfigSchemaResponse> {
|
|
const repoRoot = resolveRepoRoot();
|
|
const env = {
|
|
...process.env,
|
|
HOME: os.tmpdir(),
|
|
OPENCLAW_STATE_DIR: path.join(os.tmpdir(), "openclaw-config-doc-baseline-state"),
|
|
OPENCLAW_BUNDLED_PLUGINS_DIR: path.join(repoRoot, "extensions"),
|
|
};
|
|
|
|
const registry = loadResolvedExtensionRegistry({
|
|
cache: false,
|
|
env,
|
|
config: {},
|
|
});
|
|
return buildBundledConfigSchemaResponseFromRegistry(registry);
|
|
}
|
|
|
|
async function buildBundledConfigSchemaResponseFromRegistry(
|
|
registry: ResolvedExtensionRegistry,
|
|
): Promise<ConfigSchemaResponse> {
|
|
const channelPlugins = await Promise.all(
|
|
registry.extensions
|
|
.filter(
|
|
(record) =>
|
|
record.extension.origin === "bundled" &&
|
|
(record.extension.manifest.channels?.length ?? 0) > 0,
|
|
)
|
|
.map(async (record) => ({
|
|
id: record.extension.id,
|
|
channel: await importChannelPluginModule(
|
|
record.extension.rootDir ?? path.dirname(record.manifestPath),
|
|
),
|
|
})),
|
|
);
|
|
|
|
return buildConfigSchema({
|
|
plugins: registry.extensions
|
|
.filter((record) => record.extension.origin === "bundled")
|
|
.map((record) => ({
|
|
id: record.extension.id,
|
|
name: record.extension.name,
|
|
description: record.extension.description,
|
|
configUiHints: record.extension.staticMetadata.configUiHints,
|
|
configSchema: record.extension.staticMetadata.configSchema,
|
|
})),
|
|
channels: channelPlugins.map((entry) => ({
|
|
id: entry.channel.id,
|
|
label: entry.channel.meta.label,
|
|
description: entry.channel.meta.blurb,
|
|
configSchema: entry.channel.configSchema?.schema,
|
|
configUiHints: entry.channel.configSchema?.uiHints,
|
|
})),
|
|
});
|
|
}
|
|
|
|
export function collectConfigDocBaselineEntries(
|
|
schema: JsonSchemaObject,
|
|
uiHints: ConfigSchemaResponse["uiHints"],
|
|
pathPrefix = "",
|
|
required = false,
|
|
entries: ConfigDocBaselineEntry[] = [],
|
|
): ConfigDocBaselineEntry[] {
|
|
const normalizedPath = normalizeBaselinePath(pathPrefix);
|
|
if (normalizedPath) {
|
|
const hint = resolveUiHintMatch(uiHints, normalizedPath);
|
|
entries.push({
|
|
path: normalizedPath,
|
|
kind: resolveEntryKind(normalizedPath),
|
|
type: normalizeTypeValue(schema.type),
|
|
required,
|
|
enumValues: normalizeEnumValues(schema.enum),
|
|
defaultValue: normalizeJsonValue(schema.default),
|
|
deprecated: schema.deprecated === true,
|
|
sensitive: hint?.sensitive === true,
|
|
tags: [...(hint?.tags ?? [])].toSorted((left, right) => left.localeCompare(right)),
|
|
label: hint?.label,
|
|
help: hint?.help,
|
|
hasChildren: schemaHasChildren(schema),
|
|
});
|
|
}
|
|
|
|
const requiredKeys = new Set(schema.required ?? []);
|
|
for (const key of Object.keys(schema.properties ?? {}).toSorted((left, right) =>
|
|
left.localeCompare(right),
|
|
)) {
|
|
const child = asSchemaObject(schema.properties?.[key]);
|
|
if (!child) {
|
|
continue;
|
|
}
|
|
const childPath = normalizedPath ? `${normalizedPath}.${key}` : key;
|
|
collectConfigDocBaselineEntries(child, uiHints, childPath, requiredKeys.has(key), entries);
|
|
}
|
|
|
|
if (schema.additionalProperties && typeof schema.additionalProperties === "object") {
|
|
const wildcard = asSchemaObject(schema.additionalProperties);
|
|
if (wildcard) {
|
|
const wildcardPath = normalizedPath ? `${normalizedPath}.*` : "*";
|
|
collectConfigDocBaselineEntries(wildcard, uiHints, wildcardPath, false, entries);
|
|
}
|
|
}
|
|
|
|
if (Array.isArray(schema.items)) {
|
|
for (const item of schema.items) {
|
|
const child = asSchemaObject(item);
|
|
if (!child) {
|
|
continue;
|
|
}
|
|
const itemPath = normalizedPath ? `${normalizedPath}.*` : "*";
|
|
collectConfigDocBaselineEntries(child, uiHints, itemPath, false, entries);
|
|
}
|
|
} else if (schema.items && typeof schema.items === "object") {
|
|
const itemSchema = asSchemaObject(schema.items);
|
|
if (itemSchema) {
|
|
const itemPath = normalizedPath ? `${normalizedPath}.*` : "*";
|
|
collectConfigDocBaselineEntries(itemSchema, uiHints, itemPath, false, entries);
|
|
}
|
|
}
|
|
|
|
for (const branchSchema of [schema.oneOf, schema.anyOf, schema.allOf]) {
|
|
for (const branch of branchSchema ?? []) {
|
|
const child = asSchemaObject(branch);
|
|
if (!child) {
|
|
continue;
|
|
}
|
|
collectConfigDocBaselineEntries(child, uiHints, normalizedPath, required, entries);
|
|
}
|
|
}
|
|
|
|
return entries;
|
|
}
|
|
|
|
export function dedupeConfigDocBaselineEntries(
|
|
entries: ConfigDocBaselineEntry[],
|
|
): ConfigDocBaselineEntry[] {
|
|
const byPath = new Map<string, ConfigDocBaselineEntry>();
|
|
for (const entry of entries) {
|
|
const current = byPath.get(entry.path);
|
|
byPath.set(entry.path, current ? mergeConfigDocBaselineEntry(current, entry) : entry);
|
|
}
|
|
return [...byPath.values()].toSorted((left, right) => left.path.localeCompare(right.path));
|
|
}
|
|
|
|
export async function buildConfigDocBaseline(): Promise<ConfigDocBaseline> {
|
|
const response = await loadBundledConfigSchemaResponse();
|
|
const schemaRoot = asSchemaObject(response.schema);
|
|
if (!schemaRoot) {
|
|
throw new Error("config schema root is not an object");
|
|
}
|
|
const entries = dedupeConfigDocBaselineEntries(
|
|
collectConfigDocBaselineEntries(schemaRoot, response.uiHints),
|
|
);
|
|
return {
|
|
generatedBy: GENERATED_BY,
|
|
entries,
|
|
};
|
|
}
|
|
|
|
export async function renderConfigDocBaselineStatefile(
|
|
baseline?: ConfigDocBaseline,
|
|
): Promise<ConfigDocBaselineStatefileRender> {
|
|
const resolvedBaseline = baseline ?? (await buildConfigDocBaseline());
|
|
const json = `${JSON.stringify(resolvedBaseline, null, 2)}\n`;
|
|
const metadataLine = JSON.stringify({
|
|
generatedBy: GENERATED_BY,
|
|
recordType: "meta",
|
|
totalPaths: resolvedBaseline.entries.length,
|
|
});
|
|
const entryLines = resolvedBaseline.entries.map((entry) =>
|
|
JSON.stringify({
|
|
recordType: "path",
|
|
...entry,
|
|
}),
|
|
);
|
|
return {
|
|
json,
|
|
jsonl: `${[metadataLine, ...entryLines].join("\n")}\n`,
|
|
baseline: resolvedBaseline,
|
|
};
|
|
}
|
|
|
|
async function readIfExists(filePath: string): Promise<string | null> {
|
|
try {
|
|
return await fs.readFile(filePath, "utf8");
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
async function writeIfChanged(filePath: string, next: string): Promise<boolean> {
|
|
const current = await readIfExists(filePath);
|
|
if (current === next) {
|
|
return false;
|
|
}
|
|
await fs.mkdir(path.dirname(filePath), { recursive: true });
|
|
await fs.writeFile(filePath, next, "utf8");
|
|
return true;
|
|
}
|
|
|
|
export async function writeConfigDocBaselineStatefile(params?: {
|
|
repoRoot?: string;
|
|
check?: boolean;
|
|
jsonPath?: string;
|
|
statefilePath?: string;
|
|
}): Promise<ConfigDocBaselineStatefileWriteResult> {
|
|
const repoRoot = params?.repoRoot ?? resolveRepoRoot();
|
|
const jsonPath = path.resolve(repoRoot, params?.jsonPath ?? DEFAULT_JSON_OUTPUT);
|
|
const statefilePath = path.resolve(repoRoot, params?.statefilePath ?? DEFAULT_STATEFILE_OUTPUT);
|
|
const rendered = await renderConfigDocBaselineStatefile();
|
|
const currentJson = await readIfExists(jsonPath);
|
|
const currentStatefile = await readIfExists(statefilePath);
|
|
const changed = currentJson !== rendered.json || currentStatefile !== rendered.jsonl;
|
|
|
|
if (params?.check) {
|
|
return {
|
|
changed,
|
|
wrote: false,
|
|
jsonPath,
|
|
statefilePath,
|
|
};
|
|
}
|
|
|
|
const wroteJson = await writeIfChanged(jsonPath, rendered.json);
|
|
const wroteStatefile = await writeIfChanged(statefilePath, rendered.jsonl);
|
|
return {
|
|
changed,
|
|
wrote: wroteJson || wroteStatefile,
|
|
jsonPath,
|
|
statefilePath,
|
|
};
|
|
}
|
|
|
|
export function normalizeConfigDocBaselineHelpPath(pathValue: string): string {
|
|
return normalizeBaselinePath(pathValue);
|
|
}
|
|
|
|
export function getNormalizedFieldHelp(): Record<string, string> {
|
|
return Object.fromEntries(
|
|
Object.entries(FIELD_HELP)
|
|
.map(([configPath, help]) => [normalizeBaselinePath(configPath), help] as const)
|
|
.toSorted(([left], [right]) => left.localeCompare(right)),
|
|
);
|
|
}
|