@kici-dev/orchestrator 0.1.22 → 0.1.23
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/agent/host-roster.d.ts +39 -3
- package/dist/agent/token-store.d.ts +29 -0
- package/dist/cli.js +373 -211
- package/dist/db/migrations/051_binding_host_pattern.d.ts +18 -0
- package/dist/db/migrations/052_host_reach_metadata.d.ts +19 -0
- package/dist/db/migrations/053_agent_token_single_use.d.ts +17 -0
- package/dist/db/types.d.ts +23 -0
- package/dist/environments/binding-store.d.ts +12 -3
- package/dist/environments/held-runs.d.ts +24 -0
- package/dist/metrics/prometheus.d.ts +2 -0
- package/dist/pipeline/dispatch-matched-workflow.d.ts +58 -3
- package/dist/pipeline/test-pipeline.d.ts +6 -0
- package/dist/reporting/log-writer.d.ts +19 -0
- package/dist/scaler/manager.d.ts +17 -0
- package/dist/secrets/secret-resolver.d.ts +19 -6
- package/dist/server.js +19853 -19099
- package/dist/standalone.js +24997 -24439
- package/dist/ws/bringup-api.d.ts +76 -0
- package/dist/ws/dashboard-fleet-handler.d.ts +11 -1
- package/dist/ws/fleet-runs-on-all.d.ts +3 -0
- package/dist/ws/platform-client.d.ts +4 -1
- package/dist/ws/test-relay-handlers.d.ts +9 -0
- package/installer-image-digests.json +3 -3
- package/package.json +4 -4
- package/sbom.spdx.json +50 -50
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { type HostRosterStore } from '../agent/host-roster.js';
|
|
2
|
+
import type { AgentRegistry } from '../agent/registry.js';
|
|
3
|
+
import type { AgentTokenStore } from '../agent/token-store.js';
|
|
4
|
+
import type { SecretResolver } from '../secrets/secret-resolver.js';
|
|
5
|
+
import type { AccessLogWriter } from '../audit/access-log.js';
|
|
6
|
+
/** Bootstrap token TTL: short by design — a leaked token is inert after it. */
|
|
7
|
+
export declare const BOOTSTRAP_TOKEN_TTL_MS: number;
|
|
8
|
+
/** Default pre-boot dropbear/initramfs SSH port for `preBootSend`. */
|
|
9
|
+
export declare const PRE_BOOT_DEFAULT_PORT = 2222;
|
|
10
|
+
/** Default forced command at a dropbear unlock endpoint (ignored by `-c` forces). */
|
|
11
|
+
export declare const PRE_BOOT_DEFAULT_COMMAND = "cryptroot-unlock";
|
|
12
|
+
/** Shared deps for the bring-up handlers. */
|
|
13
|
+
export interface BringupApiDeps {
|
|
14
|
+
registry: AgentRegistry;
|
|
15
|
+
rosterStore: HostRosterStore;
|
|
16
|
+
tokenStore: AgentTokenStore;
|
|
17
|
+
secretResolver: SecretResolver;
|
|
18
|
+
accessLog: AccessLogWriter;
|
|
19
|
+
graceMs: number;
|
|
20
|
+
/** Resolve the orchestrator's tenant org id (single-tenant ⇒ `__default__`). */
|
|
21
|
+
resolveOrgId: () => string;
|
|
22
|
+
/** Resolve the orchestrator WS URL the init-runner should dial. */
|
|
23
|
+
resolveOrchestratorUrl: () => string;
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Reach the calling agent connects to + the resolved private key. Returned to
|
|
27
|
+
* the agent so it can run the SSH transport. The key value transits to the ops
|
|
28
|
+
* agent by design (it custodies the bring-up key), exactly as resolved secrets
|
|
29
|
+
* reach an agent at job dispatch.
|
|
30
|
+
*/
|
|
31
|
+
export interface BringupReach {
|
|
32
|
+
agentId: string;
|
|
33
|
+
address: string | null;
|
|
34
|
+
sshUser: string | null;
|
|
35
|
+
sshPort: number | null;
|
|
36
|
+
}
|
|
37
|
+
/** Result the agent receives for an `ensureInitRunner` call. */
|
|
38
|
+
export interface EnsureInitRunnerResult {
|
|
39
|
+
broughtUp: boolean;
|
|
40
|
+
reach?: BringupReach;
|
|
41
|
+
privateKey?: string;
|
|
42
|
+
bootstrapToken?: string;
|
|
43
|
+
targetAgentId?: string;
|
|
44
|
+
orchestratorUrl?: string;
|
|
45
|
+
/** The init-runner label set the bootstrap token is bound to. */
|
|
46
|
+
labels?: string[];
|
|
47
|
+
}
|
|
48
|
+
/** Result the agent receives for a `preBootSend` call. */
|
|
49
|
+
export interface PreBootSendResult {
|
|
50
|
+
reach: BringupReach;
|
|
51
|
+
/** The host's bring-up SSH private key — needed to authenticate to dropbear. */
|
|
52
|
+
privateKey: string;
|
|
53
|
+
/** The resolved pre-boot input (e.g. LUKS passphrase) to pipe to the prompt. */
|
|
54
|
+
input: string;
|
|
55
|
+
port: number;
|
|
56
|
+
command: string;
|
|
57
|
+
}
|
|
58
|
+
/** Thrown when the caller lacks `kici:capability:ssh-transport`. */
|
|
59
|
+
export declare class CapabilityDeniedError extends Error {
|
|
60
|
+
constructor(callingAgentId: string);
|
|
61
|
+
}
|
|
62
|
+
/**
|
|
63
|
+
* Build the `kici.ensureInitRunner` handler. No-ops when the target already has
|
|
64
|
+
* a live agent; otherwise gates on the caller's capability, resolves the SSH
|
|
65
|
+
* key, mints a single-use bootstrap token, audits, and returns the material the
|
|
66
|
+
* agent needs to drop + start the init-runner over SSH.
|
|
67
|
+
*/
|
|
68
|
+
export declare function createEnsureInitRunnerHandler(deps: BringupApiDeps): (callingAgentId: string, params: Record<string, unknown>) => Promise<EnsureInitRunnerResult>;
|
|
69
|
+
/**
|
|
70
|
+
* Build the `kici.preBootSend` handler. Gates on the caller's capability,
|
|
71
|
+
* resolves the pre-boot input secret (e.g. a LUKS passphrase), audits, and
|
|
72
|
+
* returns the input + reach so the agent can pipe it to the target's pre-boot
|
|
73
|
+
* SSH endpoint.
|
|
74
|
+
*/
|
|
75
|
+
export declare function createPreBootSendHandler(deps: BringupApiDeps): (callingAgentId: string, params: Record<string, unknown>) => Promise<PreBootSendResult>;
|
|
76
|
+
//# sourceMappingURL=bringup-api.d.ts.map
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
import type { Kysely } from 'kysely';
|
|
11
11
|
import type { Database } from '../db/types.js';
|
|
12
12
|
import { HostRosterStore } from '../agent/host-roster.js';
|
|
13
|
-
import type {
|
|
13
|
+
import type { RegistrationStore } from '../registration/registration-store.js';
|
|
14
|
+
import type { DashboardFleetHostsResponse, DashboardFleetHostResponse, DashboardFleetPreviewResponse, DashboardFleetWorkflowsForHostResponse, LabelMatcher, OnUnreachableMode } from '@kici-dev/engine';
|
|
14
15
|
/** A workflow's resolved runsOnAll predicate, or null when it has none. */
|
|
15
16
|
export interface ResolvedRunsOnAll {
|
|
16
17
|
include: readonly (readonly LabelMatcher[])[];
|
|
@@ -23,6 +24,8 @@ export interface FleetHandlerDeps {
|
|
|
23
24
|
rosterGraceMs: number;
|
|
24
25
|
/** Resolve a workflow's runsOnAll predicate + onUnreachable, or null. */
|
|
25
26
|
resolveRunsOnAll: (workflowName: string) => Promise<ResolvedRunsOnAll | null>;
|
|
27
|
+
/** All registered workflows (for the host-centric workflows-for-host read). */
|
|
28
|
+
registrationStore: RegistrationStore;
|
|
26
29
|
}
|
|
27
30
|
/** Roster: every declared/live host as a `HostInventoryEntry`. */
|
|
28
31
|
export declare function handleFleetHostsRequest(deps: FleetHandlerDeps, requestId: string): Promise<DashboardFleetHostsResponse>;
|
|
@@ -30,4 +33,11 @@ export declare function handleFleetHostsRequest(deps: FleetHandlerDeps, requestI
|
|
|
30
33
|
export declare function handleFleetHostRequest(deps: FleetHandlerDeps, requestId: string, agentId: string): Promise<DashboardFleetHostResponse>;
|
|
31
34
|
/** runsOnAll preview: matched hosts + the fan-out policy + estimated child count. */
|
|
32
35
|
export declare function handleFleetPreviewRequest(deps: FleetHandlerDeps, requestId: string, workflowName: string): Promise<DashboardFleetPreviewResponse>;
|
|
36
|
+
/**
|
|
37
|
+
* workflows-for-host: the host-centric inverse of the preview. Resolves this
|
|
38
|
+
* host's label set once, then tests every registered (non-disabled) workflow's
|
|
39
|
+
* runsOnAll predicate against it, returning each match with the fan-out's
|
|
40
|
+
* `onUnreachable` policy and the host's per-workflow disposition.
|
|
41
|
+
*/
|
|
42
|
+
export declare function handleFleetWorkflowsForHostRequest(deps: FleetHandlerDeps, requestId: string, agentId: string): Promise<DashboardFleetWorkflowsForHostResponse>;
|
|
33
43
|
//# sourceMappingURL=dashboard-fleet-handler.d.ts.map
|
|
@@ -9,8 +9,11 @@
|
|
|
9
9
|
* that name declares a host fan-out.
|
|
10
10
|
*/
|
|
11
11
|
import type { Kysely } from 'kysely';
|
|
12
|
+
import { type LockWorkflow } from '@kici-dev/engine';
|
|
12
13
|
import type { Database } from '../db/types.js';
|
|
13
14
|
import type { ResolvedRunsOnAll } from './dashboard-fleet-handler.js';
|
|
15
|
+
/** Pull the first static job's runsOnAll predicate from a parsed lock entry, or null. */
|
|
16
|
+
export declare function extractRunsOnAll(workflow: LockWorkflow): ResolvedRunsOnAll | null;
|
|
14
17
|
/** Find the resolved runsOnAll predicate for a workflow by name, or null. */
|
|
15
18
|
export declare function resolveWorkflowRunsOnAll(db: Kysely<Database>, workflowName: string): Promise<ResolvedRunsOnAll | null>;
|
|
16
19
|
//# sourceMappingURL=fleet-runs-on-all.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type OrchestratorToPlatformMessage, type WebhookRelay, type WebhookRelayResult, type TrustPolicyUpdate, type StaleCheckrunCleanup, type DashboardRunDetailRequest, type DashboardRunsListRequest, type DashboardRunsFiltersRequest, type DashboardSourcesListRequest, type DashboardStepLogsRequest, type DashboardAttestationsListRequest, type DashboardOrchLogsRequest, type RunRerunRequest, type ManualScheduleRequest, type RunCancelRequest, type DashboardPayloadRequest, type DashboardPlatformToOrchMessage, type TestRelayRequest, type DashboardDiagnosticsRequest, type DashboardScalerCapacityRequest, type DashboardScalerAgentsRequest, type DashboardFleetHostsRequest, type DashboardFleetHostRequest, type DashboardFleetPreviewRequest, type JoinRequest, type JoinResponse, type DeploymentIdentity, type OrchCapabilities, type OrchRole } from '@kici-dev/engine';
|
|
1
|
+
import { type OrchestratorToPlatformMessage, type WebhookRelay, type WebhookRelayResult, type TrustPolicyUpdate, type StaleCheckrunCleanup, type DashboardRunDetailRequest, type DashboardRunsListRequest, type DashboardRunsFiltersRequest, type DashboardSourcesListRequest, type DashboardStepLogsRequest, type DashboardAttestationsListRequest, type DashboardOrchLogsRequest, type RunRerunRequest, type ManualScheduleRequest, type RunCancelRequest, type DashboardPayloadRequest, type DashboardPlatformToOrchMessage, type TestRelayRequest, type DashboardDiagnosticsRequest, type DashboardScalerCapacityRequest, type DashboardScalerAgentsRequest, type DashboardFleetHostsRequest, type DashboardFleetHostRequest, type DashboardFleetPreviewRequest, type DashboardFleetWorkflowsForHostRequest, type JoinRequest, type JoinResponse, type DeploymentIdentity, type OrchCapabilities, type OrchRole } from '@kici-dev/engine';
|
|
2
2
|
import { RelayBufferRegistry, type RelayStartMeta } from '../webhook/relay-buffer.js';
|
|
3
3
|
/**
|
|
4
4
|
* Verification + processing outcome returned by the chunked relay path's
|
|
@@ -142,6 +142,8 @@ export interface PlatformClientOptions {
|
|
|
142
142
|
onFleetHost?: (msg: DashboardFleetHostRequest) => void;
|
|
143
143
|
/** Optional callback for fleet runsOnAll-preview requests from Platform. */
|
|
144
144
|
onFleetPreview?: (msg: DashboardFleetPreviewRequest) => void;
|
|
145
|
+
/** Optional callback for fleet workflows-for-host requests from Platform. */
|
|
146
|
+
onFleetWorkflowsForHost?: (msg: DashboardFleetWorkflowsForHostRequest) => void;
|
|
145
147
|
/** Optional callback for trust policy updates pushed from Platform. */
|
|
146
148
|
onTrustPolicyUpdate?: (msg: TrustPolicyUpdate) => void;
|
|
147
149
|
/** Optional callback for stale check run cleanup requests from Platform. */
|
|
@@ -228,6 +230,7 @@ export declare class PlatformClient {
|
|
|
228
230
|
private readonly onFleetHosts?;
|
|
229
231
|
private readonly onFleetHost?;
|
|
230
232
|
private readonly onFleetPreview?;
|
|
233
|
+
private readonly onFleetWorkflowsForHost?;
|
|
231
234
|
private readonly onTrustPolicyUpdate?;
|
|
232
235
|
private readonly onStaleCheckrunCleanup?;
|
|
233
236
|
private readonly onJoinRequest?;
|
|
@@ -24,6 +24,15 @@ export interface TestRelayHandlerDeps extends ProcessingDeps {
|
|
|
24
24
|
agentRegistry: NonNullable<ProcessingDeps['agentRegistry']>;
|
|
25
25
|
cacheStorage?: CacheStorage;
|
|
26
26
|
logStorage?: LogStorage;
|
|
27
|
+
/**
|
|
28
|
+
* Log writer that owns the in-flight append tracking. The logs cursor
|
|
29
|
+
* handler drains its pending appends for a terminal run before computing the
|
|
30
|
+
* `done` flag, so the final (fire-and-forget) log chunk can't be lost to a
|
|
31
|
+
* race with the run-status transition.
|
|
32
|
+
*/
|
|
33
|
+
logWriter?: {
|
|
34
|
+
drain(runId: string): Promise<void>;
|
|
35
|
+
};
|
|
27
36
|
accessLog?: AccessLogWriter;
|
|
28
37
|
/** Canonical org id this orchestrator is bound to (for access_log attribution). */
|
|
29
38
|
orgId?: string | null;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.1.
|
|
2
|
+
"version": "0.1.23",
|
|
3
3
|
"images": {
|
|
4
|
-
"kici-agent": "sha256:
|
|
5
|
-
"kici-orchestrator": "sha256:
|
|
4
|
+
"kici-agent": "sha256:f3b4628262e2ec10d9f0a5b8eed54a1361e4a917728b38a0165a144d1f885653",
|
|
5
|
+
"kici-orchestrator": "sha256:240790924ee73e4b1230deb989d3db6c05141ca4db6376baeb88f5e0aeed19ee"
|
|
6
6
|
}
|
|
7
7
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kici-dev/orchestrator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"description": "Customer-deployable orchestrator for the KiCI CI/CD stack. Receives webhook events (direct or via Platform relay), matches triggers against the lock file, and dispatches jobs to connected agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ci",
|
|
@@ -86,8 +86,8 @@
|
|
|
86
86
|
"ws": "^8.21.0",
|
|
87
87
|
"yaml": "^2.9.0",
|
|
88
88
|
"zod": "^4.4.3",
|
|
89
|
-
"@kici-dev/engine": "0.1.
|
|
90
|
-
"@kici-dev/shared": "0.1.
|
|
89
|
+
"@kici-dev/engine": "0.1.23",
|
|
90
|
+
"@kici-dev/shared": "0.1.23"
|
|
91
91
|
},
|
|
92
92
|
"kici": {
|
|
93
93
|
"metrics": {
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"@types/archiver": "^8.0.0",
|
|
102
102
|
"@types/dockerode": "^4.0.1",
|
|
103
103
|
"kysely-ctl": "^0.21.0",
|
|
104
|
-
"@kici-dev/agent": "0.1.
|
|
104
|
+
"@kici-dev/agent": "0.1.23"
|
|
105
105
|
},
|
|
106
106
|
"scripts": {
|
|
107
107
|
"build": "node ../../scripts/build-service.mjs && tsc --emitDeclarationOnly",
|
package/sbom.spdx.json
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"spdxVersion": "SPDX-2.3",
|
|
3
3
|
"dataLicense": "CC0-1.0",
|
|
4
4
|
"SPDXID": "SPDXRef-DOCUMENT",
|
|
5
|
-
"name": "@kici-dev/orchestrator@0.1.
|
|
6
|
-
"documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Forchestrator/0.1.
|
|
5
|
+
"name": "@kici-dev/orchestrator@0.1.23",
|
|
6
|
+
"documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Forchestrator/0.1.23/261def5e-2309-4ba2-a52c-5dc631179d1a",
|
|
7
7
|
"creationInfo": {
|
|
8
|
-
"created": "2026-06-
|
|
8
|
+
"created": "2026-06-25T11:13:00Z",
|
|
9
9
|
"creators": [
|
|
10
10
|
"Tool: kici-sbom-generator"
|
|
11
11
|
]
|
|
@@ -1190,9 +1190,9 @@
|
|
|
1190
1190
|
"homepage": "https://ericsmekens.github.io/jsep/tree/master/packages/regex#readme"
|
|
1191
1191
|
},
|
|
1192
1192
|
{
|
|
1193
|
-
"SPDXID": "SPDXRef-Package--kici-dev-core-0.1.
|
|
1193
|
+
"SPDXID": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
1194
1194
|
"name": "@kici-dev/core",
|
|
1195
|
-
"versionInfo": "0.1.
|
|
1195
|
+
"versionInfo": "0.1.23",
|
|
1196
1196
|
"downloadLocation": "NOASSERTION",
|
|
1197
1197
|
"filesAnalyzed": false,
|
|
1198
1198
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -1203,16 +1203,16 @@
|
|
|
1203
1203
|
{
|
|
1204
1204
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
1205
1205
|
"referenceType": "purl",
|
|
1206
|
-
"referenceLocator": "pkg:npm/%40kici-dev/core@0.1.
|
|
1206
|
+
"referenceLocator": "pkg:npm/%40kici-dev/core@0.1.23"
|
|
1207
1207
|
}
|
|
1208
1208
|
],
|
|
1209
1209
|
"description": "Light shared utilities for the KiCI stack (logging, errors, formatting, crypto, zx init, the TypeScript ESM loader hook). No server-side dependencies.",
|
|
1210
1210
|
"homepage": "https://kici.dev"
|
|
1211
1211
|
},
|
|
1212
1212
|
{
|
|
1213
|
-
"SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
1213
|
+
"SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.23",
|
|
1214
1214
|
"name": "@kici-dev/engine",
|
|
1215
|
-
"versionInfo": "0.1.
|
|
1215
|
+
"versionInfo": "0.1.23",
|
|
1216
1216
|
"downloadLocation": "NOASSERTION",
|
|
1217
1217
|
"filesAnalyzed": false,
|
|
1218
1218
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -1223,7 +1223,7 @@
|
|
|
1223
1223
|
{
|
|
1224
1224
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
1225
1225
|
"referenceType": "purl",
|
|
1226
|
-
"referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.
|
|
1226
|
+
"referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.23"
|
|
1227
1227
|
}
|
|
1228
1228
|
],
|
|
1229
1229
|
"description": "Shared business logic for the KiCI CI/CD stack: protocol, triggers, state machine, and provider interfaces used by the Platform relay, orchestrator, and compiler.",
|
|
@@ -1232,7 +1232,7 @@
|
|
|
1232
1232
|
{
|
|
1233
1233
|
"SPDXID": "SPDXRef-RootPackage",
|
|
1234
1234
|
"name": "@kici-dev/orchestrator",
|
|
1235
|
-
"versionInfo": "0.1.
|
|
1235
|
+
"versionInfo": "0.1.23",
|
|
1236
1236
|
"downloadLocation": "NOASSERTION",
|
|
1237
1237
|
"filesAnalyzed": false,
|
|
1238
1238
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -1243,16 +1243,16 @@
|
|
|
1243
1243
|
{
|
|
1244
1244
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
1245
1245
|
"referenceType": "purl",
|
|
1246
|
-
"referenceLocator": "pkg:npm/%40kici-dev/orchestrator@0.1.
|
|
1246
|
+
"referenceLocator": "pkg:npm/%40kici-dev/orchestrator@0.1.23"
|
|
1247
1247
|
}
|
|
1248
1248
|
],
|
|
1249
1249
|
"description": "Customer-deployable orchestrator for the KiCI CI/CD stack. Receives webhook events (direct or via Platform relay), matches triggers against the lock file, and dispatches jobs to connected agents.",
|
|
1250
1250
|
"homepage": "https://kici.dev"
|
|
1251
1251
|
},
|
|
1252
1252
|
{
|
|
1253
|
-
"SPDXID": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
1253
|
+
"SPDXID": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
1254
1254
|
"name": "@kici-dev/shared",
|
|
1255
|
-
"versionInfo": "0.1.
|
|
1255
|
+
"versionInfo": "0.1.23",
|
|
1256
1256
|
"downloadLocation": "NOASSERTION",
|
|
1257
1257
|
"filesAnalyzed": false,
|
|
1258
1258
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -1263,7 +1263,7 @@
|
|
|
1263
1263
|
{
|
|
1264
1264
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
1265
1265
|
"referenceType": "purl",
|
|
1266
|
-
"referenceLocator": "pkg:npm/%40kici-dev/shared@0.1.
|
|
1266
|
+
"referenceLocator": "pkg:npm/%40kici-dev/shared@0.1.23"
|
|
1267
1267
|
}
|
|
1268
1268
|
],
|
|
1269
1269
|
"description": "Shared utilities for the KiCI CI/CD stack — logging, zx setup, crypto, telemetry, health and metrics routes. No business logic.",
|
|
@@ -8201,57 +8201,57 @@
|
|
|
8201
8201
|
"relationshipType": "DEPENDS_ON"
|
|
8202
8202
|
},
|
|
8203
8203
|
{
|
|
8204
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
8204
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
8205
8205
|
"relatedSpdxElement": "SPDXRef-Package-oxc-transform-0.135.0",
|
|
8206
8206
|
"relationshipType": "DEPENDS_ON"
|
|
8207
8207
|
},
|
|
8208
8208
|
{
|
|
8209
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
8209
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
8210
8210
|
"relatedSpdxElement": "SPDXRef-Package-picocolors-1.1.1",
|
|
8211
8211
|
"relationshipType": "DEPENDS_ON"
|
|
8212
8212
|
},
|
|
8213
8213
|
{
|
|
8214
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
8214
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
8215
8215
|
"relatedSpdxElement": "SPDXRef-Package-winston-daily-rotate-file-5.0.0",
|
|
8216
8216
|
"relationshipType": "DEPENDS_ON"
|
|
8217
8217
|
},
|
|
8218
8218
|
{
|
|
8219
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
8219
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
8220
8220
|
"relatedSpdxElement": "SPDXRef-Package-winston-3.19.0",
|
|
8221
8221
|
"relationshipType": "DEPENDS_ON"
|
|
8222
8222
|
},
|
|
8223
8223
|
{
|
|
8224
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
8224
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
8225
8225
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.4.3",
|
|
8226
8226
|
"relationshipType": "DEPENDS_ON"
|
|
8227
8227
|
},
|
|
8228
8228
|
{
|
|
8229
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
8229
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
8230
8230
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
8231
8231
|
"relationshipType": "DEPENDS_ON"
|
|
8232
8232
|
},
|
|
8233
8233
|
{
|
|
8234
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
8234
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.23",
|
|
8235
8235
|
"relatedSpdxElement": "SPDXRef-Package-jose-6.2.3",
|
|
8236
8236
|
"relationshipType": "DEPENDS_ON"
|
|
8237
8237
|
},
|
|
8238
8238
|
{
|
|
8239
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
8239
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.23",
|
|
8240
8240
|
"relatedSpdxElement": "SPDXRef-Package-jsonpath-plus-10.4.0",
|
|
8241
8241
|
"relationshipType": "DEPENDS_ON"
|
|
8242
8242
|
},
|
|
8243
8243
|
{
|
|
8244
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
8244
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.23",
|
|
8245
8245
|
"relatedSpdxElement": "SPDXRef-Package-picomatch-4.0.4",
|
|
8246
8246
|
"relationshipType": "DEPENDS_ON"
|
|
8247
8247
|
},
|
|
8248
8248
|
{
|
|
8249
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
8249
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.23",
|
|
8250
8250
|
"relatedSpdxElement": "SPDXRef-Package-safe-regex-2.1.1",
|
|
8251
8251
|
"relationshipType": "DEPENDS_ON"
|
|
8252
8252
|
},
|
|
8253
8253
|
{
|
|
8254
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
8254
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.23",
|
|
8255
8255
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.4.3",
|
|
8256
8256
|
"relationshipType": "DEPENDS_ON"
|
|
8257
8257
|
},
|
|
@@ -8287,12 +8287,12 @@
|
|
|
8287
8287
|
},
|
|
8288
8288
|
{
|
|
8289
8289
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
8290
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
8290
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.23",
|
|
8291
8291
|
"relationshipType": "DEPENDS_ON"
|
|
8292
8292
|
},
|
|
8293
8293
|
{
|
|
8294
8294
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
8295
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8295
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8296
8296
|
"relationshipType": "DEPENDS_ON"
|
|
8297
8297
|
},
|
|
8298
8298
|
{
|
|
@@ -8396,112 +8396,112 @@
|
|
|
8396
8396
|
"relationshipType": "DEPENDS_ON"
|
|
8397
8397
|
},
|
|
8398
8398
|
{
|
|
8399
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8399
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8400
8400
|
"relatedSpdxElement": "SPDXRef-Package--aws-sdk-client-s3-3.1064.0",
|
|
8401
8401
|
"relationshipType": "DEPENDS_ON"
|
|
8402
8402
|
},
|
|
8403
8403
|
{
|
|
8404
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8405
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.
|
|
8404
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8405
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.23",
|
|
8406
8406
|
"relationshipType": "DEPENDS_ON"
|
|
8407
8407
|
},
|
|
8408
8408
|
{
|
|
8409
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8409
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8410
8410
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-api-1.9.1",
|
|
8411
8411
|
"relationshipType": "DEPENDS_ON"
|
|
8412
8412
|
},
|
|
8413
8413
|
{
|
|
8414
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8414
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8415
8415
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-exporter-metrics-otlp-http-0.218.0",
|
|
8416
8416
|
"relationshipType": "DEPENDS_ON"
|
|
8417
8417
|
},
|
|
8418
8418
|
{
|
|
8419
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8419
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8420
8420
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-exporter-prometheus-0.218.0",
|
|
8421
8421
|
"relationshipType": "DEPENDS_ON"
|
|
8422
8422
|
},
|
|
8423
8423
|
{
|
|
8424
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8424
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8425
8425
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-exporter-trace-otlp-http-0.218.0",
|
|
8426
8426
|
"relationshipType": "DEPENDS_ON"
|
|
8427
8427
|
},
|
|
8428
8428
|
{
|
|
8429
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8429
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8430
8430
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-instrumentation-runtime-node-0.31.0",
|
|
8431
8431
|
"relationshipType": "DEPENDS_ON"
|
|
8432
8432
|
},
|
|
8433
8433
|
{
|
|
8434
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8434
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8435
8435
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-resources-2.7.1",
|
|
8436
8436
|
"relationshipType": "DEPENDS_ON"
|
|
8437
8437
|
},
|
|
8438
8438
|
{
|
|
8439
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8439
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8440
8440
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-sdk-node-0.218.0",
|
|
8441
8441
|
"relationshipType": "DEPENDS_ON"
|
|
8442
8442
|
},
|
|
8443
8443
|
{
|
|
8444
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8444
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8445
8445
|
"relatedSpdxElement": "SPDXRef-Package--opentelemetry-semantic-conventions-1.41.1",
|
|
8446
8446
|
"relationshipType": "DEPENDS_ON"
|
|
8447
8447
|
},
|
|
8448
8448
|
{
|
|
8449
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8449
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8450
8450
|
"relatedSpdxElement": "SPDXRef-Package-archiver-8.0.0",
|
|
8451
8451
|
"relationshipType": "DEPENDS_ON"
|
|
8452
8452
|
},
|
|
8453
8453
|
{
|
|
8454
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8454
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8455
8455
|
"relatedSpdxElement": "SPDXRef-Package-diff-9.0.0",
|
|
8456
8456
|
"relationshipType": "DEPENDS_ON"
|
|
8457
8457
|
},
|
|
8458
8458
|
{
|
|
8459
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8459
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8460
8460
|
"relatedSpdxElement": "SPDXRef-Package-hono-4.12.25",
|
|
8461
8461
|
"relationshipType": "DEPENDS_ON"
|
|
8462
8462
|
},
|
|
8463
8463
|
{
|
|
8464
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8464
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8465
8465
|
"relatedSpdxElement": "SPDXRef-Package-kysely-0.29.2",
|
|
8466
8466
|
"relationshipType": "DEPENDS_ON"
|
|
8467
8467
|
},
|
|
8468
8468
|
{
|
|
8469
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8469
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8470
8470
|
"relatedSpdxElement": "SPDXRef-Package-oxc-transform-0.135.0",
|
|
8471
8471
|
"relationshipType": "DEPENDS_ON"
|
|
8472
8472
|
},
|
|
8473
8473
|
{
|
|
8474
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8474
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8475
8475
|
"relatedSpdxElement": "SPDXRef-Package-pg-8.21.0",
|
|
8476
8476
|
"relationshipType": "DEPENDS_ON"
|
|
8477
8477
|
},
|
|
8478
8478
|
{
|
|
8479
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8479
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8480
8480
|
"relatedSpdxElement": "SPDXRef-Package-picocolors-1.1.1",
|
|
8481
8481
|
"relationshipType": "DEPENDS_ON"
|
|
8482
8482
|
},
|
|
8483
8483
|
{
|
|
8484
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8484
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8485
8485
|
"relatedSpdxElement": "SPDXRef-Package-winston-daily-rotate-file-5.0.0",
|
|
8486
8486
|
"relationshipType": "DEPENDS_ON"
|
|
8487
8487
|
},
|
|
8488
8488
|
{
|
|
8489
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8489
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8490
8490
|
"relatedSpdxElement": "SPDXRef-Package-winston-3.19.0",
|
|
8491
8491
|
"relationshipType": "DEPENDS_ON"
|
|
8492
8492
|
},
|
|
8493
8493
|
{
|
|
8494
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8494
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8495
8495
|
"relatedSpdxElement": "SPDXRef-Package-yaml-2.9.0",
|
|
8496
8496
|
"relationshipType": "DEPENDS_ON"
|
|
8497
8497
|
},
|
|
8498
8498
|
{
|
|
8499
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8499
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8500
8500
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.4.3",
|
|
8501
8501
|
"relationshipType": "DEPENDS_ON"
|
|
8502
8502
|
},
|
|
8503
8503
|
{
|
|
8504
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.
|
|
8504
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-shared-0.1.23",
|
|
8505
8505
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
8506
8506
|
"relationshipType": "DEPENDS_ON"
|
|
8507
8507
|
},
|