Plugin SDK: clarify ACPX public seam

This commit is contained in:
Vincent Koc 2026-03-17 23:53:30 -07:00
parent 5eea523f39
commit bd444435c9
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
// Narrow plugin-sdk surface for the bundled acpx plugin.
// Keep this list additive and scoped to symbols used under extensions/acpx.
// Public ACPX runtime backend helpers.
// Keep this surface narrow and limited to the ACP runtime/backend contract.
export type { AcpRuntimeErrorCode } from "../acp/runtime/errors.js";
export { AcpRuntimeError } from "../acp/runtime/errors.js";

View File

@ -315,7 +315,7 @@ describe("plugin-sdk subpath exports", () => {
expect(typeof tlonSdk.tlonSetupAdapter).toBe("object");
});
it("exports acpx helpers", async () => {
it("exports ACPX runtime backend helpers", async () => {
expect(typeof acpxSdk.listKnownProviderAuthEnvVarNames).toBe("function");
expect(typeof acpxSdk.omitEnvKeysCaseInsensitive).toBe("function");
});