@evermore.work/plugin-sdk 2026.509.0-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1215 -0
- package/dist/bundlers.d.ts +57 -0
- package/dist/bundlers.d.ts.map +1 -0
- package/dist/bundlers.js +106 -0
- package/dist/bundlers.js.map +1 -0
- package/dist/define-plugin.d.ts +266 -0
- package/dist/define-plugin.d.ts.map +1 -0
- package/dist/define-plugin.js +85 -0
- package/dist/define-plugin.js.map +1 -0
- package/dist/dev-cli.d.ts +3 -0
- package/dist/dev-cli.d.ts.map +1 -0
- package/dist/dev-cli.js +49 -0
- package/dist/dev-cli.js.map +1 -0
- package/dist/dev-server.d.ts +34 -0
- package/dist/dev-server.d.ts.map +1 -0
- package/dist/dev-server.js +194 -0
- package/dist/dev-server.js.map +1 -0
- package/dist/host-client-factory.d.ts +272 -0
- package/dist/host-client-factory.d.ts.map +1 -0
- package/dist/host-client-factory.js +481 -0
- package/dist/host-client-factory.js.map +1 -0
- package/dist/index.d.ts +84 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +84 -0
- package/dist/index.js.map +1 -0
- package/dist/protocol.d.ts +1285 -0
- package/dist/protocol.d.ts.map +1 -0
- package/dist/protocol.js +306 -0
- package/dist/protocol.js.map +1 -0
- package/dist/testing.d.ts +166 -0
- package/dist/testing.d.ts.map +1 -0
- package/dist/testing.js +1766 -0
- package/dist/testing.js.map +1 -0
- package/dist/types.d.ts +1330 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +12 -0
- package/dist/types.js.map +1 -0
- package/dist/ui/components.d.ts +511 -0
- package/dist/ui/components.d.ts.map +1 -0
- package/dist/ui/components.js +135 -0
- package/dist/ui/components.js.map +1 -0
- package/dist/ui/hooks.d.ts +155 -0
- package/dist/ui/hooks.d.ts.map +1 -0
- package/dist/ui/hooks.js +195 -0
- package/dist/ui/hooks.js.map +1 -0
- package/dist/ui/index.d.ts +54 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +51 -0
- package/dist/ui/index.js.map +1 -0
- package/dist/ui/runtime.d.ts +3 -0
- package/dist/ui/runtime.d.ts.map +1 -0
- package/dist/ui/runtime.js +30 -0
- package/dist/ui/runtime.js.map +1 -0
- package/dist/ui/types.d.ts +388 -0
- package/dist/ui/types.d.ts.map +1 -0
- package/dist/ui/types.js +17 -0
- package/dist/ui/types.js.map +1 -0
- package/dist/worker-rpc-host.d.ts +127 -0
- package/dist/worker-rpc-host.d.ts.map +1 -0
- package/dist/worker-rpc-host.js +1279 -0
- package/dist/worker-rpc-host.js.map +1 -0
- package/package.json +88 -0
package/dist/index.js
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `@evermore.work/plugin-sdk` — Evermore plugin worker-side SDK.
|
|
3
|
+
*
|
|
4
|
+
* This is the main entrypoint for plugin worker code. For plugin UI bundles,
|
|
5
|
+
* import from `@evermore.work/plugin-sdk/ui` instead.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* ```ts
|
|
9
|
+
* // Plugin worker entrypoint (dist/worker.ts)
|
|
10
|
+
* import { definePlugin, runWorker, z } from "@evermore.work/plugin-sdk";
|
|
11
|
+
*
|
|
12
|
+
* const plugin = definePlugin({
|
|
13
|
+
* async setup(ctx) {
|
|
14
|
+
* ctx.logger.info("Plugin starting up");
|
|
15
|
+
*
|
|
16
|
+
* ctx.events.on("issue.created", async (event) => {
|
|
17
|
+
* ctx.logger.info("Issue created", { issueId: event.entityId });
|
|
18
|
+
* });
|
|
19
|
+
*
|
|
20
|
+
* ctx.jobs.register("full-sync", async (job) => {
|
|
21
|
+
* ctx.logger.info("Starting full sync", { runId: job.runId });
|
|
22
|
+
* // ... sync implementation
|
|
23
|
+
* });
|
|
24
|
+
*
|
|
25
|
+
* ctx.data.register("sync-health", async ({ companyId }) => {
|
|
26
|
+
* const state = await ctx.state.get({
|
|
27
|
+
* scopeKind: "company",
|
|
28
|
+
* scopeId: String(companyId),
|
|
29
|
+
* stateKey: "last-sync-at",
|
|
30
|
+
* });
|
|
31
|
+
* return { lastSync: state };
|
|
32
|
+
* });
|
|
33
|
+
* },
|
|
34
|
+
*
|
|
35
|
+
* async onHealth() {
|
|
36
|
+
* return { status: "ok" };
|
|
37
|
+
* },
|
|
38
|
+
* });
|
|
39
|
+
*
|
|
40
|
+
* export default plugin;
|
|
41
|
+
* runWorker(plugin, import.meta.url);
|
|
42
|
+
* ```
|
|
43
|
+
*
|
|
44
|
+
* @see PLUGIN_SPEC.md §14 — SDK Surface
|
|
45
|
+
* @see PLUGIN_SPEC.md §29.2 — SDK Versioning
|
|
46
|
+
*/
|
|
47
|
+
// ---------------------------------------------------------------------------
|
|
48
|
+
// Main factory
|
|
49
|
+
// ---------------------------------------------------------------------------
|
|
50
|
+
export { definePlugin } from "./define-plugin.js";
|
|
51
|
+
export { createTestHarness, createEnvironmentTestHarness, createFakeEnvironmentDriver, filterEnvironmentEvents, assertEnvironmentEventOrder, assertLeaseLifecycle, assertWorkspaceRealizationLifecycle, assertExecutionLifecycle, assertEnvironmentError } from "./testing.js";
|
|
52
|
+
export { createPluginBundlerPresets } from "./bundlers.js";
|
|
53
|
+
export { startPluginDevServer, getUiBuildSnapshot } from "./dev-server.js";
|
|
54
|
+
export { startWorkerRpcHost, runWorker } from "./worker-rpc-host.js";
|
|
55
|
+
export { createHostClientHandlers, getRequiredCapability, CapabilityDeniedError, } from "./host-client-factory.js";
|
|
56
|
+
// JSON-RPC protocol helpers and constants
|
|
57
|
+
export { JSONRPC_VERSION, JSONRPC_ERROR_CODES, PLUGIN_RPC_ERROR_CODES, HOST_TO_WORKER_REQUIRED_METHODS, HOST_TO_WORKER_OPTIONAL_METHODS, MESSAGE_DELIMITER, createRequest, createSuccessResponse, createErrorResponse, createNotification, isJsonRpcRequest, isJsonRpcNotification, isJsonRpcResponse, isJsonRpcSuccessResponse, isJsonRpcErrorResponse, serializeMessage, parseMessage, JsonRpcParseError, JsonRpcCallError, _resetIdCounter, } from "./protocol.js";
|
|
58
|
+
// ---------------------------------------------------------------------------
|
|
59
|
+
// Zod re-export
|
|
60
|
+
// ---------------------------------------------------------------------------
|
|
61
|
+
/**
|
|
62
|
+
* Zod is re-exported for plugin authors to use when defining their
|
|
63
|
+
* `instanceConfigSchema` and tool `parametersSchema`.
|
|
64
|
+
*
|
|
65
|
+
* Plugin authors do not need to add a separate `zod` dependency.
|
|
66
|
+
*
|
|
67
|
+
* @see PLUGIN_SPEC.md §14.1 — Example SDK Shape
|
|
68
|
+
*
|
|
69
|
+
* @example
|
|
70
|
+
* ```ts
|
|
71
|
+
* import { z } from "@evermore.work/plugin-sdk";
|
|
72
|
+
*
|
|
73
|
+
* const configSchema = z.object({
|
|
74
|
+
* apiKey: z.string().describe("Your API key"),
|
|
75
|
+
* workspace: z.string().optional(),
|
|
76
|
+
* });
|
|
77
|
+
* ```
|
|
78
|
+
*/
|
|
79
|
+
export { z } from "zod";
|
|
80
|
+
// ---------------------------------------------------------------------------
|
|
81
|
+
// Constants re-exports (for plugin code that needs to check values at runtime)
|
|
82
|
+
// ---------------------------------------------------------------------------
|
|
83
|
+
export { PLUGIN_API_VERSION, PLUGIN_STATUSES, PLUGIN_CATEGORIES, PLUGIN_CAPABILITIES, PLUGIN_UI_SLOT_TYPES, PLUGIN_UI_SLOT_ENTITY_TYPES, PLUGIN_STATE_SCOPE_KINDS, PLUGIN_JOB_STATUSES, PLUGIN_JOB_RUN_STATUSES, PLUGIN_JOB_RUN_TRIGGERS, PLUGIN_WEBHOOK_DELIVERY_STATUSES, PLUGIN_EVENT_TYPES, PLUGIN_BRIDGE_ERROR_CODES, } from "@evermore.work/shared";
|
|
84
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6CG;AAEH,8EAA8E;AAC9E,eAAe;AACf,8EAA8E;AAE9E,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,iBAAiB,EAAE,4BAA4B,EAAE,2BAA2B,EAAE,uBAAuB,EAAE,2BAA2B,EAAE,oBAAoB,EAAE,mCAAmC,EAAE,wBAAwB,EAAE,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAC/Q,OAAO,EAAE,0BAA0B,EAAE,MAAM,eAAe,CAAC;AAC3D,OAAO,EAAE,oBAAoB,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAC3E,OAAO,EAAE,kBAAkB,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AACrE,OAAO,EACL,wBAAwB,EACxB,qBAAqB,EACrB,qBAAqB,GACtB,MAAM,0BAA0B,CAAC;AAElC,0CAA0C;AAC1C,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,sBAAsB,EACtB,+BAA+B,EAC/B,+BAA+B,EAC/B,iBAAiB,EACjB,aAAa,EACb,qBAAqB,EACrB,mBAAmB,EACnB,kBAAkB,EAClB,gBAAgB,EAChB,qBAAqB,EACrB,iBAAiB,EACjB,wBAAwB,EACxB,sBAAsB,EACtB,gBAAgB,EAChB,YAAY,EACZ,iBAAiB,EACjB,gBAAgB,EAChB,eAAe,GAChB,MAAM,eAAe,CAAC;AAqOvB,8EAA8E;AAC9E,gBAAgB;AAChB,8EAA8E;AAE9E;;;;;;;;;;;;;;;;;GAiBG;AACH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,8EAA8E;AAC9E,+EAA+E;AAC/E,8EAA8E;AAE9E,OAAO,EACL,kBAAkB,EAClB,eAAe,EACf,iBAAiB,EACjB,mBAAmB,EACnB,oBAAoB,EACpB,2BAA2B,EAC3B,wBAAwB,EACxB,mBAAmB,EACnB,uBAAuB,EACvB,uBAAuB,EACvB,gCAAgC,EAChC,kBAAkB,EAClB,yBAAyB,GAC1B,MAAM,uBAAuB,CAAC"}
|