@opengeni/core 2.6.4-canary.0 → 2.7.2-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/dist/dependencies.d.ts +2 -0
- package/dist/domain/host-mcp-authority-source-admission.d.ts +10 -0
- package/dist/domain/packs.d.ts +1 -0
- package/dist/domain/product-integration-pack.d.ts +50 -0
- package/dist/domain/sessions.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1194 -395
- package/dist/index.js.map +1 -1
- package/dist/model-catalog.d.ts +16 -0
- package/dist/sandbox/fleet.d.ts +19 -0
- package/package.json +10 -10
- package/src/dependencies.ts +2 -0
- package/src/domain/capabilities.ts +19 -3
- package/src/domain/host-mcp-authority-source-admission.ts +25 -0
- package/src/domain/insights.ts +32 -0
- package/src/domain/packs.ts +48 -18
- package/src/domain/personal-connection-delegations.ts +14 -6
- package/src/domain/product-integration-pack.ts +494 -0
- package/src/domain/scheduled-tasks.ts +6 -15
- package/src/domain/sessions.ts +197 -65
- package/src/index.ts +2 -0
- package/src/model-catalog.ts +183 -6
- package/src/sandbox/fleet.ts +85 -23
package/dist/dependencies.d.ts
CHANGED
|
@@ -179,6 +179,8 @@ export type AppDependencies = {
|
|
|
179
179
|
codexFetch?: typeof fetch;
|
|
180
180
|
/** Injectable GitHub transport for deterministic personal-OAuth tests. */
|
|
181
181
|
githubPersonalFetch?: typeof fetch;
|
|
182
|
+
/** Injectable credential-free GitHub transport for public repository verification tests. */
|
|
183
|
+
githubAnonymousFetch?: typeof fetch;
|
|
182
184
|
/** Injectable xAI OAuth/subscription transport for deterministic API/provider tests. */
|
|
183
185
|
xaiFetch?: typeof fetch;
|
|
184
186
|
/** Injectable Slack Web API transport for deterministic bot-connection tests. */
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Settings } from "@opengeni/config";
|
|
2
|
+
import type { McpServerConnectionRef } from "@opengeni/contracts";
|
|
3
|
+
/**
|
|
4
|
+
* Explicit host-owned MCP refs change which credential authority executes an
|
|
5
|
+
* opaque connection id. Admit new external refs only after the operator has
|
|
6
|
+
* completed the two-phase fleet rollout. Readers and inheritance remain
|
|
7
|
+
* tolerant regardless of this switch, and markerless legacy refs retain their
|
|
8
|
+
* bounded non-UUID compatibility path.
|
|
9
|
+
*/
|
|
10
|
+
export declare function assertHostMcpAuthoritySourceAdmissionEnabled(settings: Pick<Settings, "hostMcpAuthoritySourceAdmissionEnabled">, connectionRef: McpServerConnectionRef | null | undefined): void;
|
package/dist/domain/packs.d.ts
CHANGED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
export declare const OPENGENI_PRODUCT_INTEGRATION_PACK_ID = "opengeni-product-integration";
|
|
2
|
+
/**
|
|
3
|
+
* Version-aligned implementation guidance for customer-side coding agents.
|
|
4
|
+
*
|
|
5
|
+
* This is intentionally an instruction-only Pack. Installation adds no tools,
|
|
6
|
+
* credentials, connectors, knowledge, compute, or customer-agent persona. Its
|
|
7
|
+
* immutable Skill is installed as session-selected and enters model context
|
|
8
|
+
* only when one implementation session opts in explicitly.
|
|
9
|
+
*/
|
|
10
|
+
export declare const OPENGENI_PRODUCT_INTEGRATION_SKILL: {
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
activationMode: "session_selected";
|
|
14
|
+
files: {
|
|
15
|
+
path: string;
|
|
16
|
+
content: string;
|
|
17
|
+
}[];
|
|
18
|
+
};
|
|
19
|
+
export declare const OPENGENI_PRODUCT_INTEGRATION_PACK: {
|
|
20
|
+
id: string;
|
|
21
|
+
name: string;
|
|
22
|
+
description: string;
|
|
23
|
+
role: string;
|
|
24
|
+
category: string;
|
|
25
|
+
version: string;
|
|
26
|
+
skills: {
|
|
27
|
+
name: string;
|
|
28
|
+
description: string;
|
|
29
|
+
activationMode: "session_selected";
|
|
30
|
+
files: {
|
|
31
|
+
path: string;
|
|
32
|
+
content: string;
|
|
33
|
+
}[];
|
|
34
|
+
}[];
|
|
35
|
+
components: never[];
|
|
36
|
+
tools: never[];
|
|
37
|
+
connectors: never[];
|
|
38
|
+
knowledge: never[];
|
|
39
|
+
scheduledTaskTemplates: never[];
|
|
40
|
+
automationTemplates: never[];
|
|
41
|
+
metadata: {
|
|
42
|
+
audience: string;
|
|
43
|
+
purpose: string;
|
|
44
|
+
implementationOnly: boolean;
|
|
45
|
+
skillActivation: string;
|
|
46
|
+
installationExposure: string;
|
|
47
|
+
grantsExecutableCapabilities: boolean;
|
|
48
|
+
customerRuntimeProfile: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
@@ -140,6 +140,7 @@ export declare function createAndStartSessionWithOutcome(input: {
|
|
|
140
140
|
xaiProviderAccountAuthoritySnapshot?: XaiProviderAccountAuthoritySnapshotV1;
|
|
141
141
|
parentSessionId?: string | null;
|
|
142
142
|
createIdempotencyKey?: string | null;
|
|
143
|
+
selectedInstalledSkillIds?: string[];
|
|
143
144
|
sandboxGroupId?: string | null;
|
|
144
145
|
sandboxOs?: Session["sandboxOs"];
|
|
145
146
|
seedTargetSandbox?: {
|
package/dist/index.d.ts
CHANGED
|
@@ -12,12 +12,14 @@ export * from "./access/index.js";
|
|
|
12
12
|
export * from "./session-authorization.js";
|
|
13
13
|
export * from "./billing/limits.js";
|
|
14
14
|
export * from "./domain/capabilities.js";
|
|
15
|
+
export * from "./domain/host-mcp-authority-source-admission.js";
|
|
15
16
|
export * from "./domain/skill-imports.js";
|
|
16
17
|
export * from "./domain/environments.js";
|
|
17
18
|
export * from "./rigs/index.js";
|
|
18
19
|
export * from "./domain/packs.js";
|
|
19
20
|
export * from "./domain/automations.js";
|
|
20
21
|
export * from "./domain/pr-review.js";
|
|
22
|
+
export * from "./domain/product-integration-pack.js";
|
|
21
23
|
export * from "./domain/personal-connection-delegations.js";
|
|
22
24
|
export * from "./domain/resources.js";
|
|
23
25
|
export * from "./domain/github-repository-bindings.js";
|