@opengeni/contracts 3.0.2-canary.0 → 3.0.2-canary.2
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/dist/atlassian.js +2 -1
- package/dist/{chunk-FY5DZL7T.js → chunk-GJ5SNVJW.js} +2 -2
- package/dist/chunk-WBYTNVIW.js +28 -0
- package/dist/chunk-WBYTNVIW.js.map +1 -0
- package/dist/{chunk-FBXZZSXA.js → chunk-YRCMZTY2.js} +19 -4
- package/dist/chunk-YRCMZTY2.js.map +1 -0
- package/dist/connect.js +2 -1
- package/dist/connect.js.map +1 -1
- package/dist/connection-authority.js +3 -2
- package/dist/google-drive.js +2 -1
- package/dist/google-drive.js.map +1 -1
- package/dist/host-mcp-bindings.js +3 -2
- package/dist/host-mcp-bindings.js.map +1 -1
- package/dist/index.d.ts +52 -0
- package/dist/index.js +7 -1
- package/dist/mcp-endpoint.d.ts +7 -0
- package/dist/personal-github.js +2 -1
- package/dist/personal-github.js.map +1 -1
- package/dist/plugin-discovery.d.ts +35 -0
- package/dist/plugin-discovery.js +7 -0
- package/dist/plugin-discovery.js.map +1 -0
- package/package.json +5 -1
- package/src/index.ts +18 -0
- package/src/mcp-endpoint.ts +30 -0
- package/src/plugin-discovery.ts +33 -0
- package/src/skill-metadata.ts +6 -2
- package/dist/chunk-FBXZZSXA.js.map +0 -1
- /package/dist/{chunk-FY5DZL7T.js.map → chunk-GJ5SNVJW.js.map} +0 -0
package/dist/atlassian.js
CHANGED
|
@@ -17,7 +17,8 @@ import {
|
|
|
17
17
|
AtlassianSyncCadence,
|
|
18
18
|
SaveAtlassianSourcesRequest,
|
|
19
19
|
atlassianScopesAllowRead
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-YRCMZTY2.js";
|
|
21
|
+
import "./chunk-WBYTNVIW.js";
|
|
21
22
|
import "./chunk-YBW5JSA3.js";
|
|
22
23
|
import "./chunk-O5LEQHDM.js";
|
|
23
24
|
import "./chunk-GRG7PHWQ.js";
|
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
SessionTenancyVisibility,
|
|
5
5
|
UserResourceAuthorityGrant,
|
|
6
6
|
UserResourceDelegation
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-YRCMZTY2.js";
|
|
8
8
|
|
|
9
9
|
// src/connection-authority.ts
|
|
10
10
|
import { z } from "zod";
|
|
@@ -345,4 +345,4 @@ export {
|
|
|
345
345
|
ConnectionUseAuditFact,
|
|
346
346
|
ConnectionUseAuthorizationResult
|
|
347
347
|
};
|
|
348
|
-
//# sourceMappingURL=chunk-
|
|
348
|
+
//# sourceMappingURL=chunk-GJ5SNVJW.js.map
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// src/mcp-endpoint.ts
|
|
2
|
+
function mcpEndpointIdentity(value) {
|
|
3
|
+
if (!value) return null;
|
|
4
|
+
try {
|
|
5
|
+
const url = new URL(value);
|
|
6
|
+
if (!["https:", "http:"].includes(url.protocol) || url.username || url.password) return null;
|
|
7
|
+
url.hash = "";
|
|
8
|
+
return url.href;
|
|
9
|
+
} catch {
|
|
10
|
+
return null;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
function pluginMcpUnavailableReason(server) {
|
|
14
|
+
if (server.transport === "stdio" || !server.endpoint) return "Requires a local runtime";
|
|
15
|
+
if (server.transport && !["http", "streamable-http", "streamable_http"].includes(server.transport))
|
|
16
|
+
return "Unsupported transport: " + server.transport;
|
|
17
|
+
if (server.requiresConfiguration || server.endpoint.includes("{"))
|
|
18
|
+
return "Requires custom connection configuration";
|
|
19
|
+
const endpoint = mcpEndpointIdentity(server.endpoint);
|
|
20
|
+
if (!endpoint?.startsWith("https://")) return "Requires a valid HTTPS endpoint";
|
|
21
|
+
return null;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export {
|
|
25
|
+
mcpEndpointIdentity,
|
|
26
|
+
pluginMcpUnavailableReason
|
|
27
|
+
};
|
|
28
|
+
//# sourceMappingURL=chunk-WBYTNVIW.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/mcp-endpoint.ts"],"sourcesContent":["/** Exact endpoint identity: normalize URL syntax, preserve paths and query parameters. */\nexport function mcpEndpointIdentity(value: string | null | undefined): string | null {\n if (!value) return null;\n try {\n const url = new URL(value);\n if (![\"https:\", \"http:\"].includes(url.protocol) || url.username || url.password) return null;\n url.hash = \"\";\n return url.href;\n } catch {\n return null;\n }\n}\n\nexport function pluginMcpUnavailableReason(server: {\n endpoint: string | null;\n transport?: string;\n requiresConfiguration?: boolean;\n}): string | null {\n if (server.transport === \"stdio\" || !server.endpoint) return \"Requires a local runtime\";\n if (\n server.transport &&\n ![\"http\", \"streamable-http\", \"streamable_http\"].includes(server.transport)\n )\n return \"Unsupported transport: \" + server.transport;\n if (server.requiresConfiguration || server.endpoint.includes(\"{\"))\n return \"Requires custom connection configuration\";\n const endpoint = mcpEndpointIdentity(server.endpoint);\n if (!endpoint?.startsWith(\"https://\")) return \"Requires a valid HTTPS endpoint\";\n return null;\n}\n"],"mappings":";AACO,SAAS,oBAAoB,OAAiD;AACnF,MAAI,CAAC,MAAO,QAAO;AACnB,MAAI;AACF,UAAM,MAAM,IAAI,IAAI,KAAK;AACzB,QAAI,CAAC,CAAC,UAAU,OAAO,EAAE,SAAS,IAAI,QAAQ,KAAK,IAAI,YAAY,IAAI,SAAU,QAAO;AACxF,QAAI,OAAO;AACX,WAAO,IAAI;AAAA,EACb,QAAQ;AACN,WAAO;AAAA,EACT;AACF;AAEO,SAAS,2BAA2B,QAIzB;AAChB,MAAI,OAAO,cAAc,WAAW,CAAC,OAAO,SAAU,QAAO;AAC7D,MACE,OAAO,aACP,CAAC,CAAC,QAAQ,mBAAmB,iBAAiB,EAAE,SAAS,OAAO,SAAS;AAEzE,WAAO,4BAA4B,OAAO;AAC5C,MAAI,OAAO,yBAAyB,OAAO,SAAS,SAAS,GAAG;AAC9D,WAAO;AACT,QAAM,WAAW,oBAAoB,OAAO,QAAQ;AACpD,MAAI,CAAC,UAAU,WAAW,UAAU,EAAG,QAAO;AAC9C,SAAO;AACT;","names":[]}
|
|
@@ -36,8 +36,12 @@ function parseSkillFrontmatter(markdown) {
|
|
|
36
36
|
uniqueKeys: true,
|
|
37
37
|
prettyErrors: false
|
|
38
38
|
});
|
|
39
|
-
if (document.errors.length || document.warnings.length)
|
|
40
|
-
|
|
39
|
+
if (document.errors.length || document.warnings.length) {
|
|
40
|
+
const issue = document.errors[0] ?? document.warnings[0];
|
|
41
|
+
throw new Error(
|
|
42
|
+
`This skill's SKILL.md header contains invalid YAML: ${issue.message}. The source file needs correcting.`
|
|
43
|
+
);
|
|
44
|
+
}
|
|
41
45
|
const metadata = document.toJS({ maxAliasCount: 20 });
|
|
42
46
|
if (!metadata || typeof metadata !== "object" || Array.isArray(metadata))
|
|
43
47
|
throw new Error("Skill artifact SKILL.md frontmatter must be a mapping");
|
|
@@ -16484,6 +16488,7 @@ var SkillImportFileSummary = z36.object({
|
|
|
16484
16488
|
contentSha256: z36.string().regex(/^[0-9a-f]{64}$/)
|
|
16485
16489
|
});
|
|
16486
16490
|
var SkillImportPreview = z36.object({
|
|
16491
|
+
markdown: z36.string().max(262144).optional(),
|
|
16487
16492
|
source: SkillImportSource,
|
|
16488
16493
|
sourceUrl: z36.string().url(),
|
|
16489
16494
|
repositoryUrl: z36.string().url(),
|
|
@@ -16982,6 +16987,7 @@ var PluginInstallationSummary = z36.object({
|
|
|
16982
16987
|
description: z36.string().max(4e3),
|
|
16983
16988
|
category: z36.string().min(1).max(100),
|
|
16984
16989
|
tags: z36.array(z36.string().min(1).max(100)).max(64),
|
|
16990
|
+
logoUrl: z36.string().url().max(2048).nullable().optional(),
|
|
16985
16991
|
sourceUrl: z36.string().url().max(2048).nullable(),
|
|
16986
16992
|
manifestDigest: z36.string().regex(/^[0-9a-f]{64}$/),
|
|
16987
16993
|
installationVersion: z36.number().int().positive(),
|
|
@@ -17094,6 +17100,14 @@ var Session = /* @__PURE__ */ defineSkillContractSchema(
|
|
|
17094
17100
|
workspaceId: z36.string().uuid(),
|
|
17095
17101
|
accountId: z36.string().uuid(),
|
|
17096
17102
|
status: SessionStatus,
|
|
17103
|
+
/** Detail-only failure evidence through lastSequence; independent of timeline paging. */
|
|
17104
|
+
failureDiagnostics: z36.object({
|
|
17105
|
+
eventId: z36.string().uuid(),
|
|
17106
|
+
sequence: z36.number().int().nonnegative(),
|
|
17107
|
+
turnId: z36.string().uuid().nullable(),
|
|
17108
|
+
occurredAt: z36.string(),
|
|
17109
|
+
payload: z36.unknown()
|
|
17110
|
+
}).nullable().optional(),
|
|
17097
17111
|
/** Additive list projection. Detail reads may omit it. */
|
|
17098
17112
|
backgroundCommandActivity: SessionBackgroundCommandActivity.optional(),
|
|
17099
17113
|
/** Current non-deleted schedules targeting this session, including paused schedules. */
|
|
@@ -19954,7 +19968,8 @@ var MachineRuntimeCapabilities = z36.object({
|
|
|
19954
19968
|
opStream: z36.boolean(),
|
|
19955
19969
|
browserBridge: z36.boolean(),
|
|
19956
19970
|
operationResourcePolicy: z36.boolean(),
|
|
19957
|
-
operationCpuQuota: z36.boolean()
|
|
19971
|
+
operationCpuQuota: z36.boolean(),
|
|
19972
|
+
transactionalFsWrite: z36.boolean().default(false)
|
|
19958
19973
|
});
|
|
19959
19974
|
var MachineUpdateStatus = z36.enum([
|
|
19960
19975
|
"requested",
|
|
@@ -22553,4 +22568,4 @@ export {
|
|
|
22553
22568
|
ClientConfig,
|
|
22554
22569
|
evaluateWorkspaceModelPolicy
|
|
22555
22570
|
};
|
|
22556
|
-
//# sourceMappingURL=chunk-
|
|
22571
|
+
//# sourceMappingURL=chunk-YRCMZTY2.js.map
|