@deployxai/dxc 0.1.5 → 0.1.7
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/chunks/{chunk-JGUPNE36.js → chunk-N4CMLINP.js} +157 -17
- package/dist/chunks/{chunk-GCGIIKQJ.js → chunk-NAL5UOUZ.js} +1 -1
- package/dist/chunks/chunk-ZKJQWR2J.js +37 -0
- package/dist/chunks/{knowledge-6LOGJETT.js → knowledge-PWFALFEC.js} +10 -7
- package/dist/chunks/{monitor-CYJPUX5V.js → monitor-CL5UXEO2.js} +2 -2
- package/dist/index.js +1029 -320
- package/package.json +1 -1
- package/skills/dxc-article-outline/SKILL.md +7 -18
- package/skills/dxc-article-write/SKILL.md +17 -29
- package/skills/dxc-content-brief/SKILL.md +6 -15
- package/skills/dxc-content-review/SKILL.md +16 -20
- package/skills/dxc-content-workflow/SKILL.md +34 -21
- package/skills/dxc-content-workflow/references/catalog.json +13 -12
- package/skills/dxc-content-workflow/references/stage-contract.md +26 -13
- package/skills/dxc-knowledge/SKILL.md +4 -0
- package/skills/dxc-memory/SKILL.md +6 -1
- package/skills/dxc-profile/SKILL.md +7 -2
- package/skills/dxc-quote-curator/SKILL.md +4 -0
- package/skills/dxc-research/SKILL.md +33 -16
- package/skills/dxc-research/references/research-method.md +6 -0
- package/skills/dxc-title-write/SKILL.md +10 -23
- package/skills/dxc-visual-plan/SKILL.md +13 -27
- package/skills/dxc-wechat-publisher/SKILL.md +72 -54
- package/skills/dxc-wechat-publisher/agents/openai.yaml +2 -2
|
@@ -605,9 +605,21 @@ var publishingApprovalSchema = z4.object({
|
|
|
605
605
|
accountId: z4.uuid(),
|
|
606
606
|
confirmedAt: z4.iso.datetime(),
|
|
607
607
|
id: z4.uuid(),
|
|
608
|
+
rootSnapshotHash: sha256Schema,
|
|
609
|
+
rootSnapshotId: z4.uuid(),
|
|
610
|
+
selectedSnapshotHash: sha256Schema,
|
|
611
|
+
selectedSnapshotId: z4.uuid(),
|
|
608
612
|
snapshotHash: sha256Schema,
|
|
609
|
-
snapshotId: z4.uuid()
|
|
610
|
-
|
|
613
|
+
snapshotId: z4.uuid(),
|
|
614
|
+
templateId: wechatTemplateIdSchema
|
|
615
|
+
}).strict().superRefine((approval, context) => {
|
|
616
|
+
if (approval.snapshotId !== approval.selectedSnapshotId || approval.snapshotHash !== approval.selectedSnapshotHash) {
|
|
617
|
+
context.addIssue({
|
|
618
|
+
code: "custom",
|
|
619
|
+
message: "legacy snapshot aliases must identify the selected snapshot"
|
|
620
|
+
});
|
|
621
|
+
}
|
|
622
|
+
});
|
|
611
623
|
var createPublishingDraftIntentRequestSchema = z4.object({
|
|
612
624
|
approvalId: z4.uuid()
|
|
613
625
|
}).strict();
|
|
@@ -668,33 +680,33 @@ var contentArtifactKindSchema = z5.enum(CONTENT_ARTIFACT_KINDS);
|
|
|
668
680
|
var CONTENT_STAGE_SKILLS = {
|
|
669
681
|
article: { name: "dxc-article-write", version: "0.1.0" },
|
|
670
682
|
brief: { name: "dxc-content-brief", version: "0.1.0" },
|
|
671
|
-
delivery: { name: "dxc-wechat-publisher", version: "0.
|
|
683
|
+
delivery: { name: "dxc-wechat-publisher", version: "0.6.0" },
|
|
672
684
|
outline: { name: "dxc-article-outline", version: "0.1.0" },
|
|
673
685
|
"quality-review": { name: "dxc-content-review", version: "0.3.0" },
|
|
674
|
-
research: { name: "dxc-research", version: "0.
|
|
686
|
+
research: { name: "dxc-research", version: "0.2.0" },
|
|
675
687
|
titles: { name: "dxc-title-write", version: "0.3.0" },
|
|
676
688
|
"visual-plan": { name: "dxc-visual-plan", version: "0.3.0" }
|
|
677
689
|
};
|
|
678
690
|
var CONTENT_STAGE_INPUTS = {
|
|
679
691
|
article: {
|
|
680
|
-
optional: [
|
|
681
|
-
required: ["brief", "outline"]
|
|
692
|
+
optional: [],
|
|
693
|
+
required: ["research", "brief", "outline"]
|
|
682
694
|
},
|
|
683
695
|
brief: {
|
|
684
696
|
optional: [],
|
|
685
697
|
required: ["research"]
|
|
686
698
|
},
|
|
687
699
|
delivery: {
|
|
688
|
-
optional: [
|
|
689
|
-
required: ["article", "titles"]
|
|
700
|
+
optional: [],
|
|
701
|
+
required: ["article", "titles", "visual-plan", "quality-review"]
|
|
690
702
|
},
|
|
691
703
|
outline: {
|
|
692
|
-
optional: [
|
|
693
|
-
required: ["brief"]
|
|
704
|
+
optional: [],
|
|
705
|
+
required: ["research", "brief"]
|
|
694
706
|
},
|
|
695
707
|
"quality-review": {
|
|
696
|
-
optional: ["
|
|
697
|
-
required: ["article", "titles"]
|
|
708
|
+
optional: ["visual-plan"],
|
|
709
|
+
required: ["research", "article", "titles"]
|
|
698
710
|
},
|
|
699
711
|
research: {
|
|
700
712
|
optional: [],
|
|
@@ -824,14 +836,128 @@ var contentStageMetadataBaseShape = {
|
|
|
824
836
|
skill: z5.string().regex(/^dxc-[a-z0-9]+(?:-[a-z0-9]+)*@\d+\.\d+\.\d+$/u),
|
|
825
837
|
workflowId: z5.literal(CONTENT_WORKFLOW_ID)
|
|
826
838
|
};
|
|
839
|
+
var researchSourceSchema = z5.object({
|
|
840
|
+
id: z5.string().regex(/^source-[a-z0-9][a-z0-9-]{0,63}$/u),
|
|
841
|
+
locator: z5.string().trim().min(1).max(2048),
|
|
842
|
+
observedAt: z5.iso.datetime(),
|
|
843
|
+
stance: z5.enum(["support", "oppose", "supplement", "neutral", "not-applicable"]),
|
|
844
|
+
type: z5.enum(["primary", "public-fact", "public-opinion", "local-history", "user-provided"]),
|
|
845
|
+
verification: z5.enum(["verified", "unverified"])
|
|
846
|
+
}).strict().superRefine((value, context) => {
|
|
847
|
+
if (["primary", "public-fact", "public-opinion"].includes(value.type)) {
|
|
848
|
+
try {
|
|
849
|
+
const url = new URL(value.locator);
|
|
850
|
+
if (url.protocol !== "http:" && url.protocol !== "https:") {
|
|
851
|
+
throw new Error("unsupported protocol");
|
|
852
|
+
}
|
|
853
|
+
} catch {
|
|
854
|
+
context.addIssue({
|
|
855
|
+
code: "custom",
|
|
856
|
+
message: "public research sources require a complete HTTP(S) URL",
|
|
857
|
+
path: ["locator"]
|
|
858
|
+
});
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
if (value.type === "public-opinion" && !["support", "oppose", "supplement"].includes(value.stance)) {
|
|
862
|
+
context.addIssue({
|
|
863
|
+
code: "custom",
|
|
864
|
+
message: "public opinion sources require a stance",
|
|
865
|
+
path: ["stance"]
|
|
866
|
+
});
|
|
867
|
+
}
|
|
868
|
+
});
|
|
869
|
+
var researchStanceCoverageSchema = z5.object({
|
|
870
|
+
oppose: z5.enum(["covered", "not-found", "not-applicable"]),
|
|
871
|
+
supplement: z5.enum(["covered", "not-found", "not-applicable"]),
|
|
872
|
+
support: z5.enum(["covered", "not-found", "not-applicable"])
|
|
873
|
+
}).strict();
|
|
827
874
|
var researchStageArtifactFrontmatterSchema = z5.object({
|
|
875
|
+
coverageNote: z5.string().trim().min(1).max(1e3),
|
|
828
876
|
dxc: z5.object({
|
|
829
877
|
...contentStageMetadataBaseShape,
|
|
830
878
|
stage: z5.literal("research")
|
|
831
879
|
}).strict(),
|
|
880
|
+
externalOpinionStatus: z5.enum(["covered", "not-applicable", "user-skipped"]),
|
|
832
881
|
origin: z5.enum(["hotspot", "article", "keywords", "intent"]),
|
|
833
|
-
|
|
834
|
-
|
|
882
|
+
researchMode: z5.enum(["fact-only", "viewpoint-scan"]),
|
|
883
|
+
sourceCount: z5.number().int().nonnegative(),
|
|
884
|
+
sources: z5.array(researchSourceSchema).max(100),
|
|
885
|
+
stanceCoverage: researchStanceCoverageSchema
|
|
886
|
+
}).strict().superRefine((value, context) => {
|
|
887
|
+
if (value.sourceCount !== value.sources.length) {
|
|
888
|
+
context.addIssue({
|
|
889
|
+
code: "custom",
|
|
890
|
+
message: "sourceCount must equal the number of structured sources",
|
|
891
|
+
path: ["sourceCount"]
|
|
892
|
+
});
|
|
893
|
+
}
|
|
894
|
+
if (new Set(value.sources.map((source) => source.id)).size !== value.sources.length) {
|
|
895
|
+
context.addIssue({
|
|
896
|
+
code: "custom",
|
|
897
|
+
message: "research source ids must be unique",
|
|
898
|
+
path: ["sources"]
|
|
899
|
+
});
|
|
900
|
+
}
|
|
901
|
+
if (new Set(value.sources.map((source) => source.locator)).size !== value.sources.length) {
|
|
902
|
+
context.addIssue({
|
|
903
|
+
code: "custom",
|
|
904
|
+
message: "research source locators must be unique",
|
|
905
|
+
path: ["sources"]
|
|
906
|
+
});
|
|
907
|
+
}
|
|
908
|
+
if (value.researchMode === "fact-only") {
|
|
909
|
+
const expectedStatus = value.origin === "hotspot" ? "user-skipped" : "not-applicable";
|
|
910
|
+
if (value.externalOpinionStatus !== expectedStatus) {
|
|
911
|
+
context.addIssue({
|
|
912
|
+
code: "custom",
|
|
913
|
+
message: `fact-only ${value.origin} research requires externalOpinionStatus ${expectedStatus}`,
|
|
914
|
+
path: ["externalOpinionStatus"]
|
|
915
|
+
});
|
|
916
|
+
}
|
|
917
|
+
if (Object.values(value.stanceCoverage).some((coverage) => coverage !== "not-applicable")) {
|
|
918
|
+
context.addIssue({
|
|
919
|
+
code: "custom",
|
|
920
|
+
message: "fact-only research must mark stance coverage not-applicable",
|
|
921
|
+
path: ["stanceCoverage"]
|
|
922
|
+
});
|
|
923
|
+
}
|
|
924
|
+
return;
|
|
925
|
+
}
|
|
926
|
+
if (value.externalOpinionStatus !== "covered") {
|
|
927
|
+
context.addIssue({
|
|
928
|
+
code: "custom",
|
|
929
|
+
message: "viewpoint-scan research requires covered external opinions",
|
|
930
|
+
path: ["externalOpinionStatus"]
|
|
931
|
+
});
|
|
932
|
+
}
|
|
933
|
+
const opinionSources = value.sources.filter(
|
|
934
|
+
(source) => source.type === "public-opinion" && source.verification === "verified"
|
|
935
|
+
);
|
|
936
|
+
if (opinionSources.length < 3) {
|
|
937
|
+
context.addIssue({
|
|
938
|
+
code: "custom",
|
|
939
|
+
message: "viewpoint-scan research requires at least three verified public opinions",
|
|
940
|
+
path: ["sources"]
|
|
941
|
+
});
|
|
942
|
+
}
|
|
943
|
+
for (const stance of ["support", "supplement"]) {
|
|
944
|
+
if (value.stanceCoverage[stance] !== "covered" || !opinionSources.some((source) => source.stance === stance)) {
|
|
945
|
+
context.addIssue({
|
|
946
|
+
code: "custom",
|
|
947
|
+
message: `viewpoint-scan research requires covered ${stance} material`,
|
|
948
|
+
path: ["stanceCoverage", stance]
|
|
949
|
+
});
|
|
950
|
+
}
|
|
951
|
+
}
|
|
952
|
+
const hasOpposition = opinionSources.some((source) => source.stance === "oppose");
|
|
953
|
+
if (hasOpposition && value.stanceCoverage.oppose !== "covered" || !hasOpposition && value.stanceCoverage.oppose !== "not-found") {
|
|
954
|
+
context.addIssue({
|
|
955
|
+
code: "custom",
|
|
956
|
+
message: "opposition coverage must be covered or explicitly recorded as not-found",
|
|
957
|
+
path: ["stanceCoverage", "oppose"]
|
|
958
|
+
});
|
|
959
|
+
}
|
|
960
|
+
});
|
|
835
961
|
var briefStageArtifactFrontmatterSchema = z5.object({
|
|
836
962
|
dxc: z5.object({
|
|
837
963
|
...contentStageMetadataBaseShape,
|
|
@@ -866,6 +992,7 @@ var articleStageArtifactFrontmatterSchema = z5.object({
|
|
|
866
992
|
quoteSnapshots: z5.array(contentQuoteSnapshotSchema).max(50).default([]),
|
|
867
993
|
stage: z5.literal("article")
|
|
868
994
|
}).strict(),
|
|
995
|
+
dxc_wechat_template_hint: z5.string().trim().min(1).optional(),
|
|
869
996
|
goldenLinesPath: portableRelativePathSchema,
|
|
870
997
|
goldenLinesSha256: z5.string().regex(/^[a-f0-9]{64}$/u),
|
|
871
998
|
tags: z5.array(z5.string().trim().min(1)).default([]),
|
|
@@ -932,6 +1059,7 @@ var qualityReviewStageArtifactFrontmatterSchema = z5.object({
|
|
|
932
1059
|
stage: z5.literal("quality-review")
|
|
933
1060
|
}).strict(),
|
|
934
1061
|
verdict: z5.enum(["pass", "block"]),
|
|
1062
|
+
researchCoverage: z5.enum(["not-applicable", "pass", "warning"]),
|
|
935
1063
|
warningCount: z5.number().int().nonnegative()
|
|
936
1064
|
}).strict().superRefine((value, context) => {
|
|
937
1065
|
if (value.verdict === "pass" && value.blockerCount !== 0) {
|
|
@@ -948,6 +1076,13 @@ var qualityReviewStageArtifactFrontmatterSchema = z5.object({
|
|
|
948
1076
|
path: ["blockerCount"]
|
|
949
1077
|
});
|
|
950
1078
|
}
|
|
1079
|
+
if (value.researchCoverage === "warning" && value.warningCount === 0) {
|
|
1080
|
+
context.addIssue({
|
|
1081
|
+
code: "custom",
|
|
1082
|
+
message: "research coverage warnings must be counted",
|
|
1083
|
+
path: ["warningCount"]
|
|
1084
|
+
});
|
|
1085
|
+
}
|
|
951
1086
|
});
|
|
952
1087
|
var deliveryStageArtifactFrontmatterSchema = z5.object({
|
|
953
1088
|
accountId: z5.uuid(),
|
|
@@ -959,9 +1094,12 @@ var deliveryStageArtifactFrontmatterSchema = z5.object({
|
|
|
959
1094
|
intentId: z5.uuid().nullable(),
|
|
960
1095
|
mediaId: z5.string().trim().min(1).max(256).nullable().optional(),
|
|
961
1096
|
previewExpiresAt: z5.iso.datetime(),
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
1097
|
+
rootSnapshotHash: z5.string().regex(/^[a-f0-9]{64}$/u),
|
|
1098
|
+
rootSnapshotId: z5.uuid(),
|
|
1099
|
+
selectedSnapshotHash: z5.string().regex(/^[a-f0-9]{64}$/u),
|
|
1100
|
+
selectedSnapshotId: z5.uuid(),
|
|
1101
|
+
state: z5.enum(["previewed", "processing", "completed", "requires-attention", "failed"]),
|
|
1102
|
+
templateId: z5.string().regex(/^wechat-[a-z0-9-]+@\d+$/u)
|
|
965
1103
|
}).strict().superRefine((value, context) => {
|
|
966
1104
|
if (value.dxc.artifactStatus === "complete" && (value.state !== "completed" || value.intentId === null || value.mediaId === void 0 || value.mediaId === null)) {
|
|
967
1105
|
context.addIssue({
|
|
@@ -1476,6 +1614,8 @@ var contentProfileErrorResultSchema = z5.object({
|
|
|
1476
1614
|
command: contentProfileCommandSchema,
|
|
1477
1615
|
error: z5.object({
|
|
1478
1616
|
code: z5.enum(["DXC_PROFILE_INPUT_INVALID", "DXC_PROFILE_INVALID", "DXC_PROFILE_IO_FAILED"]),
|
|
1617
|
+
fields: z5.array(z5.string().trim().min(1)).optional(),
|
|
1618
|
+
hint: z5.string().trim().min(1).optional(),
|
|
1479
1619
|
message: z5.string().trim().min(1)
|
|
1480
1620
|
}).strict(),
|
|
1481
1621
|
ok: z5.literal(false)
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createRequire as __dxcCreateRequire } from "node:module"; const require = __dxcCreateRequire(import.meta.url);
|
|
2
2
|
import {
|
|
3
3
|
sourceFetchResultSchema
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-N4CMLINP.js";
|
|
5
5
|
|
|
6
6
|
// apps/cli/src/source.ts
|
|
7
7
|
import { createHash } from "node:crypto";
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { createRequire as __dxcCreateRequire } from "node:module"; const require = __dxcCreateRequire(import.meta.url);
|
|
2
|
+
|
|
3
|
+
// apps/cli/src/user-path.ts
|
|
4
|
+
import path from "node:path";
|
|
5
|
+
function expandHome(input, homeDirectory, pathApi) {
|
|
6
|
+
if (input === "~") {
|
|
7
|
+
return homeDirectory;
|
|
8
|
+
}
|
|
9
|
+
if (input.startsWith("~/") || input.startsWith("~\\")) {
|
|
10
|
+
return pathApi.join(homeDirectory, input.slice(2));
|
|
11
|
+
}
|
|
12
|
+
return input;
|
|
13
|
+
}
|
|
14
|
+
function windowsShellPath(input) {
|
|
15
|
+
const msys = /^\/([a-z])(?:\/(.*))?$/iu.exec(input);
|
|
16
|
+
if (msys !== null) {
|
|
17
|
+
return `${msys[1]?.toUpperCase()}:\\${(msys[2] ?? "").replaceAll("/", "\\")}`;
|
|
18
|
+
}
|
|
19
|
+
const mounted = /^\/(?:cygdrive|mnt)\/([a-z])(?:\/(.*))?$/iu.exec(input);
|
|
20
|
+
if (mounted !== null) {
|
|
21
|
+
return `${mounted[1]?.toUpperCase()}:\\${(mounted[2] ?? "").replaceAll("/", "\\")}`;
|
|
22
|
+
}
|
|
23
|
+
return input;
|
|
24
|
+
}
|
|
25
|
+
function resolveUserPath(options) {
|
|
26
|
+
const platform = options.platform ?? process.platform;
|
|
27
|
+
const pathApi = platform === "win32" ? path.win32 : path.posix;
|
|
28
|
+
const expanded = expandHome(options.input, options.homeDirectory, pathApi);
|
|
29
|
+
if (platform === "win32") {
|
|
30
|
+
return pathApi.resolve(options.currentDirectory, windowsShellPath(expanded));
|
|
31
|
+
}
|
|
32
|
+
return pathApi.resolve(options.currentDirectory, expanded);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export {
|
|
36
|
+
resolveUserPath
|
|
37
|
+
};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { createRequire as __dxcCreateRequire } from "node:module"; const require = __dxcCreateRequire(import.meta.url);
|
|
2
|
+
import {
|
|
3
|
+
resolveUserPath
|
|
4
|
+
} from "./chunk-ZKJQWR2J.js";
|
|
2
5
|
import {
|
|
3
6
|
CONTENT_KNOWLEDGE_CHUNKER_VERSION,
|
|
4
7
|
CONTENT_KNOWLEDGE_EMBEDDING_DIMENSIONS,
|
|
@@ -24,7 +27,7 @@ import {
|
|
|
24
27
|
readPrivateFile,
|
|
25
28
|
writePrivateBuffer,
|
|
26
29
|
writePrivateJson
|
|
27
|
-
} from "./chunk-
|
|
30
|
+
} from "./chunk-N4CMLINP.js";
|
|
28
31
|
|
|
29
32
|
// apps/cli/src/knowledge.ts
|
|
30
33
|
import { createHash as createHash2, randomUUID } from "node:crypto";
|
|
@@ -588,8 +591,8 @@ ${paragraph.text}`;
|
|
|
588
591
|
sha256: sha2562(chunk.body)
|
|
589
592
|
}));
|
|
590
593
|
}
|
|
591
|
-
async function prepareArticle(currentDirectory, inputPath) {
|
|
592
|
-
const absolutePath =
|
|
594
|
+
async function prepareArticle(currentDirectory, homeDirectory, inputPath) {
|
|
595
|
+
const absolutePath = resolveUserPath({ currentDirectory, homeDirectory, input: inputPath });
|
|
593
596
|
const extension = path2.extname(absolutePath).toLowerCase();
|
|
594
597
|
if (!SUPPORTED_EXTENSIONS.has(extension)) {
|
|
595
598
|
throw new KnowledgeCliError(
|
|
@@ -640,8 +643,8 @@ async function prepareArticle(currentDirectory, inputPath) {
|
|
|
640
643
|
title: extractTitle(content, sourceLabel)
|
|
641
644
|
};
|
|
642
645
|
}
|
|
643
|
-
async function directoryArticles(currentDirectory, directoryInput) {
|
|
644
|
-
const root =
|
|
646
|
+
async function directoryArticles(currentDirectory, homeDirectory, directoryInput) {
|
|
647
|
+
const root = resolveUserPath({ currentDirectory, homeDirectory, input: directoryInput });
|
|
645
648
|
let metadata;
|
|
646
649
|
try {
|
|
647
650
|
metadata = await lstat(root);
|
|
@@ -1726,7 +1729,7 @@ var KnowledgeCli = class {
|
|
|
1726
1729
|
for (const file of options.files) {
|
|
1727
1730
|
let article;
|
|
1728
1731
|
try {
|
|
1729
|
-
article = await prepareArticle(this.#currentDirectory, file);
|
|
1732
|
+
article = await prepareArticle(this.#currentDirectory, this.#homeDirectory, file);
|
|
1730
1733
|
} catch (error) {
|
|
1731
1734
|
const skippedItem = skippedArticle(error, file);
|
|
1732
1735
|
if (skippedItem !== void 0) {
|
|
@@ -1782,7 +1785,7 @@ var KnowledgeCli = class {
|
|
|
1782
1785
|
}
|
|
1783
1786
|
async importDirectory(directory, lexicalOnly) {
|
|
1784
1787
|
return this.importArticles({
|
|
1785
|
-
files: await directoryArticles(this.#currentDirectory, directory),
|
|
1788
|
+
files: await directoryArticles(this.#currentDirectory, this.#homeDirectory, directory),
|
|
1786
1789
|
lexicalOnly
|
|
1787
1790
|
});
|
|
1788
1791
|
}
|
|
@@ -2,7 +2,7 @@ import { createRequire as __dxcCreateRequire } from "node:module"; const require
|
|
|
2
2
|
import {
|
|
3
3
|
SourceCli,
|
|
4
4
|
SourceCliError
|
|
5
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-NAL5UOUZ.js";
|
|
6
6
|
import {
|
|
7
7
|
CONTENT_MONITOR_SCHEMA_VERSION,
|
|
8
8
|
LocalStateError,
|
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
contentMonitorStatusResultSchema,
|
|
15
15
|
ensurePrivateRegularFile,
|
|
16
16
|
sourceFetchKindSchema
|
|
17
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-N4CMLINP.js";
|
|
18
18
|
|
|
19
19
|
// apps/cli/src/monitor.ts
|
|
20
20
|
import { createHash, randomUUID as systemRandomUUID } from "node:crypto";
|