mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 14:40:43 +00:00
chore(plugins): add SDK retirement plan report
This commit is contained in:
@@ -40,4 +40,18 @@ describe("plugin-boundary-report", () => {
|
||||
expect(summary.pluginSdk?.unclassifiedUnusedReservedCount).toBe(0);
|
||||
expect(summary.memoryHostSdk?.implementation).toBe("private-core-bridge");
|
||||
});
|
||||
|
||||
it("emits an owner-scoped dormant SDK retirement plan", () => {
|
||||
const output = runBoundaryReport("--retirement-plan", "--owner", "matrix");
|
||||
|
||||
expect(output).toContain("# Plugin SDK Dormant Reserved Subpath Retirement Plan");
|
||||
expect(output).toContain("Owner filter: `matrix`");
|
||||
expect(output).toContain("Dormant reserved subpaths: 6");
|
||||
expect(output).toContain(
|
||||
"`openclaw/plugin-sdk/matrix-runtime-heavy` remove after `2026-07-24`",
|
||||
);
|
||||
expect(output).toContain(
|
||||
"replacement: Matrix local runtime-api plus doctor/fix migration paths",
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user