@opengeni/core 0.21.10 → 0.28.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/access/index.d.ts +1 -1
- package/dist/application/new-session-drafts.d.ts +1 -1
- package/dist/application/session-commands.d.ts +2 -2
- package/dist/billing/limits.d.ts +1 -1
- package/dist/canonical-human-identities.d.ts +12 -0
- package/dist/canonical-human-identities.js +23 -0
- package/dist/canonical-human-identities.js.map +1 -0
- package/dist/chunk-6WKPWE5S.js +2380 -0
- package/dist/chunk-6WKPWE5S.js.map +1 -0
- package/dist/chunk-IBOEYG6N.js +34 -0
- package/dist/chunk-IBOEYG6N.js.map +1 -0
- package/dist/chunk-JJU6I5XD.js +2713 -0
- package/dist/chunk-JJU6I5XD.js.map +1 -0
- package/dist/chunk-NYPMQ7NO.js +2270 -0
- package/dist/chunk-NYPMQ7NO.js.map +1 -0
- package/dist/dependencies.d.ts +30 -6
- package/dist/domain/capabilities.d.ts +28 -3
- package/dist/domain/company-profile-durable-learning-adapter.d.ts +39 -0
- package/dist/domain/conversation-integrations.d.ts +225 -0
- package/dist/domain/durable-learning-slack-publication.d.ts +72 -0
- package/dist/domain/editable-artifacts/agent-application.d.ts +192 -0
- package/dist/domain/editable-artifacts/durable-export-postgres.d.ts +4 -0
- package/dist/domain/editable-artifacts/durable-export.d.ts +212 -0
- package/dist/domain/editable-artifacts/errors.d.ts +47 -0
- package/dist/domain/editable-artifacts/hash.d.ts +11 -0
- package/dist/domain/editable-artifacts/in-memory.d.ts +99 -0
- package/dist/domain/editable-artifacts/index.d.ts +14 -0
- package/dist/domain/editable-artifacts/ports.d.ts +341 -0
- package/dist/domain/editable-artifacts/postgres-adapters.d.ts +13 -0
- package/dist/domain/editable-artifacts/service.d.ts +105 -0
- package/dist/domain/editable-artifacts/snapshot-compaction.d.ts +44 -0
- package/dist/domain/editable-artifacts/snapshot-verifier-genesis.d.ts +50 -0
- package/dist/domain/editable-artifacts/snapshot-verifier-materialization.d.ts +21 -0
- package/dist/domain/editable-artifacts/snapshot-verifier.d.ts +118 -0
- package/dist/domain/editable-artifacts/types.d.ts +410 -0
- package/dist/domain/fiken.d.ts +35 -0
- package/dist/domain/memory-slack-delivery.d.ts +19 -0
- package/dist/domain/packs.d.ts +29 -1
- package/dist/domain/personal-connection-delegations.d.ts +9 -1
- package/dist/domain/scheduled-tasks.d.ts +2 -2
- package/dist/domain/session-tool-policy.d.ts +2 -2
- package/dist/domain/sessions.d.ts +24 -8
- package/dist/domain/skill-imports.d.ts +32 -0
- package/dist/domain/slack-publication-secret-safety.d.ts +8 -0
- package/dist/domain/timeline-annotations.d.ts +5 -0
- package/dist/domain/video-generation-capabilities.d.ts +10 -0
- package/dist/domain/video-generation.d.ts +47 -0
- package/dist/editable-artifact-live/application.d.ts +69 -0
- package/dist/editable-artifact-live/errors.d.ts +1 -0
- package/dist/editable-artifact-live/index.d.ts +8 -0
- package/dist/editable-artifact-live/outbox-dispatcher.d.ts +162 -0
- package/dist/editable-artifact-live/ports.d.ts +100 -0
- package/dist/editable-artifact-live/server.d.ts +71 -0
- package/dist/editable-artifact-live/ticket.d.ts +40 -0
- package/dist/editable-artifact-live/types.d.ts +213 -0
- package/dist/editable-artifact-live/wire.d.ts +34 -0
- package/dist/editable-artifact-live.d.ts +2 -0
- package/dist/editable-artifact-live.js +58 -0
- package/dist/editable-artifact-live.js.map +1 -0
- package/dist/editable-artifacts.d.ts +2 -0
- package/dist/editable-artifacts.js +179 -0
- package/dist/editable-artifacts.js.map +1 -0
- package/dist/index.d.ts +37 -26
- package/dist/index.js +4145 -959
- package/dist/index.js.map +1 -1
- package/dist/managed-session.d.ts +6 -2
- package/dist/rigs/index.d.ts +1 -1
- package/dist/rigs/provider-images.d.ts +31 -0
- package/dist/sandbox/fleet.d.ts +8 -5
- package/dist/sandbox/routing.d.ts +1 -0
- package/dist/session-authorization.d.ts +4 -2
- package/dist/transcription.d.ts +5 -0
- package/dist/workflow-wake-contract.d.ts +7 -0
- package/package.json +22 -10
- package/src/access/index.ts +14 -2
- package/src/application/new-session-drafts.ts +2 -0
- package/src/application/session-commands.ts +188 -107
- package/src/canonical-human-identities.ts +27 -0
- package/src/dependencies.ts +34 -2
- package/src/domain/capabilities.ts +729 -408
- package/src/domain/company-profile-durable-learning-adapter.ts +221 -0
- package/src/domain/conversation-integrations.ts +1238 -0
- package/src/domain/durable-learning-slack-publication.ts +202 -0
- package/src/domain/editable-artifacts/agent-application.ts +687 -0
- package/src/domain/editable-artifacts/durable-export-postgres.ts +139 -0
- package/src/domain/editable-artifacts/durable-export.ts +734 -0
- package/src/domain/editable-artifacts/errors.ts +115 -0
- package/src/domain/editable-artifacts/hash.ts +131 -0
- package/src/domain/editable-artifacts/in-memory.ts +1662 -0
- package/src/domain/editable-artifacts/index.ts +14 -0
- package/src/domain/editable-artifacts/ports.ts +462 -0
- package/src/domain/editable-artifacts/postgres-adapters.ts +49 -0
- package/src/domain/editable-artifacts/service.ts +2402 -0
- package/src/domain/editable-artifacts/snapshot-compaction.ts +246 -0
- package/src/domain/editable-artifacts/snapshot-verifier-genesis.ts +235 -0
- package/src/domain/editable-artifacts/snapshot-verifier-materialization.ts +74 -0
- package/src/domain/editable-artifacts/snapshot-verifier.ts +687 -0
- package/src/domain/editable-artifacts/types.ts +835 -0
- package/src/domain/fiken.ts +88 -0
- package/src/domain/insights.ts +163 -50
- package/src/domain/memory-slack-delivery.ts +204 -0
- package/src/domain/memory-slack-publication.ts +5 -2
- package/src/domain/packs.ts +266 -5
- package/src/domain/personal-connection-delegations.ts +97 -6
- package/src/domain/scheduled-tasks.ts +171 -29
- package/src/domain/session-tool-policy.ts +8 -2
- package/src/domain/sessions.ts +395 -148
- package/src/domain/skill-imports.ts +350 -0
- package/src/domain/slack-publication-secret-safety.ts +42 -0
- package/src/domain/timeline-annotations.ts +204 -0
- package/src/domain/video-generation-capabilities.ts +104 -0
- package/src/domain/video-generation.ts +249 -0
- package/src/editable-artifact-live/application.ts +182 -0
- package/src/editable-artifact-live/errors.ts +4 -0
- package/src/editable-artifact-live/index.ts +8 -0
- package/src/editable-artifact-live/outbox-dispatcher.ts +916 -0
- package/src/editable-artifact-live/ports.ts +139 -0
- package/src/editable-artifact-live/server.ts +1707 -0
- package/src/editable-artifact-live/ticket.ts +217 -0
- package/src/editable-artifact-live/types.ts +286 -0
- package/src/editable-artifact-live/wire.ts +95 -0
- package/src/editable-artifact-live.ts +2 -0
- package/src/editable-artifacts.ts +2 -0
- package/src/index.ts +15 -0
- package/src/managed-session.ts +19 -2
- package/src/rigs/index.ts +26 -19
- package/src/rigs/provider-images.ts +110 -0
- package/src/sandbox/fleet.ts +72 -66
- package/src/sandbox/routing.ts +6 -3
- package/src/session-authorization.ts +187 -52
- package/src/transcription.ts +5 -0
- package/src/workflow-wake-contract.ts +8 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import {
|
|
2
|
+
enqueueMemorySlackPublication,
|
|
3
|
+
getCurrentMemorySlackPublicationConfiguration,
|
|
4
|
+
type Database,
|
|
5
|
+
type EnqueueMemorySlackPublicationResult,
|
|
6
|
+
} from "@opengeni/db";
|
|
7
|
+
import { sanitizeSlackPublicationText } from "./slack-publication-secret-safety";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Narrow post-persistence port for the immutable durable-learning v1 attempt/receipt contract.
|
|
11
|
+
* The router owns validation, authority, routing, and persistence. This adapter
|
|
12
|
+
* consumes only the fields required to create a bounded notification projection.
|
|
13
|
+
*/
|
|
14
|
+
export type DurableLearningSlackOutcome = {
|
|
15
|
+
attempt: {
|
|
16
|
+
id: string;
|
|
17
|
+
accountId: string;
|
|
18
|
+
workspaceId: string;
|
|
19
|
+
inputHash: string;
|
|
20
|
+
actor: { kind: "human" | "agent" | "service"; subjectId: string };
|
|
21
|
+
initiatingHumanSubjectId: string | null;
|
|
22
|
+
sessionId: string | null;
|
|
23
|
+
request:
|
|
24
|
+
| {
|
|
25
|
+
operation: "write";
|
|
26
|
+
subject: {
|
|
27
|
+
kind: string;
|
|
28
|
+
summary: string | null;
|
|
29
|
+
};
|
|
30
|
+
evidence: Array<{ kind: string }>;
|
|
31
|
+
}
|
|
32
|
+
| {
|
|
33
|
+
operation: "rollback";
|
|
34
|
+
targetAttemptId: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
receipt: {
|
|
38
|
+
attemptId: string;
|
|
39
|
+
inputHash: string;
|
|
40
|
+
outcome:
|
|
41
|
+
| "applied"
|
|
42
|
+
| "proposed"
|
|
43
|
+
| "evidence_recorded"
|
|
44
|
+
| "noop"
|
|
45
|
+
| "clarification_required"
|
|
46
|
+
| "rejected"
|
|
47
|
+
| "rolled_back"
|
|
48
|
+
| "failed";
|
|
49
|
+
decision: {
|
|
50
|
+
code: string;
|
|
51
|
+
destination: string | null;
|
|
52
|
+
scope: { kind: string } | null;
|
|
53
|
+
authority: string | null;
|
|
54
|
+
};
|
|
55
|
+
resource: {
|
|
56
|
+
surface: string;
|
|
57
|
+
id: string;
|
|
58
|
+
version: string | null;
|
|
59
|
+
status: string;
|
|
60
|
+
} | null;
|
|
61
|
+
createdAt: string;
|
|
62
|
+
};
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export type DurableLearningSlackPublicationResult =
|
|
66
|
+
| {
|
|
67
|
+
kind:
|
|
68
|
+
| "contract_mismatch"
|
|
69
|
+
| "not_workspace_scoped"
|
|
70
|
+
| "connector_evidence_untrusted"
|
|
71
|
+
| "summary_required"
|
|
72
|
+
| "policy_quiet";
|
|
73
|
+
enqueue: null;
|
|
74
|
+
}
|
|
75
|
+
| { kind: "enqueued"; enqueue: EnqueueMemorySlackPublicationResult };
|
|
76
|
+
|
|
77
|
+
export type DurableLearningSlackProjection = {
|
|
78
|
+
summary: string;
|
|
79
|
+
outcome: DurableLearningSlackOutcome["receipt"]["outcome"];
|
|
80
|
+
decisionCode: string;
|
|
81
|
+
destination: string | null;
|
|
82
|
+
authority: string | null;
|
|
83
|
+
resource: DurableLearningSlackOutcome["receipt"]["resource"];
|
|
84
|
+
occurredAt: string;
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
export async function publishDurableLearningOutcomeToSlack(
|
|
88
|
+
db: Database,
|
|
89
|
+
outcome: DurableLearningSlackOutcome,
|
|
90
|
+
): Promise<DurableLearningSlackPublicationResult> {
|
|
91
|
+
const { attempt, receipt } = outcome;
|
|
92
|
+
if (attempt.id !== receipt.attemptId || attempt.inputHash !== receipt.inputHash) {
|
|
93
|
+
return { kind: "contract_mismatch", enqueue: null };
|
|
94
|
+
}
|
|
95
|
+
if (receipt.decision.scope?.kind !== "workspace") {
|
|
96
|
+
return { kind: "not_workspace_scoped", enqueue: null };
|
|
97
|
+
}
|
|
98
|
+
if (
|
|
99
|
+
attempt.request.operation === "write" &&
|
|
100
|
+
attempt.request.evidence.some((evidence) => evidence.kind === "connector")
|
|
101
|
+
) {
|
|
102
|
+
// The v1 router contract intentionally does not identify connector providers.
|
|
103
|
+
// Fail closed rather than risk republishing a Slack-derived learning outcome.
|
|
104
|
+
return { kind: "connector_evidence_untrusted", enqueue: null };
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
const projection = durableLearningSlackProjection(outcome);
|
|
108
|
+
if (!projection) return { kind: "summary_required", enqueue: null };
|
|
109
|
+
const importance = durableLearningImportance(outcome);
|
|
110
|
+
const configuration = await getCurrentMemorySlackPublicationConfiguration(
|
|
111
|
+
db,
|
|
112
|
+
attempt.workspaceId,
|
|
113
|
+
);
|
|
114
|
+
const deliveryMode = configuration?.autoImportances.includes(importance)
|
|
115
|
+
? "auto"
|
|
116
|
+
: configuration?.reviewImportances.includes(importance)
|
|
117
|
+
? "review"
|
|
118
|
+
: null;
|
|
119
|
+
if (!configuration?.enabled || !deliveryMode) {
|
|
120
|
+
return { kind: "policy_quiet", enqueue: null };
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
const enqueue = await enqueueMemorySlackPublication(db, {
|
|
124
|
+
accountId: attempt.accountId,
|
|
125
|
+
workspaceId: attempt.workspaceId,
|
|
126
|
+
sourceType: "durable_learning",
|
|
127
|
+
sourceId: receipt.attemptId,
|
|
128
|
+
sourceVersion: receipt.inputHash,
|
|
129
|
+
sourceIdempotencyKey: `durable-learning:${receipt.attemptId}`,
|
|
130
|
+
projection,
|
|
131
|
+
importance,
|
|
132
|
+
deliveryMode,
|
|
133
|
+
actor: {
|
|
134
|
+
kind: attempt.actor.kind,
|
|
135
|
+
subjectId: attempt.actor.subjectId,
|
|
136
|
+
initiatingHumanSubjectId: attempt.initiatingHumanSubjectId,
|
|
137
|
+
sessionId: attempt.sessionId,
|
|
138
|
+
attemptId: attempt.id,
|
|
139
|
+
},
|
|
140
|
+
});
|
|
141
|
+
return { kind: "enqueued", enqueue };
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export function durableLearningImportance(
|
|
145
|
+
outcome: DurableLearningSlackOutcome,
|
|
146
|
+
): "major" | "normal" | "minor" {
|
|
147
|
+
if (outcome.receipt.outcome === "failed" || outcome.receipt.outcome === "rolled_back") {
|
|
148
|
+
return "major";
|
|
149
|
+
}
|
|
150
|
+
if (outcome.receipt.outcome === "noop" || outcome.receipt.outcome === "clarification_required") {
|
|
151
|
+
return "minor";
|
|
152
|
+
}
|
|
153
|
+
if (
|
|
154
|
+
outcome.attempt.request.operation === "write" &&
|
|
155
|
+
["decision", "workspace_charter", "mandatory_operating_context", "workspace_goal"].includes(
|
|
156
|
+
outcome.attempt.request.subject.kind,
|
|
157
|
+
)
|
|
158
|
+
) {
|
|
159
|
+
return "major";
|
|
160
|
+
}
|
|
161
|
+
return "normal";
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
export function durableLearningSlackProjection(
|
|
165
|
+
outcome: DurableLearningSlackOutcome,
|
|
166
|
+
): DurableLearningSlackProjection | null {
|
|
167
|
+
const summary = durableLearningSummary(outcome);
|
|
168
|
+
if (!summary) return null;
|
|
169
|
+
return {
|
|
170
|
+
summary,
|
|
171
|
+
outcome: outcome.receipt.outcome,
|
|
172
|
+
decisionCode: outcome.receipt.decision.code,
|
|
173
|
+
destination: boundedSlackPublicationText(outcome.receipt.decision.destination, 128),
|
|
174
|
+
authority: outcome.receipt.decision.authority,
|
|
175
|
+
resource: outcome.receipt.resource
|
|
176
|
+
? {
|
|
177
|
+
surface: outcome.receipt.resource.surface,
|
|
178
|
+
id: outcome.receipt.resource.id,
|
|
179
|
+
version: outcome.receipt.resource.version,
|
|
180
|
+
status: outcome.receipt.resource.status,
|
|
181
|
+
}
|
|
182
|
+
: null,
|
|
183
|
+
occurredAt: outcome.receipt.createdAt,
|
|
184
|
+
};
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
function durableLearningSummary(outcome: DurableLearningSlackOutcome): string | null {
|
|
188
|
+
if (outcome.attempt.request.operation === "rollback") {
|
|
189
|
+
const destination =
|
|
190
|
+
boundedSlackPublicationText(outcome.receipt.decision.destination, 128) ??
|
|
191
|
+
"governed knowledge";
|
|
192
|
+
return `Rolled back a durable learning change for ${destination}.`;
|
|
193
|
+
}
|
|
194
|
+
const summary = outcome.attempt.request.subject.summary?.replace(/\s+/g, " ").trim();
|
|
195
|
+
return summary ? sanitizeSlackPublicationText(summary).slice(0, 512) : null;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
function boundedSlackPublicationText(value: string | null, maxChars: number): string | null {
|
|
199
|
+
if (!value) return null;
|
|
200
|
+
const sanitized = sanitizeSlackPublicationText(value.replace(/\s+/g, " ").trim());
|
|
201
|
+
return sanitized ? sanitized.slice(0, maxChars) : null;
|
|
202
|
+
}
|