mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-23 07:51:33 +00:00
* Chore: unblock synced main checks * Docs: add plugin SDK docs implementation plan * Docs: scaffold plugin SDK reference phase 1 * Docs: mark plugin SDK reference surfaces unstable * Docs: prototype generated plugin SDK reference * docs(plugin-sdk): replace generated reference with api baseline * docs(plugin-sdk): drop generated reference plan * docs(plugin-sdk): align api baseline flow with config docs --------- Co-authored-by: Onur <2453968+osolmaz@users.noreply.github.com> Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
49 lines
1.4 KiB
JavaScript
49 lines
1.4 KiB
JavaScript
#!/usr/bin/env node
|
|
import path from "node:path";
|
|
import { writePluginSdkApiBaselineStatefile } from "../src/plugin-sdk/api-baseline.ts";
|
|
|
|
const args = new Set(process.argv.slice(2));
|
|
const checkOnly = args.has("--check");
|
|
const writeMode = args.has("--write");
|
|
|
|
if (checkOnly === writeMode) {
|
|
console.error("Use exactly one of --check or --write.");
|
|
process.exit(1);
|
|
}
|
|
|
|
const repoRoot = process.cwd();
|
|
|
|
async function main(): Promise<void> {
|
|
const result = await writePluginSdkApiBaselineStatefile({
|
|
repoRoot,
|
|
check: checkOnly,
|
|
});
|
|
|
|
if (checkOnly) {
|
|
if (result.changed) {
|
|
console.error(
|
|
[
|
|
"Plugin SDK API baseline drift detected.",
|
|
`Expected current: ${path.relative(repoRoot, result.jsonPath)}`,
|
|
`Expected current: ${path.relative(repoRoot, result.statefilePath)}`,
|
|
"If this Plugin SDK surface change is intentional, run `pnpm plugin-sdk:api:gen` and commit the updated baseline files.",
|
|
"If not intentional, treat this as API drift and fix the plugin-sdk exports or metadata first.",
|
|
].join("\n"),
|
|
);
|
|
process.exit(1);
|
|
}
|
|
console.log(
|
|
`OK ${path.relative(repoRoot, result.jsonPath)} ${path.relative(repoRoot, result.statefilePath)}`,
|
|
);
|
|
return;
|
|
}
|
|
console.log(
|
|
[
|
|
`Wrote ${path.relative(repoRoot, result.jsonPath)}`,
|
|
`Wrote ${path.relative(repoRoot, result.statefilePath)}`,
|
|
].join("\n"),
|
|
);
|
|
}
|
|
|
|
await main();
|