Files
openclaw-openclaw/scripts/sync-plugin-versions.ts
Peter Steinberger 062f88e3e3 refactor: extract reusable AI runtime package (#99059)
* refactor: extract reusable AI runtime package

* refactor: complete AI provider relocation

* refactor: keep llm core internal

* refactor(ai): make @openclaw/ai self-contained with host policy ports

Move pure transport helpers (tool projections, strict-schema normalization,
prompt-cache boundary, stream guards, anthropic/openai compat, request
activity) from src into packages/ai; move utf16-slice into
normalization-core. Inject host policy (guarded fetch, redaction,
strict-tool defaults, diagnostics logging) through AiTransportHost with
inert library defaults installed by src/llm/stream.ts. Narrow the public
barrel to instance-scoped createApiRegistry/createLlmRuntime; the
process-default runtime moves behind internal/ and
registerBuiltInApiProviders takes an explicit registry. Delete the
src/llm/api-registry re-export facade.

* fix(ai): teach node, jiti, and vite resolvers the @openclaw/ai and utf16-slice subpaths

The workspace alias tables in root-alias.cjs, plugin-sdk-native-resolver,
sdk-alias, the shared vitest config, and the Control UI vite config only
knew @openclaw/llm-core; Node-side plugin loading resolved @openclaw/ai
through the pnpm symlink to the unbuilt dist (checks-node-compact CI
failures), and the Control UI build broke on the new
normalization-core/utf16-slice subpath.

* chore(ui): drop leftover service-worker debug logging

* build(release): ship @openclaw/ai with its own shrinkwrap and honest dependency set

packages/ai declares only its six real runtime deps (kysely, chalk, json5,
tslog, zod, fs-safe, and proxyline were never imported); orphaned root deps
removed. generate-npm-shrinkwrap now treats publishable packages/* like
publishable plugins so the AI tarball pins its transitive tree even though
workspace deps are omitted from the root shrinkwrap. knip learns the
package entry points; the tsdown dts neverBundle option moves to its
documented deps.dts home; the README documents the no-semver internal/*
contract and host ports.

* docs(ai): add minimal external-consumer example app

examples/ai-chat consumes only the public @openclaw/ai surface (built dist
via the workspace link): isolated runtime, built-in provider registration,
one streamed completion. Supports Anthropic/OpenAI via env keys and a
keyless local Ollama target; live-verified against Ollama.

* docs(ai): document the @openclaw/ai package and workspace shrinkwrap boundary

* chore(check): include examples/ in duplicate-scan targets

* fix: emit normalization package subpaths

* fix: complete AI package boundary artifacts

* fix: align AI package boundary contracts

* fix(ci): stabilize package release contracts

* test: align documentation contract checks

* test: keep cron docs guard aligned

* test: align restored docs contract guards

* test: follow upstream docs contracts

* docs: drop superseded talk wording
2026-07-05 01:56:40 -04:00

209 lines
6.2 KiB
TypeScript

// Sync Plugin Versions script supports OpenClaw repository automation.
import { existsSync, readdirSync, readFileSync, writeFileSync } from "node:fs";
import { join, resolve } from "node:path";
type PackageJson = {
name?: string;
version?: string;
devDependencies?: Record<string, string>;
peerDependencies?: Record<string, string>;
openclaw?: {
install?: {
minHostVersion?: string;
};
compat?: {
pluginApi?: string;
};
build?: {
openclawVersion?: string;
};
};
};
type SyncPluginVersionsOptions = {
write?: boolean;
};
const OPENCLAW_VERSION_RANGE_RE = /^>=\d{4}\.\d{1,2}\.\d{1,2}(?:[-.][^"\s]+)?$/u;
const VERSION_ALIGNED_PACKAGE_DIRS = ["packages/ai"] as const;
function syncOpenClawDependencyRange(
deps: Record<string, string> | undefined,
targetVersion: string,
): boolean {
const current = deps?.openclaw;
if (!current || current === "workspace:*" || !OPENCLAW_VERSION_RANGE_RE.test(current)) {
return false;
}
const next = `>=${targetVersion}`;
if (current === next) {
return false;
}
deps.openclaw = next;
return true;
}
function syncPluginApiVersion(pkg: PackageJson, targetVersion: string): boolean {
const compat = pkg.openclaw?.compat;
const current = compat?.pluginApi;
if (!current || !OPENCLAW_VERSION_RANGE_RE.test(current)) {
return false;
}
const next = `>=${targetVersion}`;
if (current === next) {
return false;
}
compat.pluginApi = next;
return true;
}
function syncBuildOpenClawVersion(pkg: PackageJson, targetVersion: string): boolean {
const build = pkg.openclaw?.build;
const current = build?.openclawVersion;
if (!current) {
return false;
}
if (current === targetVersion) {
return false;
}
build.openclawVersion = targetVersion;
return true;
}
function changelogVersionForPackageVersion(version: string): string {
return version.replace(/-beta\.\d+$/u, "");
}
function ensureChangelogEntry(changelogPath: string, version: string, write: boolean): boolean {
if (!existsSync(changelogPath)) {
return false;
}
const content = readFileSync(changelogPath, "utf8");
if (content.includes(`## ${version}`)) {
return false;
}
const entry = `## ${version}\n\n### Changes\n- Version alignment with core OpenClaw release numbers.\n\n`;
if (content.startsWith("# Changelog\n\n")) {
const next = content.replace("# Changelog\n\n", `# Changelog\n\n${entry}`);
if (write) {
writeFileSync(changelogPath, next);
}
return true;
}
const next = `# Changelog\n\n${entry}${content.trimStart()}`;
if (write) {
writeFileSync(changelogPath, `${next}\n`);
}
return true;
}
export function syncPluginVersions(
rootDir = resolve("."),
options: SyncPluginVersionsOptions = {},
) {
const write = options.write ?? true;
const rootPackagePath = join(rootDir, "package.json");
const rootPackage = JSON.parse(readFileSync(rootPackagePath, "utf8")) as PackageJson;
const targetVersion = rootPackage.version;
if (!targetVersion) {
throw new Error("Root package.json missing version.");
}
const extensionsDir = join(rootDir, "extensions");
const dirs = readdirSync(extensionsDir, { withFileTypes: true }).filter((entry) =>
entry.isDirectory(),
);
const updated: string[] = [];
const changelogged: string[] = [];
const skipped: string[] = [];
for (const packageDir of VERSION_ALIGNED_PACKAGE_DIRS) {
const packagePath = join(rootDir, packageDir, "package.json");
if (!existsSync(packagePath)) {
continue;
}
const pkg = JSON.parse(readFileSync(packagePath, "utf8")) as PackageJson;
if (!pkg.name || pkg.version === targetVersion) {
continue;
}
pkg.version = targetVersion;
if (write) {
writeFileSync(packagePath, `${JSON.stringify(pkg, null, 2)}\n`);
}
updated.push(pkg.name);
}
for (const dir of dirs) {
const packagePath = join(extensionsDir, dir.name, "package.json");
let pkg: PackageJson;
try {
pkg = JSON.parse(readFileSync(packagePath, "utf8")) as PackageJson;
} catch {
continue;
}
if (!pkg.name) {
skipped.push(dir.name);
continue;
}
const changelogPath = join(extensionsDir, dir.name, "CHANGELOG.md");
const changelogVersion = changelogVersionForPackageVersion(targetVersion);
if (ensureChangelogEntry(changelogPath, changelogVersion, write)) {
changelogged.push(pkg.name);
}
const versionChanged = pkg.version !== targetVersion;
const devDependencyChanged = syncOpenClawDependencyRange(pkg.devDependencies, targetVersion);
const peerDependencyChanged = syncOpenClawDependencyRange(pkg.peerDependencies, targetVersion);
// minHostVersion is a compatibility floor, not release alignment metadata.
// Keep it stable unless the owning plugin intentionally raises it.
const pluginApiChanged = syncPluginApiVersion(pkg, targetVersion);
const buildOpenClawVersionChanged = syncBuildOpenClawVersion(pkg, targetVersion);
const packageChanged =
versionChanged ||
devDependencyChanged ||
peerDependencyChanged ||
pluginApiChanged ||
buildOpenClawVersionChanged;
if (!packageChanged) {
skipped.push(pkg.name);
continue;
}
if (versionChanged) {
pkg.version = targetVersion;
}
if (write) {
writeFileSync(packagePath, `${JSON.stringify(pkg, null, 2)}\n`);
}
updated.push(pkg.name);
}
return {
targetVersion,
updated,
changelogged,
skipped,
};
}
if (import.meta.main) {
const check = process.argv.includes("--check");
const summary = syncPluginVersions(resolve("."), { write: !check });
console.log(
`Synced plugin versions to ${summary.targetVersion}. Updated: ${summary.updated.length}. Changelogged: ${summary.changelogged.length}. Skipped: ${summary.skipped.length}.`,
);
if (check && (summary.updated.length > 0 || summary.changelogged.length > 0)) {
for (const packageName of summary.updated) {
console.error(` update required: ${packageName}`);
}
for (const packageName of summary.changelogged) {
console.error(` changelog entry required: ${packageName}`);
}
console.error("Run `pnpm plugins:sync` and commit the plugin version alignment.");
process.exit(1);
}
}