@cat-factory/orchestration 0.290.2 → 0.292.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/container/content-library-dependencies.d.ts +212 -0
- package/dist/container/content-library-dependencies.d.ts.map +1 -0
- package/dist/container/content-library-dependencies.js +2 -0
- package/dist/container/content-library-dependencies.js.map +1 -0
- package/dist/container/dependencies.d.ts +21 -181
- package/dist/container/dependencies.d.ts.map +1 -1
- package/dist/container/engine-collaborators.d.ts +1 -0
- package/dist/container/engine-collaborators.d.ts.map +1 -1
- package/dist/container/engine-collaborators.js +5 -1
- package/dist/container/engine-collaborators.js.map +1 -1
- package/dist/container/environmentsModule.factory.d.ts.map +1 -1
- package/dist/container/environmentsModule.factory.js +19 -0
- package/dist/container/environmentsModule.factory.js.map +1 -1
- package/dist/container/execution-service.d.ts.map +1 -1
- package/dist/container/execution-service.js +2 -1
- package/dist/container/execution-service.js.map +1 -1
- package/dist/container/modules.d.ts +13 -1
- package/dist/container/modules.d.ts.map +1 -1
- package/dist/container/modules.js +40 -6
- package/dist/container/modules.js.map +1 -1
- package/dist/container-content-libraries.d.ts +16 -1
- package/dist/container-content-libraries.d.ts.map +1 -1
- package/dist/container-content-libraries.js +44 -1
- package/dist/container-content-libraries.js.map +1 -1
- package/dist/modules/environments/EnvironmentTestService.d.ts.map +1 -1
- package/dist/modules/environments/EnvironmentTestService.js +7 -4
- package/dist/modules/environments/EnvironmentTestService.js.map +1 -1
- package/dist/modules/execution/DeployerStepController.d.ts +8 -0
- package/dist/modules/execution/DeployerStepController.d.ts.map +1 -1
- package/dist/modules/execution/DeployerStepController.js +55 -6
- package/dist/modules/execution/DeployerStepController.js.map +1 -1
- package/dist/modules/execution/EnvironmentInvestigationController.d.ts +188 -0
- package/dist/modules/execution/EnvironmentInvestigationController.d.ts.map +1 -0
- package/dist/modules/execution/EnvironmentInvestigationController.js +404 -0
- package/dist/modules/execution/EnvironmentInvestigationController.js.map +1 -0
- package/dist/modules/execution/EnvironmentInvestigationService.d.ts +41 -0
- package/dist/modules/execution/EnvironmentInvestigationService.d.ts.map +1 -0
- package/dist/modules/execution/EnvironmentInvestigationService.js +84 -0
- package/dist/modules/execution/EnvironmentInvestigationService.js.map +1 -0
- package/dist/modules/execution/ExecutionServiceDependencies.d.ts +6 -1
- package/dist/modules/execution/ExecutionServiceDependencies.d.ts.map +1 -1
- package/dist/modules/execution/RunDispatcher.d.ts +10 -13
- package/dist/modules/execution/RunDispatcher.d.ts.map +1 -1
- package/dist/modules/execution/RunDispatcher.js +19 -45
- package/dist/modules/execution/RunDispatcher.js.map +1 -1
- package/dist/modules/execution/RunDispatcherDependencies.d.ts +7 -1
- package/dist/modules/execution/RunDispatcherDependencies.d.ts.map +1 -1
- package/dist/modules/execution/RunDispatcherDependencies.js.map +1 -1
- package/dist/modules/execution/deployer-family.d.ts +21 -0
- package/dist/modules/execution/deployer-family.d.ts.map +1 -0
- package/dist/modules/execution/deployer-family.js +47 -0
- package/dist/modules/execution/deployer-family.js.map +1 -0
- package/dist/modules/execution/run-foundational-services.d.ts +8 -0
- package/dist/modules/execution/run-foundational-services.d.ts.map +1 -1
- package/dist/modules/execution/run-foundational-services.js +30 -2
- package/dist/modules/execution/run-foundational-services.js.map +1 -1
- package/dist/modules/execution/runOutcome.boundary.d.ts.map +1 -1
- package/dist/modules/execution/runOutcome.boundary.js +4 -0
- package/dist/modules/execution/runOutcome.boundary.js.map +1 -1
- package/dist/modules/observability/LlmObservabilityService.d.ts +8 -0
- package/dist/modules/observability/LlmObservabilityService.d.ts.map +1 -1
- package/dist/modules/observability/LlmObservabilityService.js +8 -0
- package/dist/modules/observability/LlmObservabilityService.js.map +1 -1
- package/dist/modules/pipelines/pipelineShape.d.ts +4 -2
- package/dist/modules/pipelines/pipelineShape.d.ts.map +1 -1
- package/dist/modules/pipelines/pipelineShape.js +4 -2
- package/dist/modules/pipelines/pipelineShape.js.map +1 -1
- package/dist/modules/preview/PreviewService.d.ts.map +1 -1
- package/dist/modules/preview/PreviewService.js +3 -0
- package/dist/modules/preview/PreviewService.js.map +1 -1
- package/package.json +11 -11
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
import type { AgentKindSource, ResolveFragmentInstallationId, ResolveSkillInstallationId } from '@cat-factory/agents';
|
|
2
|
+
import type { AccountSkillRepository, ApiContractRepository, AppCaches, BinaryGeneratorRegistry, BinaryGeneratorSource, BinaryStoreRegistry, DeploymentDocumentResolver, DocumentContentResolver, FoundationalBuiltinSource, FoundationalServiceRegistry, FoundationalServiceRepository, FoundationalServiceSourceRepository, FoundationalSourceResyncRequest, FragmentBriefGenerator, FragmentBriefRepository, FragmentSelector, FragmentSourceRepository, PromptFragmentRegistry, PromptFragmentRepository, PromptFragmentSource, SecretCipher, ServiceCatalogConnectionRepository, SkillSourceRepository, SkillSourceResyncRequest, UrlSafetyPolicy } from '@cat-factory/kernel';
|
|
3
|
+
/**
|
|
4
|
+
* The three tenant-scoped content libraries a deployment can opt into, and the developer portal
|
|
5
|
+
* that imports into the third.
|
|
6
|
+
*
|
|
7
|
+
* Every member is optional and each library assembles only when its own repositories are present,
|
|
8
|
+
* which is what keeps a deployment that wants none of them byte-for-byte unchanged.
|
|
9
|
+
*/
|
|
10
|
+
export interface ContentLibraryDependencies {
|
|
11
|
+
/**
|
|
12
|
+
* The app-owned cache bag (docs/initiatives/caching-layer.md). A facade builds
|
|
13
|
+
* it once per process via `createAppCaches`: Node threads in the Redis-backed
|
|
14
|
+
* invalidation notifications in multi-node deployments, the Worker passes the
|
|
15
|
+
* isolate-safe profile. Absent (tests / harnesses) ⇒ `createCore` builds bare
|
|
16
|
+
* in-memory defaults, whose coherence the services' own invalidation calls keep.
|
|
17
|
+
*/
|
|
18
|
+
caches?: AppCaches;
|
|
19
|
+
promptFragmentRepository?: PromptFragmentRepository;
|
|
20
|
+
fragmentSourceRepository?: FragmentSourceRepository;
|
|
21
|
+
fragmentSelector?: FragmentSelector;
|
|
22
|
+
resolveFragmentInstallationId?: ResolveFragmentInstallationId;
|
|
23
|
+
/**
|
|
24
|
+
* Persisted store for MODEL-GENERATED condensed briefs: the short variant an implementer
|
|
25
|
+
* kind folds when a long standard has no linked one. Absent ⇒ only authored/linked briefs
|
|
26
|
+
* are folded and every other long standard is sent in full (the pre-feature behaviour).
|
|
27
|
+
*/
|
|
28
|
+
fragmentBriefRepository?: FragmentBriefRepository;
|
|
29
|
+
/**
|
|
30
|
+
* The condensation model behind those generated briefs. A facade leaves this unset and
|
|
31
|
+
* gets the inline `LlmFragmentBriefGenerator` built from its own model provider; a
|
|
32
|
+
* test/conformance harness injects a deterministic one instead (the same
|
|
33
|
+
* "explicitly-injected wins" seam `documentContentResolver` uses).
|
|
34
|
+
*/
|
|
35
|
+
fragmentBriefGenerator?: FragmentBriefGenerator;
|
|
36
|
+
/**
|
|
37
|
+
* Live document reader for **document-backed** fragments (Confluence/Notion/
|
|
38
|
+
* GitHub files linked as living best-practice fragments). Wired by a facade
|
|
39
|
+
* from its document-source registry + connection service; absent → linking a
|
|
40
|
+
* document as a fragment is rejected and run resolution uses cached bodies.
|
|
41
|
+
*/
|
|
42
|
+
documentContentResolver?: DocumentContentResolver;
|
|
43
|
+
/**
|
|
44
|
+
* Live document reader for the DEPLOYMENT's own documents: the living standard a code-registered
|
|
45
|
+
* (`builtin`-tier) prompt fragment names, authenticated with credentials this deployment
|
|
46
|
+
* configured centrally rather than with any tenant's connection.
|
|
47
|
+
*
|
|
48
|
+
* Its own field beside {@link documentContentResolver} because the difference is the CREDENTIAL
|
|
49
|
+
* HOME, not an argument: that one resolves a workspace's stored connection, this one reads
|
|
50
|
+
* deployment configuration and caches under one deployment-wide group. In MOTHERSHIP mode it is
|
|
51
|
+
* REMOTE (the credentials live on the mothership and never reach a node, so the node reads the
|
|
52
|
+
* resolved body over `/internal/prompt-fragments/document-bodies`).
|
|
53
|
+
*
|
|
54
|
+
* Absent ⇒ this deployment configured no document source of its own, and boot validation refuses
|
|
55
|
+
* a code-registered `documentRef` rather than letting it render as live and fold something stale.
|
|
56
|
+
*/
|
|
57
|
+
deploymentDocumentResolver?: DeploymentDocumentResolver;
|
|
58
|
+
accountSkillRepository?: AccountSkillRepository;
|
|
59
|
+
skillSourceRepository?: SkillSourceRepository;
|
|
60
|
+
resolveSkillInstallationId?: ResolveSkillInstallationId;
|
|
61
|
+
/**
|
|
62
|
+
* Enqueues a targeted skill-source resync onto the runtime's GitHub-sync queue, for the
|
|
63
|
+
* push-webhook freshness fan-out (slice 4). Facade-provided (Worker Queue / Node pg-boss);
|
|
64
|
+
* absent (no queue, or a pure-logic test) ⇒ no proactive resync, and freshness is guaranteed
|
|
65
|
+
* at dispatch by the resolver's head-commit probe instead.
|
|
66
|
+
*/
|
|
67
|
+
enqueueSkillResync?: (request: SkillSourceResyncRequest) => Promise<void>;
|
|
68
|
+
foundationalServiceRepository?: FoundationalServiceRepository;
|
|
69
|
+
apiContractRepository?: ApiContractRepository;
|
|
70
|
+
foundationalServiceSourceRepository?: FoundationalServiceSourceRepository;
|
|
71
|
+
/**
|
|
72
|
+
* The workspace's SERVICE CATALOG connection: the developer portal (Backstage) whose services
|
|
73
|
+
* are imported into the catalog above as `workspace`-tier rows. The import assembles only
|
|
74
|
+
* alongside {@link serviceCatalogSecretCipher}, because the credential is sealed and a
|
|
75
|
+
* connection nothing can open is a connection nothing can import through.
|
|
76
|
+
*/
|
|
77
|
+
serviceCatalogConnectionRepository?: ServiceCatalogConnectionRepository;
|
|
78
|
+
/**
|
|
79
|
+
* The cipher the portal credential is sealed with, on its OWN HKDF domain
|
|
80
|
+
* (`cat-factory:service-catalog`) exactly as the runner-pool and email ones are: widening or
|
|
81
|
+
* rotating one integration's key must not reach another's rows.
|
|
82
|
+
*/
|
|
83
|
+
serviceCatalogSecretCipher?: SecretCipher;
|
|
84
|
+
/**
|
|
85
|
+
* URL/host safety policy for the SERVICE-CATALOG integration (the portal base URL and any
|
|
86
|
+
* OAuth token endpoint). Absent ⇒ strict (https-only, no private/internal hosts).
|
|
87
|
+
*
|
|
88
|
+
* Widening it is the normal case for this integration rather than an exception: a self-hosted
|
|
89
|
+
* developer portal usually lives on an internal host. It is still scoped independently of the
|
|
90
|
+
* environment and runner policies, so admitting `.corp.internal` here admits nothing there.
|
|
91
|
+
*/
|
|
92
|
+
serviceCatalogUrlSafetyPolicy?: UrlSafetyPolicy;
|
|
93
|
+
/**
|
|
94
|
+
* The app-owned registry of foundational services a DEPLOYMENT ships in CODE: the `builtin`
|
|
95
|
+
* tier of the catalog merge, mirroring `pipelineRegistry` / `taskTypeRegistry`. Optional +
|
|
96
|
+
* defaulted to `defaultFoundationalServiceRegistry()`, which ships exactly ONE service: the
|
|
97
|
+
* platform's own asset storage, so a binary-output step has a target on a deployment that runs
|
|
98
|
+
* no object store of its own. A facade injects the SAME instance it registers its estate on,
|
|
99
|
+
* and boot validation reads it back so a malformed definition fails the deployment rather than
|
|
100
|
+
* a design dispatch.
|
|
101
|
+
*/
|
|
102
|
+
foundationalServiceRegistry?: FoundationalServiceRegistry;
|
|
103
|
+
/**
|
|
104
|
+
* The app-owned registry of GENERATIVE BINARY INTEGRATIONS a DEPLOYMENT ships in CODE: the
|
|
105
|
+
* image / music / video generation APIs a binary-generating step may call
|
|
106
|
+
* (`stepOptions.binaryOutput.generatorIds`). Optional + defaulted to
|
|
107
|
+
* `defaultBinaryGeneratorRegistry()` (EMPTY, because the platform ships none and every one of them is
|
|
108
|
+
* a metered vendor), so existing construction sites behave exactly as before; a facade injects
|
|
109
|
+
* the SAME instance it registers its integrations on, and boot validation reads it back so a
|
|
110
|
+
* malformed definition or an unusable credential name fails the deployment rather than a
|
|
111
|
+
* dispatch. Deliberately NOT the foundational-service registry: that catalog is what a design
|
|
112
|
+
* is expected to build ON, while an integration is an instrument a specific step is pointed at.
|
|
113
|
+
*/
|
|
114
|
+
binaryGeneratorRegistry?: BinaryGeneratorRegistry;
|
|
115
|
+
/**
|
|
116
|
+
* The app-owned registry of BINARY ARTIFACT STORES a DEPLOYMENT ships in CODE: its own
|
|
117
|
+
* implementations of the `BinaryBlobBackend` port, selectable per account beside the platform's
|
|
118
|
+
* `fs` / `db` / `s3` / `r2` backends. Optional + defaulted to `defaultBinaryStoreRegistry()`
|
|
119
|
+
* (EMPTY: the platform's own stores are not registry entries), so every existing construction
|
|
120
|
+
* site behaves exactly as before.
|
|
121
|
+
*
|
|
122
|
+
* Unlike its generative sibling above this one does NOT get a mothership `Source`, and the
|
|
123
|
+
* asymmetry is the point: a generator definition is DATA a run resolves, so a node reading its
|
|
124
|
+
* own copy can disagree with the picker the mothership fed; a store is a live client that only
|
|
125
|
+
* the process about to write the bytes can construct, so the process that answers the settings
|
|
126
|
+
* picker is by construction the one that stores. There is nothing here for a machine API to
|
|
127
|
+
* carry, and a `Source` would only invite pointing one node at another's credentials.
|
|
128
|
+
*/
|
|
129
|
+
binaryStoreRegistry?: BinaryStoreRegistry;
|
|
130
|
+
/**
|
|
131
|
+
* Where those integrations are READ from, when that is not this process's own registry.
|
|
132
|
+
* Defaulted to `registryBinaryGeneratorSource(binaryGeneratorRegistry)`, i.e. exactly the
|
|
133
|
+
* behaviour above, and overridden by ONE caller: a MOTHERSHIP-MODE node, which reads the
|
|
134
|
+
* mothership's registry over `GET /internal/binary-generators`.
|
|
135
|
+
*
|
|
136
|
+
* The sibling of {@link foundationalBuiltinSource}, and it exists for the same reason with a
|
|
137
|
+
* louder symptom. A mothership deployment is TWO processes, so a deployment had to register
|
|
138
|
+
* its integrations on both entry points; a node one build behind (the normal state of a local
|
|
139
|
+
* node) then refuses a step the mothership's own picker offered, with `unknown_generator`
|
|
140
|
+
* naming a configuration that is correct. See `kernel/src/ports/binary-generators.ts`.
|
|
141
|
+
*
|
|
142
|
+
* When it is set, this process's own `binaryGeneratorRegistry` is NOT consulted for a run (the
|
|
143
|
+
* facade warns at boot if it is non-empty). The two are alternatives, never a merge: a merge
|
|
144
|
+
* would reinstate the drift, since a stale local copy would win by id over the authoritative
|
|
145
|
+
* one. The registry is still read for BOOT VALIDATION and for serving
|
|
146
|
+
* `/internal/binary-generators` when this process is itself a mothership.
|
|
147
|
+
*/
|
|
148
|
+
binaryGeneratorSource?: BinaryGeneratorSource;
|
|
149
|
+
/**
|
|
150
|
+
* Where the `builtin` tier is READ from, when that is not this process's own registry.
|
|
151
|
+
* Defaulted to `registryBuiltinSource(foundationalServiceRegistry)`, i.e. exactly the
|
|
152
|
+
* behaviour above, and overridden by ONE caller: a MOTHERSHIP-MODE node, which reads the
|
|
153
|
+
* mothership's registry over `GET /internal/foundational-services`.
|
|
154
|
+
*
|
|
155
|
+
* It exists because a mothership deployment is TWO processes and the estate is org state: with
|
|
156
|
+
* the registry as the only route, a deployment had to register the same estate on both entry
|
|
157
|
+
* points, and a node one build behind (the normal state of a local node) silently resolved a
|
|
158
|
+
* catalog missing whatever the mothership had since added. A run then simply does not consider
|
|
159
|
+
* that service, which is indistinguishable from an Architect judging it irrelevant. See
|
|
160
|
+
* `kernel/src/ports/foundational-builtins.ts`.
|
|
161
|
+
*
|
|
162
|
+
* When it is set, this process's own `foundationalServiceRegistry` is NOT consulted for the
|
|
163
|
+
* tier (the facade warns at boot if it is non-empty). The two are alternatives, never a merge:
|
|
164
|
+
* a merge would reinstate the drift, since a stale local copy would win by id over the
|
|
165
|
+
* authoritative one.
|
|
166
|
+
*/
|
|
167
|
+
foundationalBuiltinSource?: FoundationalBuiltinSource;
|
|
168
|
+
/**
|
|
169
|
+
* The app-owned registry a deployment registers its best-practice PROMPT FRAGMENTS on, plus the
|
|
170
|
+
* per-task-type default sets that select them. Optional + defaulted to
|
|
171
|
+
* `defaultPromptFragmentRegistry()` (EMPTY, because the shipped catalog installs onto one through
|
|
172
|
+
* `promptFragmentRegistryWithBuiltins()`, which is what each facade injects, so a caller that
|
|
173
|
+
* passes nothing gets no standards rather than a silently different second pool).
|
|
174
|
+
*
|
|
175
|
+
* It replaced two module globals in `@cat-factory/prompt-fragments`, whose correctness depended
|
|
176
|
+
* on every reader resolving the same physical copy of that package. The published graph does not
|
|
177
|
+
* guarantee that, and the failure was silent: registrations landed in one copy, readers saw the
|
|
178
|
+
* other, and every task of the deployment's operation was seeded with ids that folded nothing.
|
|
179
|
+
*/
|
|
180
|
+
promptFragmentRegistry?: PromptFragmentRegistry;
|
|
181
|
+
/**
|
|
182
|
+
* Where the fragment POOL is READ from, when that is not this process's own registry. The exact
|
|
183
|
+
* sibling of {@link foundationalBuiltinSource}, with the same one overriding caller (a
|
|
184
|
+
* mothership-mode node, over `GET /internal/prompt-fragments`) and the same alternatives-never-a-
|
|
185
|
+
* merge rule: a merge would let a stale local copy win by id over the authoritative one, which is
|
|
186
|
+
* the drift the source exists to remove.
|
|
187
|
+
*/
|
|
188
|
+
promptFragmentSource?: PromptFragmentSource;
|
|
189
|
+
/**
|
|
190
|
+
* Where the deployment's AGENT-KIND CAPABILITY layer is read from, when that is not this
|
|
191
|
+
* process's own registry. Overridden by ONE caller: a mothership-mode node, over
|
|
192
|
+
* `GET /internal/agent-kinds`.
|
|
193
|
+
*
|
|
194
|
+
* The fourth of the same family, and the only one that MERGES rather than replaces. Its three
|
|
195
|
+
* siblings serve a set the node also registers, so a merge would let a stale local copy win by
|
|
196
|
+
* id. Here the halves are different things: a KIND's own declarations belong to the code that
|
|
197
|
+
* implements it (which cannot cross a wire, so the kind CATALOG stays node-local, exactly like
|
|
198
|
+
* task types and pipelines, and a step naming an unknown kind still fails loudly at admission),
|
|
199
|
+
* while `assignSkills`/`assignToolServers` are the DEPLOYMENT's layer on top: pure data whose
|
|
200
|
+
* absence on a node one build behind is silent, since the agent simply works without the org's
|
|
201
|
+
* playbook. Absent ⇒ the local registry answers alone.
|
|
202
|
+
*/
|
|
203
|
+
agentKindSource?: AgentKindSource;
|
|
204
|
+
/**
|
|
205
|
+
* Enqueues a targeted foundational-source resync onto the runtime's GitHub-sync queue, for the
|
|
206
|
+
* push-webhook freshness fan-out, the twin of {@link CoreDependencies.enqueueSkillResync}.
|
|
207
|
+
* Facade-provided (Worker Queue / Node pg-boss); absent (no queue, or a pure-logic test) ⇒ no
|
|
208
|
+
* proactive resync, and the autorefresh sweep bounds staleness instead.
|
|
209
|
+
*/
|
|
210
|
+
enqueueFoundationalResync?: (request: FoundationalSourceResyncRequest) => Promise<void>;
|
|
211
|
+
}
|
|
212
|
+
//# sourceMappingURL=content-library-dependencies.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-library-dependencies.d.ts","sourceRoot":"","sources":["../../src/container/content-library-dependencies.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,eAAe,EACf,6BAA6B,EAC7B,0BAA0B,EAC3B,MAAM,qBAAqB,CAAA;AAC5B,OAAO,KAAK,EACV,sBAAsB,EACtB,qBAAqB,EACrB,SAAS,EACT,uBAAuB,EACvB,qBAAqB,EACrB,mBAAmB,EACnB,0BAA0B,EAC1B,uBAAuB,EACvB,yBAAyB,EACzB,2BAA2B,EAC3B,6BAA6B,EAC7B,mCAAmC,EACnC,+BAA+B,EAC/B,sBAAsB,EACtB,uBAAuB,EACvB,gBAAgB,EAChB,wBAAwB,EACxB,sBAAsB,EACtB,wBAAwB,EACxB,oBAAoB,EACpB,YAAY,EACZ,kCAAkC,EAClC,qBAAqB,EACrB,wBAAwB,EACxB,eAAe,EAChB,MAAM,qBAAqB,CAAA;AAY5B;;;;;;GAMG;AACH,MAAM,WAAW,0BAA0B;IAQzC;;;;;;OAMG;IACH,MAAM,CAAC,EAAE,SAAS,CAAA;IAElB,wBAAwB,CAAC,EAAE,wBAAwB,CAAA;IACnD,wBAAwB,CAAC,EAAE,wBAAwB,CAAA;IACnD,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;IACnC,6BAA6B,CAAC,EAAE,6BAA6B,CAAA;IAC7D;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,uBAAuB,CAAA;IACjD;;;;;OAKG;IACH,sBAAsB,CAAC,EAAE,sBAAsB,CAAA;IAC/C;;;;;OAKG;IACH,uBAAuB,CAAC,EAAE,uBAAuB,CAAA;IACjD;;;;;;;;;;;;;OAaG;IACH,0BAA0B,CAAC,EAAE,0BAA0B,CAAA;IAMvD,sBAAsB,CAAC,EAAE,sBAAsB,CAAA;IAC/C,qBAAqB,CAAC,EAAE,qBAAqB,CAAA;IAC7C,0BAA0B,CAAC,EAAE,0BAA0B,CAAA;IACvD;;;;;OAKG;IACH,kBAAkB,CAAC,EAAE,CAAC,OAAO,EAAE,wBAAwB,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;IASzE,6BAA6B,CAAC,EAAE,6BAA6B,CAAA;IAC7D,qBAAqB,CAAC,EAAE,qBAAqB,CAAA;IAC7C,mCAAmC,CAAC,EAAE,mCAAmC,CAAA;IACzE;;;;;OAKG;IACH,kCAAkC,CAAC,EAAE,kCAAkC,CAAA;IACvE;;;;OAIG;IACH,0BAA0B,CAAC,EAAE,YAAY,CAAA;IACzC;;;;;;;OAOG;IACH,6BAA6B,CAAC,EAAE,eAAe,CAAA;IAC/C;;;;;;;;OAQG;IACH,2BAA2B,CAAC,EAAE,2BAA2B,CAAA;IACzD;;;;;;;;;;OAUG;IACH,uBAAuB,CAAC,EAAE,uBAAuB,CAAA;IACjD;;;;;;;;;;;;;OAaG;IACH,mBAAmB,CAAC,EAAE,mBAAmB,CAAA;IACzC;;;;;;;;;;;;;;;;;OAiBG;IACH,qBAAqB,CAAC,EAAE,qBAAqB,CAAA;IAC7C;;;;;;;;;;;;;;;;;OAiBG;IACH,yBAAyB,CAAC,EAAE,yBAAyB,CAAA;IACrD;;;;;;;;;;;OAWG;IACH,sBAAsB,CAAC,EAAE,sBAAsB,CAAA;IAC/C;;;;;;OAMG;IACH,oBAAoB,CAAC,EAAE,oBAAoB,CAAA;IAC3C;;;;;;;;;;;;;OAaG;IACH,eAAe,CAAC,EAAE,eAAe,CAAA;IACjC;;;;;OAKG;IACH,yBAAyB,CAAC,EAAE,CAAC,OAAO,EAAE,+BAA+B,KAAK,OAAO,CAAC,IAAI,CAAC,CAAA;CACxF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"content-library-dependencies.js","sourceRoot":"","sources":["../../src/container/content-library-dependencies.ts"],"names":[],"mappings":""}
|
|
@@ -1,13 +1,23 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ContentLibraryDependencies } from './content-library-dependencies.js';
|
|
2
|
+
import type { AgentKindRegistry } from '@cat-factory/agents';
|
|
2
3
|
import type { OpenRouterModelMeta, ResolvedValidationChecks } from '@cat-factory/contracts';
|
|
3
4
|
import type { AccountSettingsService, ComposeRuntime, CustomManifestTypeRegistry, DeployJobClient, DetectionConventions, EnvironmentBackendRegistry, RegisterHandlerInput, RunnerBackendRegistry, UserSecretKindRegistry, VcsPatConnectionService } from '@cat-factory/integrations';
|
|
4
|
-
import type { AccountInvitationRepository, AccountRepository,
|
|
5
|
+
import type { AccountInvitationRepository, AccountRepository, AgentContextSnapshotRepository, AgentExecutor, AgentPromptRepository, AgentSearchQueryRepository, AgentToolCallRepository, AuditLogReader, AuditRecorder, BlockRepository, BootstrapJobRepository, BootstrapRunner, BrainstormSessionRepository, BranchProjectionRepository, BranchUpdater, BugHuntAssessor, CheckRunProjectionRepository, ClarityReviewRepository, Clock, CommitProjectionRepository, ConsensusGroupRepository, CreateSharedStackInput, CustomManifestTypeRepository, DeployCloneTarget, DocInterviewRepository, DocumentConnectionRepository, DocumentConnectionStore, DocumentRepository, DocumentSourceProvider, EmailConnectionRepository, EmailSender, EnvConfigRepairJobRepository, EnvConfigRepairRunner, EnvConfigRepairer, EnvironmentConnectionRepository, EnvironmentProvider, EnvironmentRegistryRepository, EnvironmentTestRunRepository, EnvironmentTestRunner, EnvironmentUserHandlerRepository, ExecutionEventPublisher, ExecutionRepository, GateOutcomeRepository, GateRegistry, GitHubClient, GitHubInstallation, GitHubInstallationRepository, GitHubProvisioningClient, IdGenerator, IncidentEnrichmentConnectionRepository, InitiativePresetRegistry, InitiativeRepository, IssueProjectionRepository, IssueWritebackProvider, EnvironmentInvestigator, JudgeAssessor, JudgeRegistry, KaizenGradingRepository, KaizenVerifiedComboRepository, LlmCallMetricRepository, LlmTraceSink, LocalModelEndpointRepository, Logger, MembershipRepository, MergeTrackRecordRepository, ModelPresetRepository, ModelProvider, ModelProviderResolver, ModelRef, NotificationChannel, NotificationRepository, NotificationSettingsRepository, ObservabilityConnectionRepository, OperationalMetrics, PackageRegistryConnectionRepository, PasswordHasher, PasswordResetTokenRepository, PipelineRegistry, PipelineRepository, PipelineScheduleRepository, PlatformMetricsRepository, PrVerificationReportPublisher, PreflightHostProbes, PreviewTransport, ProviderCapabilities, ProviderRegistry, ProvisioningLogRepository, PullRequestMerger, PullRequestProjectionRepository, ReferenceArchitectureRepository, ReleaseHealthConfigRepository, RepoBootstrapper, RepoProjectionRepository, ReportsRepository, ResolveRunInitiatorToken, SpendRollupRepository, RequirementReviewRepository, ResolveBinaryArtifactStore, ResolveRepoFilesForCoords, ResolveRunRepoContext, AccountRiskPolicyRepository, RiskPolicyRepository, RiskPolicySuppressionRepository, RunInitiatorScope, RunLifecycleSink, RunnerPoolConnectionRepository, RunnerPoolProvider, SandboxExperimentRepository, SandboxFixtureRepository, SandboxGradeRepository, SandboxPromptVersionRepository, SandboxRunRepository, SecretCipher, SecretDelegate, ServiceFragmentDefaultsRepository, ServiceRepository, SharedStackRepository, SlackConnectionRepository, SlackMemberMappingRepository, SlackSettingsRepository, StepResolverRegistry, SubscriptionActivationRepository, TaskConnectionRepository, TaskConnectionStore, TaskRepository, TaskSourceProvider, TaskSourceSettingsRepository, TaskTypeRegistry, InlineUseCaseGenerator, InlineUseCaseRegistry, TestSecretRef, TicketTrackerProvider, TokenUsageRepository, TrackerCommentIngestRepository, TrackerSettingsRepository, UrlSafetyPolicy, UserRepoAccessRepository, UserRepository, TutorialProgressRepository, UserSettingsRepository, VcsProviderRegistry, VcsWebUrls, WebhookVerifier, WorkRunner, TaskTypeSuppressionRepository, WorkspaceAgentSettingsRepository, WorkspaceMemberRepository, WorkspaceMountRepository, WorkspaceRepository, WorkspaceSettingsRepository } from '@cat-factory/kernel';
|
|
5
6
|
import type { SpendPricing } from '@cat-factory/spend';
|
|
6
7
|
import type { TesterQualityReviewer } from '../modules/execution/TesterQualityReviewService.js';
|
|
7
8
|
import type { AgentContextObservabilityService } from '../modules/observability/AgentContextObservabilityService.js';
|
|
8
9
|
import type { SearchQueryObservabilityService } from '../modules/observability/SearchQueryObservabilityService.js';
|
|
9
10
|
import type { BuildPreviewJob } from '../modules/preview/PreviewService.js';
|
|
10
|
-
|
|
11
|
+
/**
|
|
12
|
+
* The application's dependency bag: every port, registry and facade-provided seam `createCore`
|
|
13
|
+
* assembles the container from.
|
|
14
|
+
*
|
|
15
|
+
* It EXTENDS {@link ContentLibraryDependencies}, whose members are declared next door: the three
|
|
16
|
+
* content libraries are a cohesive group with their own module factory file, and holding their
|
|
17
|
+
* declarations here is what pushed this one past its size budget. A facade populates one flat
|
|
18
|
+
* object exactly as before.
|
|
19
|
+
*/
|
|
20
|
+
export interface CoreDependencies extends ContentLibraryDependencies {
|
|
11
21
|
workspaceRepository: WorkspaceRepository;
|
|
12
22
|
/**
|
|
13
23
|
* Workspace-level RBAC roster (workspace-rbac initiative). Threaded into
|
|
@@ -156,6 +166,14 @@ export interface CoreDependencies {
|
|
|
156
166
|
* deterministic verdict. Absent/disabled ⇒ every judge step is a pass-through.
|
|
157
167
|
*/
|
|
158
168
|
judgeAssessor?: JudgeAssessor;
|
|
169
|
+
/**
|
|
170
|
+
* Override for the inline environment investigation, the seam beside
|
|
171
|
+
* {@link CoreDependencies.judgeAssessor}: `createCore` builds
|
|
172
|
+
* `EnvironmentInvestigationService` from the model-provider dependencies the facade already
|
|
173
|
+
* wires, so an investigation needs no per-facade wiring; a harness injects a deterministic
|
|
174
|
+
* verdict through this instead.
|
|
175
|
+
*/
|
|
176
|
+
environmentInvestigator?: EnvironmentInvestigator;
|
|
159
177
|
/**
|
|
160
178
|
* The ranking producer behind the interactive bug hunt. Optional for the same reason as
|
|
161
179
|
* {@link CoreDependencies.judgeAssessor}: `createCore` builds the inline
|
|
@@ -705,184 +723,6 @@ export interface CoreDependencies {
|
|
|
705
723
|
* `config.agents.inlineHarnessRef`; absent on Node/Worker (no inline harness path).
|
|
706
724
|
*/
|
|
707
725
|
inlineHarnessRef?: (ref: ModelRef) => boolean;
|
|
708
|
-
/**
|
|
709
|
-
* The app-owned cache bag (docs/initiatives/caching-layer.md). A facade builds
|
|
710
|
-
* it once per process via `createAppCaches` — Node threads in the Redis-backed
|
|
711
|
-
* invalidation notifications in multi-node deployments, the Worker passes the
|
|
712
|
-
* isolate-safe profile. Absent (tests / harnesses) ⇒ `createCore` builds bare
|
|
713
|
-
* in-memory defaults, whose coherence the services' own invalidation calls keep.
|
|
714
|
-
*/
|
|
715
|
-
caches?: AppCaches;
|
|
716
|
-
promptFragmentRepository?: PromptFragmentRepository;
|
|
717
|
-
fragmentSourceRepository?: FragmentSourceRepository;
|
|
718
|
-
fragmentSelector?: FragmentSelector;
|
|
719
|
-
resolveFragmentInstallationId?: ResolveFragmentInstallationId;
|
|
720
|
-
/**
|
|
721
|
-
* Persisted store for MODEL-GENERATED condensed briefs — the short variant an implementer
|
|
722
|
-
* kind folds when a long standard has no linked one. Absent ⇒ only authored/linked briefs
|
|
723
|
-
* are folded and every other long standard is sent in full (the pre-feature behaviour).
|
|
724
|
-
*/
|
|
725
|
-
fragmentBriefRepository?: FragmentBriefRepository;
|
|
726
|
-
/**
|
|
727
|
-
* The condensation model behind those generated briefs. A facade leaves this unset and
|
|
728
|
-
* gets the inline `LlmFragmentBriefGenerator` built from its own model provider; a
|
|
729
|
-
* test/conformance harness injects a deterministic one instead (the same
|
|
730
|
-
* "explicitly-injected wins" seam `documentContentResolver` uses).
|
|
731
|
-
*/
|
|
732
|
-
fragmentBriefGenerator?: FragmentBriefGenerator;
|
|
733
|
-
/**
|
|
734
|
-
* Live document reader for **document-backed** fragments (Confluence/Notion/
|
|
735
|
-
* GitHub files linked as living best-practice fragments). Wired by a facade
|
|
736
|
-
* from its document-source registry + connection service; absent → linking a
|
|
737
|
-
* document as a fragment is rejected and run resolution uses cached bodies.
|
|
738
|
-
*/
|
|
739
|
-
documentContentResolver?: DocumentContentResolver;
|
|
740
|
-
/**
|
|
741
|
-
* Live document reader for the DEPLOYMENT's own documents: the living standard a code-registered
|
|
742
|
-
* (`builtin`-tier) prompt fragment names, authenticated with credentials this deployment
|
|
743
|
-
* configured centrally rather than with any tenant's connection.
|
|
744
|
-
*
|
|
745
|
-
* Its own field beside {@link documentContentResolver} because the difference is the CREDENTIAL
|
|
746
|
-
* HOME, not an argument: that one resolves a workspace's stored connection, this one reads
|
|
747
|
-
* deployment configuration and caches under one deployment-wide group. In MOTHERSHIP mode it is
|
|
748
|
-
* REMOTE (the credentials live on the mothership and never reach a node, so the node reads the
|
|
749
|
-
* resolved body over `/internal/prompt-fragments/document-bodies`).
|
|
750
|
-
*
|
|
751
|
-
* Absent ⇒ this deployment configured no document source of its own, and boot validation refuses
|
|
752
|
-
* a code-registered `documentRef` rather than letting it render as live and fold something stale.
|
|
753
|
-
*/
|
|
754
|
-
deploymentDocumentResolver?: DeploymentDocumentResolver;
|
|
755
|
-
accountSkillRepository?: AccountSkillRepository;
|
|
756
|
-
skillSourceRepository?: SkillSourceRepository;
|
|
757
|
-
resolveSkillInstallationId?: ResolveSkillInstallationId;
|
|
758
|
-
/**
|
|
759
|
-
* Enqueues a targeted skill-source resync onto the runtime's GitHub-sync queue — the
|
|
760
|
-
* push-webhook freshness fan-out (slice 4). Facade-provided (Worker Queue / Node pg-boss);
|
|
761
|
-
* absent (no queue, or a pure-logic test) ⇒ no proactive resync, and freshness is guaranteed
|
|
762
|
-
* at dispatch by the resolver's head-commit probe instead.
|
|
763
|
-
*/
|
|
764
|
-
enqueueSkillResync?: (request: SkillSourceResyncRequest) => Promise<void>;
|
|
765
|
-
foundationalServiceRepository?: FoundationalServiceRepository;
|
|
766
|
-
apiContractRepository?: ApiContractRepository;
|
|
767
|
-
foundationalServiceSourceRepository?: FoundationalServiceSourceRepository;
|
|
768
|
-
/**
|
|
769
|
-
* The app-owned registry of foundational services a DEPLOYMENT ships in CODE — the `builtin`
|
|
770
|
-
* tier of the catalog merge, mirroring `pipelineRegistry` / `taskTypeRegistry`. Optional +
|
|
771
|
-
* defaulted to `defaultFoundationalServiceRegistry()`, which ships exactly ONE service: the
|
|
772
|
-
* platform's own asset storage, so a binary-output step has a target on a deployment that runs
|
|
773
|
-
* no object store of its own. A facade injects the SAME instance it registers its estate on,
|
|
774
|
-
* and boot validation reads it back so a malformed definition fails the deployment rather than
|
|
775
|
-
* a design dispatch.
|
|
776
|
-
*/
|
|
777
|
-
foundationalServiceRegistry?: FoundationalServiceRegistry;
|
|
778
|
-
/**
|
|
779
|
-
* The app-owned registry of GENERATIVE BINARY INTEGRATIONS a DEPLOYMENT ships in CODE — the
|
|
780
|
-
* image / music / video generation APIs a binary-generating step may call
|
|
781
|
-
* (`stepOptions.binaryOutput.generatorIds`). Optional + defaulted to
|
|
782
|
-
* `defaultBinaryGeneratorRegistry()` (EMPTY — the platform ships none, and every one of them is
|
|
783
|
-
* a metered vendor), so existing construction sites behave exactly as before; a facade injects
|
|
784
|
-
* the SAME instance it registers its integrations on, and boot validation reads it back so a
|
|
785
|
-
* malformed definition or an unusable credential name fails the deployment rather than a
|
|
786
|
-
* dispatch. Deliberately NOT the foundational-service registry: that catalog is what a design
|
|
787
|
-
* is expected to build ON, while an integration is an instrument a specific step is pointed at.
|
|
788
|
-
*/
|
|
789
|
-
binaryGeneratorRegistry?: BinaryGeneratorRegistry;
|
|
790
|
-
/**
|
|
791
|
-
* The app-owned registry of BINARY ARTIFACT STORES a DEPLOYMENT ships in CODE: its own
|
|
792
|
-
* implementations of the `BinaryBlobBackend` port, selectable per account beside the platform's
|
|
793
|
-
* `fs` / `db` / `s3` / `r2` backends. Optional + defaulted to `defaultBinaryStoreRegistry()`
|
|
794
|
-
* (EMPTY: the platform's own stores are not registry entries), so every existing construction
|
|
795
|
-
* site behaves exactly as before.
|
|
796
|
-
*
|
|
797
|
-
* Unlike its generative sibling above this one does NOT get a mothership `Source`, and the
|
|
798
|
-
* asymmetry is the point: a generator definition is DATA a run resolves, so a node reading its
|
|
799
|
-
* own copy can disagree with the picker the mothership fed; a store is a live client that only
|
|
800
|
-
* the process about to write the bytes can construct, so the process that answers the settings
|
|
801
|
-
* picker is by construction the one that stores. There is nothing here for a machine API to
|
|
802
|
-
* carry, and a `Source` would only invite pointing one node at another's credentials.
|
|
803
|
-
*/
|
|
804
|
-
binaryStoreRegistry?: BinaryStoreRegistry;
|
|
805
|
-
/**
|
|
806
|
-
* Where those integrations are READ from, when that is not this process's own registry.
|
|
807
|
-
* Defaulted to `registryBinaryGeneratorSource(binaryGeneratorRegistry)` — i.e. exactly the
|
|
808
|
-
* behaviour above — and overridden by ONE caller: a MOTHERSHIP-MODE node, which reads the
|
|
809
|
-
* mothership's registry over `GET /internal/binary-generators`.
|
|
810
|
-
*
|
|
811
|
-
* The sibling of {@link foundationalBuiltinSource}, and it exists for the same reason with a
|
|
812
|
-
* louder symptom. A mothership deployment is TWO processes, so a deployment had to register
|
|
813
|
-
* its integrations on both entry points; a node one build behind — the normal state of a local
|
|
814
|
-
* node — then refuses a step the mothership's own picker offered, with `unknown_generator`
|
|
815
|
-
* naming a configuration that is correct. See `kernel/src/ports/binary-generators.ts`.
|
|
816
|
-
*
|
|
817
|
-
* When it is set, this process's own `binaryGeneratorRegistry` is NOT consulted for a run (the
|
|
818
|
-
* facade warns at boot if it is non-empty) — the two are alternatives, never a merge: a merge
|
|
819
|
-
* would reinstate the drift, since a stale local copy would win by id over the authoritative
|
|
820
|
-
* one. The registry is still read for BOOT VALIDATION and for serving
|
|
821
|
-
* `/internal/binary-generators` when this process is itself a mothership.
|
|
822
|
-
*/
|
|
823
|
-
binaryGeneratorSource?: BinaryGeneratorSource;
|
|
824
|
-
/**
|
|
825
|
-
* Where the `builtin` tier is READ from, when that is not this process's own registry.
|
|
826
|
-
* Defaulted to `registryBuiltinSource(foundationalServiceRegistry)` — i.e. exactly the
|
|
827
|
-
* behaviour above — and overridden by ONE caller: a MOTHERSHIP-MODE node, which reads the
|
|
828
|
-
* mothership's registry over `GET /internal/foundational-services`.
|
|
829
|
-
*
|
|
830
|
-
* It exists because a mothership deployment is TWO processes and the estate is org state: with
|
|
831
|
-
* the registry as the only route, a deployment had to register the same estate on both entry
|
|
832
|
-
* points, and a node one build behind — the normal state of a local node — silently resolved a
|
|
833
|
-
* catalog missing whatever the mothership had since added. A run then simply does not consider
|
|
834
|
-
* that service, which is indistinguishable from an Architect judging it irrelevant. See
|
|
835
|
-
* `kernel/src/ports/foundational-builtins.ts`.
|
|
836
|
-
*
|
|
837
|
-
* When it is set, this process's own `foundationalServiceRegistry` is NOT consulted for the
|
|
838
|
-
* tier (the facade warns at boot if it is non-empty) — the two are alternatives, never a merge:
|
|
839
|
-
* a merge would reinstate the drift, since a stale local copy would win by id over the
|
|
840
|
-
* authoritative one.
|
|
841
|
-
*/
|
|
842
|
-
foundationalBuiltinSource?: FoundationalBuiltinSource;
|
|
843
|
-
/**
|
|
844
|
-
* The app-owned registry a deployment registers its best-practice PROMPT FRAGMENTS on, plus the
|
|
845
|
-
* per-task-type default sets that select them. Optional + defaulted to
|
|
846
|
-
* `defaultPromptFragmentRegistry()` (EMPTY, because the shipped catalog installs onto one through
|
|
847
|
-
* `promptFragmentRegistryWithBuiltins()`, which is what each facade injects, so a caller that
|
|
848
|
-
* passes nothing gets no standards rather than a silently different second pool).
|
|
849
|
-
*
|
|
850
|
-
* It replaced two module globals in `@cat-factory/prompt-fragments`, whose correctness depended
|
|
851
|
-
* on every reader resolving the same physical copy of that package. The published graph does not
|
|
852
|
-
* guarantee that, and the failure was silent: registrations landed in one copy, readers saw the
|
|
853
|
-
* other, and every task of the deployment's operation was seeded with ids that folded nothing.
|
|
854
|
-
*/
|
|
855
|
-
promptFragmentRegistry?: PromptFragmentRegistry;
|
|
856
|
-
/**
|
|
857
|
-
* Where the fragment POOL is READ from, when that is not this process's own registry. The exact
|
|
858
|
-
* sibling of {@link foundationalBuiltinSource}, with the same one overriding caller (a
|
|
859
|
-
* mothership-mode node, over `GET /internal/prompt-fragments`) and the same alternatives-never-a-
|
|
860
|
-
* merge rule: a merge would let a stale local copy win by id over the authoritative one, which is
|
|
861
|
-
* the drift the source exists to remove.
|
|
862
|
-
*/
|
|
863
|
-
promptFragmentSource?: PromptFragmentSource;
|
|
864
|
-
/**
|
|
865
|
-
* Where the deployment's AGENT-KIND CAPABILITY layer is read from, when that is not this
|
|
866
|
-
* process's own registry. Overridden by ONE caller: a mothership-mode node, over
|
|
867
|
-
* `GET /internal/agent-kinds`.
|
|
868
|
-
*
|
|
869
|
-
* The fourth of the same family, and the only one that MERGES rather than replaces. Its three
|
|
870
|
-
* siblings serve a set the node also registers, so a merge would let a stale local copy win by
|
|
871
|
-
* id. Here the halves are different things: a KIND's own declarations belong to the code that
|
|
872
|
-
* implements it (which cannot cross a wire, so the kind CATALOG stays node-local, exactly like
|
|
873
|
-
* task types and pipelines, and a step naming an unknown kind still fails loudly at admission),
|
|
874
|
-
* while `assignSkills`/`assignToolServers` are the DEPLOYMENT's layer on top — pure data whose
|
|
875
|
-
* absence on a node one build behind is silent, since the agent simply works without the org's
|
|
876
|
-
* playbook. Absent ⇒ the local registry answers alone.
|
|
877
|
-
*/
|
|
878
|
-
agentKindSource?: AgentKindSource;
|
|
879
|
-
/**
|
|
880
|
-
* Enqueues a targeted foundational-source resync onto the runtime's GitHub-sync queue — the
|
|
881
|
-
* push-webhook freshness fan-out, the twin of {@link CoreDependencies.enqueueSkillResync}.
|
|
882
|
-
* Facade-provided (Worker Queue / Node pg-boss); absent (no queue, or a pure-logic test) ⇒ no
|
|
883
|
-
* proactive resync, and the autorefresh sweep bounds staleness instead.
|
|
884
|
-
*/
|
|
885
|
-
enqueueFoundationalResync?: (request: FoundationalSourceResyncRequest) => Promise<void>;
|
|
886
726
|
notificationRepository?: NotificationRepository;
|
|
887
727
|
notificationChannel?: NotificationChannel;
|
|
888
728
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../src/container/dependencies.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"dependencies.d.ts","sourceRoot":"","sources":["../../src/container/dependencies.ts"],"names":[],"mappings":"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"}
|
|
@@ -50,6 +50,7 @@ export declare function createEngineCollaborators(input: EngineCollaboratorsInpu
|
|
|
50
50
|
docInterview: import("../modules/docInterview/DocInterviewService.js").DocInterviewService | undefined;
|
|
51
51
|
forkChat: import("../modules/execution/ForkChatService.js").ForkChatService | undefined;
|
|
52
52
|
judgeAssessor: import("@cat-factory/kernel").JudgeAssessor | undefined;
|
|
53
|
+
environmentInvestigator: import("@cat-factory/kernel").EnvironmentInvestigator | undefined;
|
|
53
54
|
clarity: import("./module-shapes.js").ClarityModule | undefined;
|
|
54
55
|
brainstorm: import("./module-shapes.js").BrainstormModule | undefined;
|
|
55
56
|
kaizen: import("./module-shapes.js").KaizenModule | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"engine-collaborators.d.ts","sourceRoot":"","sources":["../../src/container/engine-collaborators.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAA;AAC9E,OAAO,EAAE,0BAA0B,EAAE,MAAM,qDAAqD,CAAA;AAChG,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAA;AAC3F,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAA;
|
|
1
|
+
{"version":3,"file":"engine-collaborators.d.ts","sourceRoot":"","sources":["../../src/container/engine-collaborators.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAEH,OAAO,EAAE,iBAAiB,EAAE,MAAM,4CAA4C,CAAA;AAC9E,OAAO,EAAE,0BAA0B,EAAE,MAAM,qDAAqD,CAAA;AAChG,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,gDAAgD,CAAA;AAC3F,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAA;AAcrF,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACtD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAC1D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAA;AACpE,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,mCAAmC,CAAA;AACpF,OAAO,KAAK,EAAE,gBAAgB,EAAE,eAAe,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAA;AAC7F,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,cAAc,CAAA;AAMtD,KAAK,WAAW,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,CAAA;AAExD,MAAM,WAAW,wBAAwB;IACvC,YAAY,EAAE,gBAAgB,CAAA;IAC9B,OAAO,EAAE,cAAc,CAAA;IACvB,wBAAwB,EAAE,WAAW,CAAC,0BAA0B,CAAC,CAAA;IACjE,uBAAuB,EAAE,WAAW,CAAC,yBAAyB,CAAC,CAAA;IAC/D,aAAa,EAAE,mBAAmB,GAAG,SAAS,CAAA;IAC9C,eAAe,EAAE,UAAU,CAAC,OAAO,2BAA2B,CAAC,GAAG,SAAS,CAAA;IAC3E;;;;;;;OAOG;IACH,SAAS,EAAE,eAAe,GAAG,SAAS,CAAA;IACtC,YAAY,EAAE,YAAY,CAAA;IAC1B,kGAAkG;IAClG,KAAK,EAAE,YAAY,CAAA;CACpB;AAED,wBAAgB,yBAAyB,CAAC,KAAK,EAAE,wBAAwB;;;;;;;;;;;;sCA4FxD,MAAM,qBACA,MAAM,YACf,oBAAoB,KAC7B,IAAI;IAsBL,0FAA0F;8BAChE,qBAAqB,GAAG,SAAS;EAI9D"}
|
|
@@ -16,7 +16,7 @@ import { InitiativeService } from '../modules/initiative/InitiativeService.js';
|
|
|
16
16
|
import { InitiativeInterviewService } from '../modules/initiative/InitiativeInterviewService.js';
|
|
17
17
|
import { inlineModelResolutionDeps } from './inline-model-deps.js';
|
|
18
18
|
import { resolveBlockRunContext } from './blockRunContext.js';
|
|
19
|
-
import { createBrainstormModule, createClarityModule, createDocInterviewService, createForkChatService, createJudgeAssessor, createKaizenModule, createRequirementsModule, createTasksModule, } from './modules.js';
|
|
19
|
+
import { createBrainstormModule, createClarityModule, createDocInterviewService, createForkChatService, createEnvironmentInvestigator, createJudgeAssessor, createKaizenModule, createRequirementsModule, createTasksModule, } from './modules.js';
|
|
20
20
|
import { linkedContextSourcesFrom, resolveLinkedContext, } from '../modules/execution/linked-context.js';
|
|
21
21
|
export function createEngineCollaborators(input) {
|
|
22
22
|
const { dependencies, modules, initiativePresetRegistry, executionEventPublisher, notifications, fragmentLibrary, boardService, spend, } = input;
|
|
@@ -69,6 +69,9 @@ export function createEngineCollaborators(input) {
|
|
|
69
69
|
// The judge assessor rides the same inline model deps as the reviewers, so a facade that
|
|
70
70
|
// wired a model gets working judges with no judge-specific wiring (see the tracker's D-notes).
|
|
71
71
|
const judgeAssessor = createJudgeAssessor(dependencies);
|
|
72
|
+
// Same deal for the environment investigation, and for the same reason: a facade that wired a
|
|
73
|
+
// model gets a working diagnosis of a failed provision with no investigation-specific wiring.
|
|
74
|
+
const environmentInvestigator = createEnvironmentInvestigator(dependencies);
|
|
72
75
|
const clarity = modules.build('clarity', () => createClarityModule(dependencies, notifications?.service));
|
|
73
76
|
const brainstorm = modules.build('brainstorm', () => createBrainstormModule(dependencies, notifications?.service));
|
|
74
77
|
// Built before the execution engine so the engine's terminal hook can schedule a
|
|
@@ -92,6 +95,7 @@ export function createEngineCollaborators(input) {
|
|
|
92
95
|
docInterview,
|
|
93
96
|
forkChat,
|
|
94
97
|
judgeAssessor,
|
|
98
|
+
environmentInvestigator,
|
|
95
99
|
clarity,
|
|
96
100
|
brainstorm,
|
|
97
101
|
kaizen,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"engine-collaborators.js","sourceRoot":"","sources":["../../src/container/engine-collaborators.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"engine-collaborators.js","sourceRoot":"","sources":["../../src/container/engine-collaborators.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environmentsModule.factory.d.ts","sourceRoot":"","sources":["../../src/container/environmentsModule.factory.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EACL,8BAA8B,EAC9B,6BAA6B,EAE9B,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EACV,4BAA4B,EAC5B,0BAA0B,EAC1B,gBAAgB,EAChB,uBAAuB,EACvB,kBAAkB,EACnB,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,mDAAmD,CAAA;
|
|
1
|
+
{"version":3,"file":"environmentsModule.factory.d.ts","sourceRoot":"","sources":["../../src/container/environmentsModule.factory.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,qBAAqB,CAAA;AAClE,OAAO,EACL,8BAA8B,EAC9B,6BAA6B,EAE9B,MAAM,2BAA2B,CAAA;AAClC,OAAO,KAAK,EACV,4BAA4B,EAC5B,0BAA0B,EAC1B,gBAAgB,EAChB,uBAAuB,EACvB,kBAAkB,EACnB,MAAM,2BAA2B,CAAA;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,mDAAmD,CAAA;AAQ1F,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAA;AAEvD;;;;;;GAMG;AACH,wBAAgB,kCAAkC,CAChD,IAAI,EAAE,gBAAgB,EACtB,YAAY,EAAE,WAAW,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC,GAC1D,6BAA6B,GAAG,SAAS,CAc3C;AAED;;;;;;GAMG;AACH,wBAAgB,mCAAmC,CAAC,IAAI,EAAE;IACxD,IAAI,EAAE,gBAAgB,CAAA;IACtB,iBAAiB,EAAE,4BAA4B,CAAA;IAC/C,6BAA6B,EAAE,WAAW,CAAC,gBAAgB,CAAC,+BAA+B,CAAC,CAAC,CAAA;IAC7F,YAAY,EAAE,WAAW,CAAC,gBAAgB,CAAC,cAAc,CAAC,CAAC,CAAA;IAC3D,eAAe,EAAE,0BAA0B,CAAA;IAC3C,kBAAkB,EAAE,6BAA6B,GAAG,SAAS,CAAA;IAC7D,kBAAkB,EAAE,kBAAkB,GAAG,SAAS,CAAA;IAClD,gBAAgB,EAAE,gBAAgB,GAAG,SAAS,CAAA;IAC9C,eAAe,EAAE,uBAAuB,GAAG,SAAS,CAAA;CACrD,GAAG,8BAA8B,CAiEjC;AAED;;;;;GAKG;AACH,wBAAgB,2BAA2B,CAAC,IAAI,EAAE;IAChD,IAAI,EAAE,gBAAgB,CAAA;IACtB,mBAAmB,EAAE,8BAA8B,CAAA;IACnD,eAAe,EAAE,0BAA0B,CAAA;IAC3C,6BAA6B,EAAE,WAAW,CAAC,gBAAgB,CAAC,+BAA+B,CAAC,CAAC,CAAA;IAC7F,cAAc,EAAE,uBAAuB,GAAG,SAAS,CAAA;CACpD,GAAG,sBAAsB,GAAG,SAAS,CAuBrC"}
|