Files
openclaw/scripts/analyze-plugin-sdk-usage.ts
2026-06-04 20:52:50 -04:00

11 lines
396 B
JavaScript

#!/usr/bin/env node
// Analyze Plugin Sdk Usage script supports OpenClaw repository automation.
import { main } from "./ts-topology.ts";
const forwardedArgs = process.argv.slice(2);
const normalizedArgs = forwardedArgs[0] === "--" ? forwardedArgs.slice(1) : forwardedArgs;
const exitCode = await main(["--scope=plugin-sdk", ...normalizedArgs]);
if (exitCode !== 0) {
process.exit(exitCode);
}