@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.
@@ -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;
@@ -25,6 +25,7 @@ export type InlinePackSkillInstall = {
25
25
  sourcePath: string;
26
26
  name: string;
27
27
  description: string;
28
+ activationMode: "workspace_managed" | "session_selected";
28
29
  contentSha256: string;
29
30
  totalBytes: number;
30
31
  files: Array<{
@@ -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";