@kici-dev/compiler 0.1.21 → 0.1.22
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/cli.js +8 -4
- package/dist/commands/held-run-client.d.ts +7 -2
- package/dist/commands/held-run-client.js +9 -3
- package/dist/commands/held-run-resolve.d.ts +5 -0
- package/dist/commands/login.d.ts +2 -0
- package/dist/commands/login.js +15 -7
- package/dist/commands/run-hold-watch.d.ts +57 -0
- package/dist/commands/run-hold-watch.js +87 -0
- package/dist/commands/run.d.ts +8 -0
- package/dist/commands/run.js +65 -4
- package/dist/commands/test.d.ts +10 -0
- package/dist/llm-context/llms-full.txt +344 -48
- package/dist/llm-context/llms.txt +2 -1
- package/dist/local-executor/job-runner.js +2 -1
- package/dist/lockfile/generator.js +34 -17
- package/dist/remote/config.d.ts +2 -0
- package/dist/remote/config.js +1 -0
- package/dist/remote/platform-client.d.ts +6 -1
- package/dist/templates/package-json.js +1 -1
- package/dist/test-runner/step-context.js +2 -1
- package/dist/types.d.ts +11 -6
- package/package.json +4 -4
- package/sbom.spdx.json +35 -35
|
@@ -145,7 +145,8 @@ async function resolveJobs(workflow, event) {
|
|
|
145
145
|
query: () => Promise.resolve([]),
|
|
146
146
|
get: () => Promise.resolve(null)
|
|
147
147
|
},
|
|
148
|
-
oidc: { token: () => Promise.reject(/* @__PURE__ */ new Error("ctx.kici.oidc.token() is not available during local execution")) }
|
|
148
|
+
oidc: { token: () => Promise.reject(/* @__PURE__ */ new Error("ctx.kici.oidc.token() is not available during local execution")) },
|
|
149
|
+
host: { requestReboot: () => Promise.reject(/* @__PURE__ */ new Error("ctx.kici.host.requestReboot() is not available during local execution")) }
|
|
149
150
|
}
|
|
150
151
|
});
|
|
151
152
|
for (const genJob of generatedJobs) {
|
|
@@ -5,10 +5,10 @@ import { resolveHashFiles } from "./hash-files.js";
|
|
|
5
5
|
import { analyzePurity } from "./purity-analyzer.js";
|
|
6
6
|
import path from "node:path";
|
|
7
7
|
import { readFileSync } from "node:fs";
|
|
8
|
-
import { getDynamicJobGroup, getDynamicJobNeeds, isDynamicFunction, isDynamicGroupRef, isDynamicJobFn, isStaticArray, isStaticObject,
|
|
8
|
+
import { getDynamicJobGroup, getDynamicJobNeeds, isDynamicFunction, isDynamicGroupRef, isDynamicJobFn, isStaticArray, isStaticObject, normalizeApproval, normalizeCacheSpecs } from "@kici-dev/sdk";
|
|
9
9
|
import { sha256 } from "@kici-dev/core";
|
|
10
10
|
import { PackageManager, detectPackageManagerSync, detectYarnFlavorSync } from "@kici-dev/core/package-manager";
|
|
11
|
-
import { validateResourceRequest } from "@kici-dev/engine";
|
|
11
|
+
import { resolveWhenToRunOn, validateResourceRequest } from "@kici-dev/engine";
|
|
12
12
|
import { normalizeRunsOnAllToMatchers, normalizeRunsOnToMatchers } from "@kici-dev/engine/labels/compile";
|
|
13
13
|
import { execSync } from "node:child_process";
|
|
14
14
|
//#region src/lockfile/generator.ts
|
|
@@ -158,7 +158,7 @@ function transformWorkflow(workflow, sourceFile, exportRef, bundleSource, gitRoo
|
|
|
158
158
|
...workflow.concurrency.max !== void 0 && { max: workflow.concurrency.max }
|
|
159
159
|
} },
|
|
160
160
|
...workflow.timeout !== void 0 && { timeout: workflow.timeout },
|
|
161
|
-
...workflow.
|
|
161
|
+
...workflow.approval !== void 0 && { approval: (assertNonStepApprovalScope(workflow.approval, "workflow"), toLockApproval(workflow.approval)) }
|
|
162
162
|
};
|
|
163
163
|
}
|
|
164
164
|
/**
|
|
@@ -565,12 +565,13 @@ function transformJob(job, configPath, index, gitRoot, uuidToName) {
|
|
|
565
565
|
...job.timeout !== void 0 && { timeout: job.timeout },
|
|
566
566
|
...job.resources !== void 0 && { resources: job.resources },
|
|
567
567
|
...job.init !== void 0 && { init: job.init },
|
|
568
|
-
...job.
|
|
568
|
+
...job.approval !== void 0 && { approval: (assertNonStepApprovalScope(job.approval, "job"), toLockApproval(job.approval)) }
|
|
569
569
|
};
|
|
570
570
|
}
|
|
571
571
|
/**
|
|
572
572
|
* Resolve needs to lock file format.
|
|
573
|
-
* Handles strings, Job objects, DynamicGroupRef, and object forms with
|
|
573
|
+
* Handles strings, Job objects, DynamicGroupRef, and object forms with a `when`
|
|
574
|
+
* run condition (normalized to a `runOn` status-set via the engine helper).
|
|
574
575
|
* Uses the UUID-to-renamed-name mapping so that references to id-less jobs
|
|
575
576
|
* resolve to their lock file names (job-N) instead of the original UUIDs.
|
|
576
577
|
*/
|
|
@@ -582,26 +583,26 @@ function resolveNeedsForLock(needs, uuidToName) {
|
|
|
582
583
|
else if (isDynamicGroupRef(need)) {
|
|
583
584
|
resolvedNeeds.push({
|
|
584
585
|
group: need.group,
|
|
585
|
-
|
|
586
|
+
runOn: resolveWhenToRunOn(need.when)
|
|
586
587
|
});
|
|
587
588
|
groups.push(need.group);
|
|
589
|
+
} else if ("_tag" in need && need._tag === "Job") {
|
|
590
|
+
const name = need.name;
|
|
591
|
+
resolvedNeeds.push(uuidToName?.get(name) ?? name);
|
|
588
592
|
} else if ("group" in need && typeof need.group === "string") {
|
|
589
593
|
const g = need;
|
|
590
594
|
resolvedNeeds.push({
|
|
591
595
|
group: g.group,
|
|
592
|
-
|
|
596
|
+
runOn: resolveWhenToRunOn(g.when)
|
|
593
597
|
});
|
|
594
598
|
groups.push(g.group);
|
|
595
|
-
} else
|
|
599
|
+
} else {
|
|
596
600
|
const n = need;
|
|
597
601
|
const name = uuidToName?.get(n.name) ?? n.name;
|
|
598
602
|
resolvedNeeds.push({
|
|
599
603
|
name,
|
|
600
|
-
|
|
604
|
+
runOn: resolveWhenToRunOn(n.when)
|
|
601
605
|
});
|
|
602
|
-
} else {
|
|
603
|
-
const name = need.name;
|
|
604
|
-
resolvedNeeds.push(uuidToName?.get(name) ?? name);
|
|
605
606
|
}
|
|
606
607
|
return {
|
|
607
608
|
needs: resolvedNeeds,
|
|
@@ -613,15 +614,31 @@ function resolveNeedsForLock(needs, uuidToName) {
|
|
|
613
614
|
* Assigns counter-based IDs to unnamed steps (bare functions and id-less steps).
|
|
614
615
|
* Counter only increments for unnamed entries; named steps keep their names.
|
|
615
616
|
*/
|
|
616
|
-
/** Map an SDK `
|
|
617
|
-
function toLockApproval(
|
|
618
|
-
const n =
|
|
617
|
+
/** Map an SDK `approval` to the normalized lock `approval` block. */
|
|
618
|
+
function toLockApproval(c) {
|
|
619
|
+
const n = normalizeApproval(c);
|
|
619
620
|
return {
|
|
620
621
|
clauses: n.clauses,
|
|
621
622
|
...n.reason !== void 0 && { reason: n.reason },
|
|
622
|
-
...n.timeoutSeconds !== void 0 && { timeoutSeconds: n.timeoutSeconds }
|
|
623
|
+
...n.timeoutSeconds !== void 0 && { timeoutSeconds: n.timeoutSeconds },
|
|
624
|
+
when: n.when
|
|
623
625
|
};
|
|
624
626
|
}
|
|
627
|
+
/**
|
|
628
|
+
* Validate an approval config at job/workflow scope: `when: 'drift'` is a
|
|
629
|
+
* step-scope-only gate (it fires between a step's check and run), so it is a
|
|
630
|
+
* compile error anywhere else.
|
|
631
|
+
*/
|
|
632
|
+
function assertNonStepApprovalScope(c, scope) {
|
|
633
|
+
if (normalizeApproval(c).when === "drift") throw new Error(`approval.when "drift" is only valid on steps (found at ${scope} scope)`);
|
|
634
|
+
}
|
|
635
|
+
/**
|
|
636
|
+
* Validate a step's approval config: `when: 'drift'` fires between the step's
|
|
637
|
+
* check and run, so it requires a `check` facet. A compile error otherwise.
|
|
638
|
+
*/
|
|
639
|
+
function assertStepApprovalCheckFacet(step) {
|
|
640
|
+
if (step.approval !== void 0 && normalizeApproval(step.approval).when === "drift" && step.check === void 0) throw new Error(`step '${step.name || "(unnamed)"}': approval.when "drift" requires a check facet`);
|
|
641
|
+
}
|
|
625
642
|
function transformSteps(steps, gitRoot) {
|
|
626
643
|
let stepCounter = 0;
|
|
627
644
|
return steps.map((stepOrFn) => {
|
|
@@ -652,7 +669,7 @@ function transformSteps(steps, gitRoot) {
|
|
|
652
669
|
...step.cleanup !== void 0 && { hasCleanup: true },
|
|
653
670
|
...step.check !== void 0 && { hasCheck: true },
|
|
654
671
|
...step.whenInSync !== void 0 && { hasWhenInSync: true },
|
|
655
|
-
...step.
|
|
672
|
+
...step.approval !== void 0 && { approval: (assertStepApprovalCheckFacet(step), toLockApproval(step.approval)) }
|
|
656
673
|
};
|
|
657
674
|
});
|
|
658
675
|
}
|
package/dist/remote/config.d.ts
CHANGED
|
@@ -9,6 +9,8 @@ export interface GlobalConfig {
|
|
|
9
9
|
endpoint?: string;
|
|
10
10
|
/** Platform relay URL */
|
|
11
11
|
platformEndpoint?: string;
|
|
12
|
+
/** OIDC issuer URL the PAT was minted against (provenance; from OAuth login) */
|
|
13
|
+
oidcIssuer?: string;
|
|
12
14
|
/** Routing key for webhook source identification (e.g., 'github:42') */
|
|
13
15
|
routingKey?: string;
|
|
14
16
|
/** Personal access token (from OAuth login) */
|
package/dist/remote/config.js
CHANGED
|
@@ -14,6 +14,7 @@ function sanitizeConfig(raw) {
|
|
|
14
14
|
if (typeof obj.token === "string") config.token = obj.token;
|
|
15
15
|
if (typeof obj.endpoint === "string") config.endpoint = obj.endpoint;
|
|
16
16
|
if (typeof obj.platformEndpoint === "string") config.platformEndpoint = obj.platformEndpoint;
|
|
17
|
+
if (typeof obj.oidcIssuer === "string") config.oidcIssuer = obj.oidcIssuer;
|
|
17
18
|
if (typeof obj.routingKey === "string") config.routingKey = obj.routingKey;
|
|
18
19
|
if (typeof obj.pat === "string") config.pat = obj.pat;
|
|
19
20
|
if (typeof obj.patId === "string") config.patId = obj.patId;
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* The overlay tarball does NOT flow through here: `initUpload` returns an
|
|
11
11
|
* external presigned URL the CLI PUTs to directly (data plane).
|
|
12
12
|
*/
|
|
13
|
-
import type { CheckMode } from '@kici-dev/engine';
|
|
13
|
+
import type { CheckMode, HostTargetSelector } from '@kici-dev/engine';
|
|
14
14
|
export declare class AuthenticationError extends Error {
|
|
15
15
|
constructor(message?: string);
|
|
16
16
|
}
|
|
@@ -77,6 +77,11 @@ export interface PlatformTriggerInput {
|
|
|
77
77
|
* agent step loop in the requested mode. Omitted means `apply`.
|
|
78
78
|
*/
|
|
79
79
|
checkMode?: CheckMode;
|
|
80
|
+
/**
|
|
81
|
+
* Host narrowing from `kici run --target`. The Platform relays it verbatim to
|
|
82
|
+
* the orchestrator, which intersects each runsOnAll roster with it.
|
|
83
|
+
*/
|
|
84
|
+
target?: HostTargetSelector;
|
|
80
85
|
}
|
|
81
86
|
export interface PlatformTriggerResponse {
|
|
82
87
|
runId: string;
|
|
@@ -137,7 +137,8 @@ function createStepContext(workflowInfo, jobInfo, repoRoot, inputs = {}, matrix,
|
|
|
137
137
|
query: () => Promise.resolve([]),
|
|
138
138
|
get: () => Promise.resolve(null)
|
|
139
139
|
},
|
|
140
|
-
oidc: { token: () => Promise.reject(/* @__PURE__ */ new Error("ctx.kici.oidc.token() is not available in the local test runner")) }
|
|
140
|
+
oidc: { token: () => Promise.reject(/* @__PURE__ */ new Error("ctx.kici.oidc.token() is not available in the local test runner")) },
|
|
141
|
+
host: { requestReboot: () => Promise.reject(/* @__PURE__ */ new Error("ctx.kici.host.requestReboot() is not available in the local test runner")) }
|
|
141
142
|
},
|
|
142
143
|
cache: {
|
|
143
144
|
restore: async () => ({ hit: false }),
|
package/dist/types.d.ts
CHANGED
|
@@ -12,18 +12,23 @@
|
|
|
12
12
|
* v15 adds per-job init config(s).
|
|
13
13
|
* v17 widens per-job init to typed presets ('mise' / { mise }) and 'auto' detection.
|
|
14
14
|
*/
|
|
15
|
-
import type { ResourceRequest, ApproverClause, RunsOnAllPredicate, OnUnreachableMode, LabelMatcher } from '@kici-dev/engine';
|
|
15
|
+
import type { ResourceRequest, ApproverClause, RunsOnAllPredicate, OnUnreachableMode, LabelMatcher, ExecutionJobStatus } from '@kici-dev/engine';
|
|
16
16
|
/**
|
|
17
17
|
* Normalized approval config carried in the lock file. Mirrors the engine
|
|
18
|
-
* `LockApproval` type. Produced by the compiler from an SDK `
|
|
18
|
+
* `LockApproval` type. Produced by the compiler from an SDK `approval` config.
|
|
19
19
|
*/
|
|
20
20
|
export interface LockApproval {
|
|
21
21
|
readonly clauses: ApproverClause[];
|
|
22
22
|
readonly reason?: string;
|
|
23
23
|
readonly timeoutSeconds?: number;
|
|
24
|
+
/**
|
|
25
|
+
* When the gate fires. `always` (default) gates before the element; `drift`
|
|
26
|
+
* gates between a step's check and run on detected drift (step scope only).
|
|
27
|
+
*/
|
|
28
|
+
readonly when: 'always' | 'drift';
|
|
24
29
|
}
|
|
25
30
|
/** Schema version - re-exported from engine as single source of truth */
|
|
26
|
-
export declare const SCHEMA_VERSION:
|
|
31
|
+
export declare const SCHEMA_VERSION: 22;
|
|
27
32
|
/**
|
|
28
33
|
* Source file reference with meaningful path.
|
|
29
34
|
* Format: file is relative path from git root, export uses hash syntax.
|
|
@@ -367,15 +372,15 @@ export declare function isLockInlineValue(value: unknown): value is LockInlineVa
|
|
|
367
372
|
* (e.g., `kici:role:builder`, `kici:role:init-runner`) are injected by the orchestrator
|
|
368
373
|
* for internal job types (build/init) and are not user-settable.
|
|
369
374
|
*/
|
|
370
|
-
/** Needs entry with per-edge
|
|
375
|
+
/** Needs entry with per-edge run-on status-set (mirrors engine NeedsEntry). */
|
|
371
376
|
export interface LockNeedsEntry {
|
|
372
377
|
readonly name: string;
|
|
373
|
-
readonly
|
|
378
|
+
readonly runOn: ExecutionJobStatus[];
|
|
374
379
|
}
|
|
375
380
|
/** Needs group entry for dynamic group dependencies (mirrors engine NeedsGroupEntry). */
|
|
376
381
|
export interface LockNeedsGroupEntry {
|
|
377
382
|
readonly group: string;
|
|
378
|
-
readonly
|
|
383
|
+
readonly runOn: ExecutionJobStatus[];
|
|
379
384
|
}
|
|
380
385
|
export interface LockJob {
|
|
381
386
|
readonly _type: 'static';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kici-dev/compiler",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ci",
|
|
@@ -63,11 +63,11 @@
|
|
|
63
63
|
"yaml": "^2.9.0",
|
|
64
64
|
"zod": "^4.4.3",
|
|
65
65
|
"zx": "^8.8.5",
|
|
66
|
-
"@kici-dev/core": "0.1.
|
|
67
|
-
"@kici-dev/engine": "0.1.
|
|
66
|
+
"@kici-dev/core": "0.1.22",
|
|
67
|
+
"@kici-dev/engine": "0.1.22"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"@kici-dev/sdk": "0.1.
|
|
70
|
+
"@kici-dev/sdk": "0.1.22"
|
|
71
71
|
},
|
|
72
72
|
"devDependencies": {
|
|
73
73
|
"@types/proper-lockfile": "^4.1.4"
|
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/compiler@0.1.
|
|
6
|
-
"documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fcompiler/0.1.
|
|
5
|
+
"name": "@kici-dev/compiler@0.1.22",
|
|
6
|
+
"documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fcompiler/0.1.22/3348af69-8089-4211-a0f3-9a8e9a3651f4",
|
|
7
7
|
"creationInfo": {
|
|
8
|
-
"created": "2026-06-
|
|
8
|
+
"created": "2026-06-24T06:03:11Z",
|
|
9
9
|
"creators": [
|
|
10
10
|
"Tool: kici-sbom-generator"
|
|
11
11
|
]
|
|
@@ -484,7 +484,7 @@
|
|
|
484
484
|
{
|
|
485
485
|
"SPDXID": "SPDXRef-RootPackage",
|
|
486
486
|
"name": "@kici-dev/compiler",
|
|
487
|
-
"versionInfo": "0.1.
|
|
487
|
+
"versionInfo": "0.1.22",
|
|
488
488
|
"downloadLocation": "NOASSERTION",
|
|
489
489
|
"filesAnalyzed": false,
|
|
490
490
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -495,16 +495,16 @@
|
|
|
495
495
|
{
|
|
496
496
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
497
497
|
"referenceType": "purl",
|
|
498
|
-
"referenceLocator": "pkg:npm/%40kici-dev/compiler@0.1.
|
|
498
|
+
"referenceLocator": "pkg:npm/%40kici-dev/compiler@0.1.22"
|
|
499
499
|
}
|
|
500
500
|
],
|
|
501
501
|
"description": "Compiler and CLI for KiCI workflows. Compiles `.kici/workflows/*.ts` to a `kici.lock.json` file consumed by the orchestrator and agents, and runs workflows locally or against a remote orchestrator.",
|
|
502
502
|
"homepage": "https://kici.dev"
|
|
503
503
|
},
|
|
504
504
|
{
|
|
505
|
-
"SPDXID": "SPDXRef-Package--kici-dev-core-0.1.
|
|
505
|
+
"SPDXID": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
506
506
|
"name": "@kici-dev/core",
|
|
507
|
-
"versionInfo": "0.1.
|
|
507
|
+
"versionInfo": "0.1.22",
|
|
508
508
|
"downloadLocation": "NOASSERTION",
|
|
509
509
|
"filesAnalyzed": false,
|
|
510
510
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -515,16 +515,16 @@
|
|
|
515
515
|
{
|
|
516
516
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
517
517
|
"referenceType": "purl",
|
|
518
|
-
"referenceLocator": "pkg:npm/%40kici-dev/core@0.1.
|
|
518
|
+
"referenceLocator": "pkg:npm/%40kici-dev/core@0.1.22"
|
|
519
519
|
}
|
|
520
520
|
],
|
|
521
521
|
"description": "Light shared utilities for the KiCI stack (logging, errors, formatting, crypto, zx init, the TypeScript ESM loader hook). No server-side dependencies.",
|
|
522
522
|
"homepage": "https://kici.dev"
|
|
523
523
|
},
|
|
524
524
|
{
|
|
525
|
-
"SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
525
|
+
"SPDXID": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
526
526
|
"name": "@kici-dev/engine",
|
|
527
|
-
"versionInfo": "0.1.
|
|
527
|
+
"versionInfo": "0.1.22",
|
|
528
528
|
"downloadLocation": "NOASSERTION",
|
|
529
529
|
"filesAnalyzed": false,
|
|
530
530
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -535,16 +535,16 @@
|
|
|
535
535
|
{
|
|
536
536
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
537
537
|
"referenceType": "purl",
|
|
538
|
-
"referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.
|
|
538
|
+
"referenceLocator": "pkg:npm/%40kici-dev/engine@0.1.22"
|
|
539
539
|
}
|
|
540
540
|
],
|
|
541
541
|
"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.",
|
|
542
542
|
"homepage": "https://kici.dev"
|
|
543
543
|
},
|
|
544
544
|
{
|
|
545
|
-
"SPDXID": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
545
|
+
"SPDXID": "SPDXRef-Package--kici-dev-sdk-0.1.22",
|
|
546
546
|
"name": "@kici-dev/sdk",
|
|
547
|
-
"versionInfo": "0.1.
|
|
547
|
+
"versionInfo": "0.1.22",
|
|
548
548
|
"downloadLocation": "NOASSERTION",
|
|
549
549
|
"filesAnalyzed": false,
|
|
550
550
|
"licenseConcluded": "NOASSERTION",
|
|
@@ -555,7 +555,7 @@
|
|
|
555
555
|
{
|
|
556
556
|
"referenceCategory": "PACKAGE-MANAGER",
|
|
557
557
|
"referenceType": "purl",
|
|
558
|
-
"referenceLocator": "pkg:npm/%40kici-dev/sdk@0.1.
|
|
558
|
+
"referenceLocator": "pkg:npm/%40kici-dev/sdk@0.1.22"
|
|
559
559
|
}
|
|
560
560
|
],
|
|
561
561
|
"description": "TypeScript SDK for defining KiCI workflows. Import into `.kici/workflows/*.ts` to declare workflows, jobs, steps, triggers, rules, and matrix configurations.",
|
|
@@ -3222,17 +3222,17 @@
|
|
|
3222
3222
|
},
|
|
3223
3223
|
{
|
|
3224
3224
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3225
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3225
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3226
3226
|
"relationshipType": "DEPENDS_ON"
|
|
3227
3227
|
},
|
|
3228
3228
|
{
|
|
3229
3229
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3230
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3230
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
3231
3231
|
"relationshipType": "DEPENDS_ON"
|
|
3232
3232
|
},
|
|
3233
3233
|
{
|
|
3234
3234
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3235
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3235
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.22",
|
|
3236
3236
|
"relationshipType": "DEPENDS_ON"
|
|
3237
3237
|
},
|
|
3238
3238
|
{
|
|
@@ -3301,82 +3301,82 @@
|
|
|
3301
3301
|
"relationshipType": "DEPENDS_ON"
|
|
3302
3302
|
},
|
|
3303
3303
|
{
|
|
3304
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3304
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3305
3305
|
"relatedSpdxElement": "SPDXRef-Package-oxc-transform-0.135.0",
|
|
3306
3306
|
"relationshipType": "DEPENDS_ON"
|
|
3307
3307
|
},
|
|
3308
3308
|
{
|
|
3309
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3309
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3310
3310
|
"relatedSpdxElement": "SPDXRef-Package-picocolors-1.1.1",
|
|
3311
3311
|
"relationshipType": "DEPENDS_ON"
|
|
3312
3312
|
},
|
|
3313
3313
|
{
|
|
3314
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3314
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3315
3315
|
"relatedSpdxElement": "SPDXRef-Package-winston-daily-rotate-file-5.0.0",
|
|
3316
3316
|
"relationshipType": "DEPENDS_ON"
|
|
3317
3317
|
},
|
|
3318
3318
|
{
|
|
3319
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3319
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3320
3320
|
"relatedSpdxElement": "SPDXRef-Package-winston-3.19.0",
|
|
3321
3321
|
"relationshipType": "DEPENDS_ON"
|
|
3322
3322
|
},
|
|
3323
3323
|
{
|
|
3324
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3324
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3325
3325
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.4.3",
|
|
3326
3326
|
"relationshipType": "DEPENDS_ON"
|
|
3327
3327
|
},
|
|
3328
3328
|
{
|
|
3329
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3329
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3330
3330
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
3331
3331
|
"relationshipType": "DEPENDS_ON"
|
|
3332
3332
|
},
|
|
3333
3333
|
{
|
|
3334
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3334
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
3335
3335
|
"relatedSpdxElement": "SPDXRef-Package-jose-6.2.3",
|
|
3336
3336
|
"relationshipType": "DEPENDS_ON"
|
|
3337
3337
|
},
|
|
3338
3338
|
{
|
|
3339
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3339
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
3340
3340
|
"relatedSpdxElement": "SPDXRef-Package-jsonpath-plus-10.4.0",
|
|
3341
3341
|
"relationshipType": "DEPENDS_ON"
|
|
3342
3342
|
},
|
|
3343
3343
|
{
|
|
3344
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3344
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
3345
3345
|
"relatedSpdxElement": "SPDXRef-Package-picomatch-4.0.4",
|
|
3346
3346
|
"relationshipType": "DEPENDS_ON"
|
|
3347
3347
|
},
|
|
3348
3348
|
{
|
|
3349
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3349
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
3350
3350
|
"relatedSpdxElement": "SPDXRef-Package-safe-regex-2.1.1",
|
|
3351
3351
|
"relationshipType": "DEPENDS_ON"
|
|
3352
3352
|
},
|
|
3353
3353
|
{
|
|
3354
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3354
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
3355
3355
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.4.3",
|
|
3356
3356
|
"relationshipType": "DEPENDS_ON"
|
|
3357
3357
|
},
|
|
3358
3358
|
{
|
|
3359
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3360
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3359
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.22",
|
|
3360
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.22",
|
|
3361
3361
|
"relationshipType": "DEPENDS_ON"
|
|
3362
3362
|
},
|
|
3363
3363
|
{
|
|
3364
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3365
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3364
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.22",
|
|
3365
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.22",
|
|
3366
3366
|
"relationshipType": "DEPENDS_ON"
|
|
3367
3367
|
},
|
|
3368
3368
|
{
|
|
3369
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3369
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.22",
|
|
3370
3370
|
"relatedSpdxElement": "SPDXRef-Package-micromatch-4.0.8",
|
|
3371
3371
|
"relationshipType": "DEPENDS_ON"
|
|
3372
3372
|
},
|
|
3373
3373
|
{
|
|
3374
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3374
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.22",
|
|
3375
3375
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.4.3",
|
|
3376
3376
|
"relationshipType": "DEPENDS_ON"
|
|
3377
3377
|
},
|
|
3378
3378
|
{
|
|
3379
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3379
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.22",
|
|
3380
3380
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
3381
3381
|
"relationshipType": "DEPENDS_ON"
|
|
3382
3382
|
},
|