@kici-dev/compiler 0.1.15 → 0.1.16
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.d.ts +9 -1
- package/dist/cli.js +213 -182
- package/dist/commands/approve.d.ts +23 -0
- package/dist/commands/approve.js +46 -0
- package/dist/commands/compile.js +1 -1
- package/dist/commands/docs.js +2 -2
- package/dist/commands/endpoints.js +1 -1
- package/dist/commands/held-run-client.d.ts +26 -0
- package/dist/commands/held-run-client.js +98 -0
- package/dist/commands/held-run-resolve.d.ts +45 -0
- package/dist/commands/held-run-resolve.js +53 -0
- package/dist/commands/hook.js +1 -1
- package/dist/commands/index.d.ts +4 -0
- package/dist/commands/index.js +3 -1
- package/dist/commands/init.js +1 -1
- package/dist/commands/reject.d.ts +25 -0
- package/dist/commands/reject.js +49 -0
- package/dist/commands/run.js +1 -1
- package/dist/commands/status.js +1 -1
- package/dist/commands/test.js +1 -1
- package/dist/commands/types.js +1 -1
- package/dist/commands/watch.js +1 -1
- package/dist/execution/executor.js +2 -2
- package/dist/execution/sdk-alias.js +1 -1
- package/dist/fixtures/compiler.js +2 -2
- package/dist/fixtures/defaults/index.js +2 -2
- package/dist/hooks/detector.js +1 -1
- package/dist/hooks/installer.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/llm-context/llms-full.txt +137 -3
- package/dist/llm-context/llms.txt +2 -1
- package/dist/local-executor/index.js +1 -1
- package/dist/local-executor/job-runner.js +1 -1
- package/dist/local-executor/materializer.js +1 -1
- package/dist/local-executor/secret-loader.js +1 -1
- package/dist/local-executor/workflow-lock.js +0 -0
- package/dist/lockfile/generator.js +17 -5
- package/dist/lockfile/hash-files.js +1 -1
- package/dist/postinstall.js +1 -1
- package/dist/remote/config.js +1 -1
- package/dist/remote/history.js +1 -1
- package/dist/remote/uploader.js +1 -1
- package/dist/templates/index.js +1 -1
- package/dist/templates/package-json.js +1 -1
- package/dist/test-runner/git-detector.js +1 -1
- package/dist/test-runner/job-executor.js +2 -2
- package/dist/test-runner/secrets-file.js +1 -1
- package/dist/test-runner/step-context.js +1 -1
- package/dist/types.d.ts +17 -2
- package/package.json +4 -4
- package/sbom.spdx.json +34 -34
|
@@ -7,7 +7,7 @@ The full markdown bundle of every page indexed here is available at https://docs
|
|
|
7
7
|
## Getting started
|
|
8
8
|
|
|
9
9
|
- [User guide](https://docs.kici.dev/user/): Writing and testing CI/CD workflows in TypeScript
|
|
10
|
-
- [Getting started with
|
|
10
|
+
- [Getting started with workflows](https://docs.kici.dev/user/getting-started/): Install the SDK, write your first workflow, compile and test locally
|
|
11
11
|
- [5-minute quickstart](https://docs.kici.dev/user/quickstart/): Stand up a KiCI orchestrator + agent and run your first workflow
|
|
12
12
|
|
|
13
13
|
## Workflow patterns
|
|
@@ -42,6 +42,7 @@ The full markdown bundle of every page indexed here is available at https://docs
|
|
|
42
42
|
|
|
43
43
|
## Workflow features
|
|
44
44
|
|
|
45
|
+
- [Account and sign-in](https://docs.kici.dev/user/account-and-login/): How your KiCI account relates to sign-in methods, and how to change the way you sign in.
|
|
45
46
|
- [Concurrency groups](https://docs.kici.dev/user/concurrency/): Control parallel execution with auto-cancel and queue modes
|
|
46
47
|
- [Dashboard](https://docs.kici.dev/user/dashboard/)
|
|
47
48
|
- [Dynamic values](https://docs.kici.dev/user/dynamic-values/)
|
|
@@ -11,9 +11,9 @@ import { displayLocalSummary, formatLocalJsonResult, formatLocalJunitResult } fr
|
|
|
11
11
|
import { PickerCancelledError, runPicker } from "./picker.js";
|
|
12
12
|
import { gcStaleRunCheckouts, materializeCheckout } from "./materializer.js";
|
|
13
13
|
import { ConcurrencyKeyEvaluationError, acquireWorkflowLock } from "./workflow-lock.js";
|
|
14
|
+
import path from "node:path";
|
|
14
15
|
import pc from "picocolors";
|
|
15
16
|
import { writeFile } from "node:fs/promises";
|
|
16
|
-
import path from "node:path";
|
|
17
17
|
import { logger } from "@kici-dev/core";
|
|
18
18
|
import { matchAllWorkflows } from "@kici-dev/engine";
|
|
19
19
|
import os from "node:os";
|
|
@@ -4,8 +4,8 @@ import { formatter } from "../test-runner/output-formatter.js";
|
|
|
4
4
|
import { createStepContext } from "../test-runner/step-context.js";
|
|
5
5
|
import { createRuleContext, evaluateRules as evaluateRulesWithFormatting } from "../test-runner/rule-evaluator.js";
|
|
6
6
|
import { toEventPayload } from "./to-event-payload.js";
|
|
7
|
-
import path from "node:path";
|
|
8
7
|
import { pathToFileURL } from "node:url";
|
|
8
|
+
import path from "node:path";
|
|
9
9
|
import { applyIncludeExclude, expandMatrix, isDynamicJobFn, setJobOutputsMap, setStepOutputsMap, setStepRefMap } from "@kici-dev/sdk";
|
|
10
10
|
//#region src/local-executor/job-runner.ts
|
|
11
11
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../chunk-gOLHoazu.js";
|
|
2
2
|
import { selectOverlayFiles } from "../remote/uploader.js";
|
|
3
|
-
import fs from "node:fs/promises";
|
|
4
3
|
import path from "node:path";
|
|
4
|
+
import fs from "node:fs/promises";
|
|
5
5
|
import { logger } from "@kici-dev/core";
|
|
6
6
|
import { execSync } from "node:child_process";
|
|
7
7
|
import os from "node:os";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../chunk-gOLHoazu.js";
|
|
2
2
|
import { loadSecretsFile } from "../test-runner/secrets-file.js";
|
|
3
|
-
import { readFile } from "node:fs/promises";
|
|
4
3
|
import path from "node:path";
|
|
4
|
+
import { readFile } from "node:fs/promises";
|
|
5
5
|
import { parse } from "yaml";
|
|
6
6
|
//#region src/local-executor/secret-loader.ts
|
|
7
7
|
/**
|
|
Binary file
|
|
@@ -3,9 +3,9 @@ import { SCHEMA_VERSION as SCHEMA_VERSION$1 } from "../types.js";
|
|
|
3
3
|
import { computeContentHash } from "./hasher.js";
|
|
4
4
|
import { resolveHashFiles } from "./hash-files.js";
|
|
5
5
|
import { analyzePurity } from "./purity-analyzer.js";
|
|
6
|
-
import { readFileSync } from "node:fs";
|
|
7
6
|
import path from "node:path";
|
|
8
|
-
import {
|
|
7
|
+
import { readFileSync } from "node:fs";
|
|
8
|
+
import { getDynamicJobGroup, isDynamicFunction, isDynamicGroupRef, isDynamicJobFn, isStaticArray, isStaticObject, normalizeCacheSpecs, normalizeRequireApproval } from "@kici-dev/sdk";
|
|
9
9
|
import { sha256 } from "@kici-dev/core";
|
|
10
10
|
import { PackageManager, detectPackageManagerSync } from "@kici-dev/core/package-manager";
|
|
11
11
|
import { validateResourceRequest } from "@kici-dev/engine";
|
|
@@ -152,7 +152,8 @@ function transformWorkflow(workflow, sourceFile, exportRef, bundleSource, gitRoo
|
|
|
152
152
|
...workflow.concurrency.cancelInProgress !== void 0 && { cancelInProgress: workflow.concurrency.cancelInProgress },
|
|
153
153
|
...workflow.concurrency.max !== void 0 && { max: workflow.concurrency.max }
|
|
154
154
|
} },
|
|
155
|
-
...workflow.timeout !== void 0 && { timeout: workflow.timeout }
|
|
155
|
+
...workflow.timeout !== void 0 && { timeout: workflow.timeout },
|
|
156
|
+
...workflow.requireApproval !== void 0 && { approval: toLockApproval(workflow.requireApproval) }
|
|
156
157
|
};
|
|
157
158
|
}
|
|
158
159
|
/**
|
|
@@ -543,7 +544,8 @@ function transformJob(job, configPath, index, gitRoot, uuidToName) {
|
|
|
543
544
|
...job.gracePeriod !== void 0 && { gracePeriod: job.gracePeriod },
|
|
544
545
|
...job.timeout !== void 0 && { timeout: job.timeout },
|
|
545
546
|
...job.resources !== void 0 && { resources: job.resources },
|
|
546
|
-
...job.init !== void 0 && { init: job.init }
|
|
547
|
+
...job.init !== void 0 && { init: job.init },
|
|
548
|
+
...job.requireApproval !== void 0 && { approval: toLockApproval(job.requireApproval) }
|
|
547
549
|
};
|
|
548
550
|
}
|
|
549
551
|
/**
|
|
@@ -591,6 +593,15 @@ function resolveNeedsForLock(needs, uuidToName) {
|
|
|
591
593
|
* Assigns counter-based IDs to unnamed steps (bare functions and id-less steps).
|
|
592
594
|
* Counter only increments for unnamed entries; named steps keep their names.
|
|
593
595
|
*/
|
|
596
|
+
/** Map an SDK `requireApproval` to the normalized lock `approval` block. */
|
|
597
|
+
function toLockApproval(r) {
|
|
598
|
+
const n = normalizeRequireApproval(r);
|
|
599
|
+
return {
|
|
600
|
+
clauses: n.clauses,
|
|
601
|
+
...n.reason !== void 0 && { reason: n.reason },
|
|
602
|
+
...n.timeoutSeconds !== void 0 && { timeoutSeconds: n.timeoutSeconds }
|
|
603
|
+
};
|
|
604
|
+
}
|
|
594
605
|
function transformSteps(steps, gitRoot) {
|
|
595
606
|
let stepCounter = 0;
|
|
596
607
|
return steps.map((stepOrFn) => {
|
|
@@ -618,7 +629,8 @@ function transformSteps(steps, gitRoot) {
|
|
|
618
629
|
rules: transformRules(step.rules, makeRelativePath(step._sourceLocation?.file ?? "", gitRoot))
|
|
619
630
|
},
|
|
620
631
|
...step.onCancel !== void 0 && { hasOnCancel: true },
|
|
621
|
-
...step.cleanup !== void 0 && { hasCleanup: true }
|
|
632
|
+
...step.cleanup !== void 0 && { hasCleanup: true },
|
|
633
|
+
...step.requireApproval !== void 0 && { approval: toLockApproval(step.requireApproval) }
|
|
622
634
|
};
|
|
623
635
|
});
|
|
624
636
|
}
|
package/dist/postinstall.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import "./chunk-gOLHoazu.js";
|
|
3
|
-
import { readFile } from "node:fs/promises";
|
|
4
3
|
import path from "node:path";
|
|
4
|
+
import { readFile } from "node:fs/promises";
|
|
5
5
|
import { spawn } from "node:child_process";
|
|
6
6
|
import { confirm } from "@inquirer/prompts";
|
|
7
7
|
//#region src/postinstall.ts
|
package/dist/remote/config.js
CHANGED
package/dist/remote/history.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import "../chunk-gOLHoazu.js";
|
|
2
2
|
import { formatRelativeTime } from "../format.js";
|
|
3
3
|
import { getConfigDir } from "./config.js";
|
|
4
|
+
import path from "node:path";
|
|
4
5
|
import pc from "picocolors";
|
|
5
6
|
import fs from "node:fs/promises";
|
|
6
|
-
import path from "node:path";
|
|
7
7
|
import { formatDuration } from "@kici-dev/core";
|
|
8
8
|
import picomatch from "picomatch";
|
|
9
9
|
//#region src/remote/history.ts
|
package/dist/remote/uploader.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../chunk-gOLHoazu.js";
|
|
2
2
|
import { encryptTarball } from "./encryption.js";
|
|
3
|
-
import fs from "node:fs/promises";
|
|
4
3
|
import path from "node:path";
|
|
4
|
+
import fs from "node:fs/promises";
|
|
5
5
|
import { formatBytes, sha256, sha256File } from "@kici-dev/core";
|
|
6
6
|
import { execSync } from "node:child_process";
|
|
7
7
|
import os from "node:os";
|
package/dist/templates/index.js
CHANGED
|
@@ -4,8 +4,8 @@ import { helloWorldWorkflow } from "./workflows/hello-world.js";
|
|
|
4
4
|
import { prChecksWorkflow } from "./workflows/pr-checks.js";
|
|
5
5
|
import { tsconfigTemplate } from "./tsconfig-json.js";
|
|
6
6
|
import { generatePackageJson } from "./package-json.js";
|
|
7
|
-
import path from "node:path";
|
|
8
7
|
import { fileURLToPath } from "node:url";
|
|
8
|
+
import path from "node:path";
|
|
9
9
|
//#region src/templates/index.ts
|
|
10
10
|
/**
|
|
11
11
|
* Template aggregator for kici init command
|
|
@@ -2,9 +2,9 @@ import "../chunk-gOLHoazu.js";
|
|
|
2
2
|
import { formatter } from "./output-formatter.js";
|
|
3
3
|
import { createStepContext } from "./step-context.js";
|
|
4
4
|
import { createRuleContext, evaluateRules as evaluateRulesWithFormatting } from "./rule-evaluator.js";
|
|
5
|
-
import pc from "picocolors";
|
|
6
|
-
import path from "node:path";
|
|
7
5
|
import { pathToFileURL } from "node:url";
|
|
6
|
+
import path from "node:path";
|
|
7
|
+
import pc from "picocolors";
|
|
8
8
|
import { setJobOutputsMap, setStepOutputsMap, setStepRefMap } from "@kici-dev/sdk";
|
|
9
9
|
import { logger } from "@kici-dev/core";
|
|
10
10
|
//#region src/test-runner/job-executor.ts
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "../chunk-gOLHoazu.js";
|
|
2
2
|
import { formatter } from "./output-formatter.js";
|
|
3
|
-
import { chmodSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";
|
|
4
3
|
import { join } from "node:path";
|
|
4
|
+
import { chmodSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";
|
|
5
5
|
import { createStepSecrets, resolveJobOutputs, resolveStepOutputs } from "@kici-dev/sdk";
|
|
6
6
|
import { initZx } from "@kici-dev/core";
|
|
7
7
|
import { tmpdir } from "node:os";
|
package/dist/types.d.ts
CHANGED
|
@@ -11,9 +11,18 @@
|
|
|
11
11
|
* v11 adds LockInlineValue type for pure function inline evaluation.
|
|
12
12
|
* v15 adds per-job init config(s).
|
|
13
13
|
*/
|
|
14
|
-
import type { ResourceRequest } from '@kici-dev/engine';
|
|
14
|
+
import type { ResourceRequest, ApproverClause } from '@kici-dev/engine';
|
|
15
|
+
/**
|
|
16
|
+
* Normalized approval config carried in the lock file. Mirrors the engine
|
|
17
|
+
* `LockApproval` type. Produced by the compiler from an SDK `requireApproval`.
|
|
18
|
+
*/
|
|
19
|
+
export interface LockApproval {
|
|
20
|
+
readonly clauses: ApproverClause[];
|
|
21
|
+
readonly reason?: string;
|
|
22
|
+
readonly timeoutSeconds?: number;
|
|
23
|
+
}
|
|
15
24
|
/** Schema version - re-exported from engine as single source of truth */
|
|
16
|
-
export declare const SCHEMA_VERSION:
|
|
25
|
+
export declare const SCHEMA_VERSION: 16;
|
|
17
26
|
/**
|
|
18
27
|
* Source file reference with meaningful path.
|
|
19
28
|
* Format: file is relative path from git root, export uses hash syntax.
|
|
@@ -324,6 +333,8 @@ export interface LockStep {
|
|
|
324
333
|
readonly hasOnCancel?: boolean;
|
|
325
334
|
/** Whether this step has a cleanup hook. */
|
|
326
335
|
readonly hasCleanup?: boolean;
|
|
336
|
+
/** Normalized approval gate; when set the step pauses for a human approval. */
|
|
337
|
+
readonly approval?: LockApproval;
|
|
327
338
|
}
|
|
328
339
|
/**
|
|
329
340
|
* Inline expression value for pure dynamic functions.
|
|
@@ -419,6 +430,8 @@ export interface LockJob {
|
|
|
419
430
|
* the loaded module, the lock copy is for orchestrator/dashboard visibility.
|
|
420
431
|
*/
|
|
421
432
|
readonly init?: import('@kici-dev/sdk').GenericInitConfig | readonly import('@kici-dev/sdk').GenericInitConfig[] | false;
|
|
433
|
+
/** Normalized approval gate; when set the job is held before dispatch. */
|
|
434
|
+
readonly approval?: LockApproval;
|
|
422
435
|
}
|
|
423
436
|
/**
|
|
424
437
|
* Dynamic job generator reference.
|
|
@@ -495,6 +508,8 @@ export interface LockWorkflow {
|
|
|
495
508
|
};
|
|
496
509
|
/** Whole-run wall-clock timeout in milliseconds. Orchestrator reads this at run creation to set the run deadline. */
|
|
497
510
|
readonly timeout?: number;
|
|
511
|
+
/** Normalized approval gate; when set the whole run is held before any job dispatches. */
|
|
512
|
+
readonly approval?: LockApproval;
|
|
498
513
|
}
|
|
499
514
|
/**
|
|
500
515
|
* Complete lock file structure.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kici-dev/compiler",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.16",
|
|
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",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
"ws": "^8.20.0",
|
|
63
63
|
"yaml": "^2.8.3",
|
|
64
64
|
"zx": "^8.8.5",
|
|
65
|
-
"@kici-dev/core": "0.1.
|
|
66
|
-
"@kici-dev/engine": "0.1.
|
|
65
|
+
"@kici-dev/core": "0.1.16",
|
|
66
|
+
"@kici-dev/engine": "0.1.16"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"@kici-dev/sdk": "0.1.
|
|
69
|
+
"@kici-dev/sdk": "0.1.16"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@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.16",
|
|
6
|
+
"documentNamespace": "https://kici.dev/sbom/%40kici-dev%2Fcompiler/0.1.16/2641506d-0356-4c02-b23d-2b96de4d4cc1",
|
|
7
7
|
"creationInfo": {
|
|
8
|
-
"created": "2026-06-
|
|
8
|
+
"created": "2026-06-12T09:41:47Z",
|
|
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.16",
|
|
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.16"
|
|
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.16",
|
|
506
506
|
"name": "@kici-dev/core",
|
|
507
|
-
"versionInfo": "0.1.
|
|
507
|
+
"versionInfo": "0.1.16",
|
|
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.16"
|
|
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.16",
|
|
526
526
|
"name": "@kici-dev/engine",
|
|
527
|
-
"versionInfo": "0.1.
|
|
527
|
+
"versionInfo": "0.1.16",
|
|
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.16"
|
|
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.16",
|
|
546
546
|
"name": "@kici-dev/sdk",
|
|
547
|
-
"versionInfo": "0.1.
|
|
547
|
+
"versionInfo": "0.1.16",
|
|
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.16"
|
|
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.",
|
|
@@ -3182,17 +3182,17 @@
|
|
|
3182
3182
|
},
|
|
3183
3183
|
{
|
|
3184
3184
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3185
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3185
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3186
3186
|
"relationshipType": "DEPENDS_ON"
|
|
3187
3187
|
},
|
|
3188
3188
|
{
|
|
3189
3189
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3190
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3190
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3191
3191
|
"relationshipType": "DEPENDS_ON"
|
|
3192
3192
|
},
|
|
3193
3193
|
{
|
|
3194
3194
|
"spdxElementId": "SPDXRef-RootPackage",
|
|
3195
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3195
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3196
3196
|
"relationshipType": "DEPENDS_ON"
|
|
3197
3197
|
},
|
|
3198
3198
|
{
|
|
@@ -3256,77 +3256,77 @@
|
|
|
3256
3256
|
"relationshipType": "DEPENDS_ON"
|
|
3257
3257
|
},
|
|
3258
3258
|
{
|
|
3259
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3259
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3260
3260
|
"relatedSpdxElement": "SPDXRef-Package-oxc-transform-0.128.0",
|
|
3261
3261
|
"relationshipType": "DEPENDS_ON"
|
|
3262
3262
|
},
|
|
3263
3263
|
{
|
|
3264
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3264
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3265
3265
|
"relatedSpdxElement": "SPDXRef-Package-picocolors-1.1.1",
|
|
3266
3266
|
"relationshipType": "DEPENDS_ON"
|
|
3267
3267
|
},
|
|
3268
3268
|
{
|
|
3269
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3269
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3270
3270
|
"relatedSpdxElement": "SPDXRef-Package-winston-daily-rotate-file-5.0.0",
|
|
3271
3271
|
"relationshipType": "DEPENDS_ON"
|
|
3272
3272
|
},
|
|
3273
3273
|
{
|
|
3274
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3274
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3275
3275
|
"relatedSpdxElement": "SPDXRef-Package-winston-3.19.0",
|
|
3276
3276
|
"relationshipType": "DEPENDS_ON"
|
|
3277
3277
|
},
|
|
3278
3278
|
{
|
|
3279
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3279
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3280
3280
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
|
|
3281
3281
|
"relationshipType": "DEPENDS_ON"
|
|
3282
3282
|
},
|
|
3283
3283
|
{
|
|
3284
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3284
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3285
3285
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
3286
3286
|
"relationshipType": "DEPENDS_ON"
|
|
3287
3287
|
},
|
|
3288
3288
|
{
|
|
3289
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3289
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3290
3290
|
"relatedSpdxElement": "SPDXRef-Package-jsonpath-plus-10.4.0",
|
|
3291
3291
|
"relationshipType": "DEPENDS_ON"
|
|
3292
3292
|
},
|
|
3293
3293
|
{
|
|
3294
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3294
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3295
3295
|
"relatedSpdxElement": "SPDXRef-Package-picomatch-4.0.4",
|
|
3296
3296
|
"relationshipType": "DEPENDS_ON"
|
|
3297
3297
|
},
|
|
3298
3298
|
{
|
|
3299
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3299
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3300
3300
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
|
|
3301
3301
|
"relationshipType": "DEPENDS_ON"
|
|
3302
3302
|
},
|
|
3303
3303
|
{
|
|
3304
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3305
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.
|
|
3304
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3305
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-core-0.1.16",
|
|
3306
3306
|
"relationshipType": "DEPENDS_ON"
|
|
3307
3307
|
},
|
|
3308
3308
|
{
|
|
3309
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3310
|
-
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.
|
|
3309
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3310
|
+
"relatedSpdxElement": "SPDXRef-Package--kici-dev-engine-0.1.16",
|
|
3311
3311
|
"relationshipType": "DEPENDS_ON"
|
|
3312
3312
|
},
|
|
3313
3313
|
{
|
|
3314
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3314
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3315
3315
|
"relatedSpdxElement": "SPDXRef-Package-fast-cartesian-9.0.1",
|
|
3316
3316
|
"relationshipType": "DEPENDS_ON"
|
|
3317
3317
|
},
|
|
3318
3318
|
{
|
|
3319
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3319
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3320
3320
|
"relatedSpdxElement": "SPDXRef-Package-micromatch-4.0.8",
|
|
3321
3321
|
"relationshipType": "DEPENDS_ON"
|
|
3322
3322
|
},
|
|
3323
3323
|
{
|
|
3324
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3324
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3325
3325
|
"relatedSpdxElement": "SPDXRef-Package-zod-4.3.6",
|
|
3326
3326
|
"relationshipType": "DEPENDS_ON"
|
|
3327
3327
|
},
|
|
3328
3328
|
{
|
|
3329
|
-
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.
|
|
3329
|
+
"spdxElementId": "SPDXRef-Package--kici-dev-sdk-0.1.16",
|
|
3330
3330
|
"relatedSpdxElement": "SPDXRef-Package-zx-8.8.5",
|
|
3331
3331
|
"relationshipType": "DEPENDS_ON"
|
|
3332
3332
|
},
|