@harness-engineering/cli 1.16.0 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agents/skills/claude-code/harness-roadmap-pilot/SKILL.md +204 -0
- package/dist/agents/skills/claude-code/harness-roadmap-pilot/skill.yaml +52 -0
- package/dist/agents/skills/codex/harness-roadmap-pilot/SKILL.md +204 -0
- package/dist/agents/skills/codex/harness-roadmap-pilot/skill.yaml +52 -0
- package/dist/agents/skills/cursor/harness-roadmap-pilot/SKILL.md +204 -0
- package/dist/agents/skills/cursor/harness-roadmap-pilot/skill.yaml +52 -0
- package/dist/agents/skills/gemini-cli/harness-roadmap-pilot/SKILL.md +204 -0
- package/dist/agents/skills/gemini-cli/harness-roadmap-pilot/skill.yaml +52 -0
- package/dist/agents/skills/package.json +5 -5
- package/dist/{agents-md-VYDFPIRW.js → agents-md-DUYNKHJZ.js} +1 -1
- package/dist/{architecture-K5HSRBGB.js → architecture-UBO5KKUV.js} +2 -2
- package/dist/bin/harness-mcp.js +12 -12
- package/dist/bin/harness.js +15 -15
- package/dist/{check-phase-gate-5AS6SXL6.js → check-phase-gate-OSHN2AEL.js} +3 -3
- package/dist/{chunk-JOP2NDNB.js → chunk-2DMIQ35P.js} +151 -79
- package/dist/{chunk-TF6ZLHJV.js → chunk-5FM64G6D.js} +2 -2
- package/dist/{chunk-5ZXHMCPL.js → chunk-ABQUCXRE.js} +2 -1
- package/dist/{chunk-AV6KMDO5.js → chunk-APNPXLB2.js} +4 -4
- package/dist/{chunk-FTMXDOR6.js → chunk-CZZXE6BL.js} +1 -1
- package/dist/{chunk-SFRGPAK6.js → chunk-GWXP3JVA.js} +3 -3
- package/dist/{chunk-SHYWICGA.js → chunk-OA3MOZGG.js} +22 -22
- package/dist/{chunk-RWZPHW4H.js → chunk-OHZVGIPE.js} +9 -9
- package/dist/{chunk-C7DTKLPW.js → chunk-QSRRBNLY.js} +8 -8
- package/dist/{chunk-QDF7COPQ.js → chunk-TG7IUJ3J.js} +1 -1
- package/dist/{chunk-DNDBFIZN.js → chunk-TZIHFNEG.js} +7 -7
- package/dist/{chunk-ZJMU7MEV.js → chunk-UX3JHYEA.js} +1 -1
- package/dist/{chunk-ALFKNAZW.js → chunk-VF23UTNB.js} +545 -36
- package/dist/{chunk-7MJAPE3Z.js → chunk-YLN34N65.js} +1 -0
- package/dist/{chunk-OCDDCGDE.js → chunk-ZA2I7S3E.js} +20 -1
- package/dist/{ci-workflow-CRWU723U.js → ci-workflow-FJZMNZPT.js} +1 -1
- package/dist/{dist-4LPXJYVZ.js → dist-MF5BK5AD.js} +19 -1
- package/dist/{dist-B26DFXMP.js → dist-U7EAO6T2.js} +110 -60
- package/dist/{docs-4JRHTLUZ.js → docs-WZHW4N4P.js} +3 -3
- package/dist/{engine-3G3VIM6L.js → engine-VS6ZJ2VZ.js} +2 -2
- package/dist/{entropy-G6CZ2A6P.js → entropy-FCIGJIIT.js} +2 -2
- package/dist/{feedback-QYKQ65HB.js → feedback-O3FYTZIE.js} +1 -1
- package/dist/{generate-agent-definitions-SAAOAPT4.js → generate-agent-definitions-EYG263XD.js} +1 -1
- package/dist/{graph-loader-2M2HXDQI.js → graph-loader-KMHDQYDT.js} +1 -1
- package/dist/index.d.ts +62 -3
- package/dist/index.js +15 -15
- package/dist/{loader-VCOK3PF7.js → loader-B4XWX4K6.js} +1 -1
- package/dist/{mcp-YENEPHBW.js → mcp-DVVUODN7.js} +12 -12
- package/dist/{performance-UBCFI2UP.js → performance-NMJDV6HF.js} +3 -3
- package/dist/{review-pipeline-IQAVCWAX.js → review-pipeline-MSEJWTKM.js} +1 -1
- package/dist/{runtime-PYFFIESU.js → runtime-YHVLJNPG.js} +1 -1
- package/dist/{security-ZDADTPYW.js → security-HTDKKGMX.js} +1 -1
- package/dist/{validate-VRTUHALQ.js → validate-SPSTH2YW.js} +2 -2
- package/dist/{validate-cross-check-4Y6NHNK3.js → validate-cross-check-YTDWIMFI.js} +1 -1
- package/package.json +20 -21
package/dist/index.d.ts
CHANGED
|
@@ -309,9 +309,6 @@ declare const logger: {
|
|
|
309
309
|
raw: (data: unknown) => void;
|
|
310
310
|
};
|
|
311
311
|
|
|
312
|
-
/**
|
|
313
|
-
* The main Harness configuration schema.
|
|
314
|
-
*/
|
|
315
312
|
declare const HarnessConfigSchema: z.ZodObject<{
|
|
316
313
|
/** Configuration schema version */
|
|
317
314
|
version: z.ZodLiteral<1>;
|
|
@@ -743,6 +740,50 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
743
740
|
neverSuggest?: string[] | undefined;
|
|
744
741
|
tierOverrides?: Record<string, number> | undefined;
|
|
745
742
|
}>>;
|
|
743
|
+
/** Roadmap sync and tracker integration settings */
|
|
744
|
+
roadmap: z.ZodOptional<z.ZodObject<{
|
|
745
|
+
/** External tracker sync settings */
|
|
746
|
+
tracker: z.ZodOptional<z.ZodObject<{
|
|
747
|
+
/** Tracker kind — currently only 'github' is supported */
|
|
748
|
+
kind: z.ZodLiteral<"github">;
|
|
749
|
+
/** Repository in "owner/repo" format */
|
|
750
|
+
repo: z.ZodOptional<z.ZodString>;
|
|
751
|
+
/** Labels auto-applied to synced issues for filtering */
|
|
752
|
+
labels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
753
|
+
/** Maps roadmap status -> external status */
|
|
754
|
+
statusMap: z.ZodRecord<z.ZodEnum<["backlog", "planned", "in-progress", "done", "blocked"]>, z.ZodString>;
|
|
755
|
+
/** Maps external status (optionally with label) -> roadmap status */
|
|
756
|
+
reverseStatusMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
757
|
+
}, "strip", z.ZodTypeAny, {
|
|
758
|
+
kind: "github";
|
|
759
|
+
statusMap: Partial<Record<"backlog" | "planned" | "in-progress" | "done" | "blocked", string>>;
|
|
760
|
+
repo?: string | undefined;
|
|
761
|
+
labels?: string[] | undefined;
|
|
762
|
+
reverseStatusMap?: Record<string, string> | undefined;
|
|
763
|
+
}, {
|
|
764
|
+
kind: "github";
|
|
765
|
+
statusMap: Partial<Record<"backlog" | "planned" | "in-progress" | "done" | "blocked", string>>;
|
|
766
|
+
repo?: string | undefined;
|
|
767
|
+
labels?: string[] | undefined;
|
|
768
|
+
reverseStatusMap?: Record<string, string> | undefined;
|
|
769
|
+
}>>;
|
|
770
|
+
}, "strip", z.ZodTypeAny, {
|
|
771
|
+
tracker?: {
|
|
772
|
+
kind: "github";
|
|
773
|
+
statusMap: Partial<Record<"backlog" | "planned" | "in-progress" | "done" | "blocked", string>>;
|
|
774
|
+
repo?: string | undefined;
|
|
775
|
+
labels?: string[] | undefined;
|
|
776
|
+
reverseStatusMap?: Record<string, string> | undefined;
|
|
777
|
+
} | undefined;
|
|
778
|
+
}, {
|
|
779
|
+
tracker?: {
|
|
780
|
+
kind: "github";
|
|
781
|
+
statusMap: Partial<Record<"backlog" | "planned" | "in-progress" | "done" | "blocked", string>>;
|
|
782
|
+
repo?: string | undefined;
|
|
783
|
+
labels?: string[] | undefined;
|
|
784
|
+
reverseStatusMap?: Record<string, string> | undefined;
|
|
785
|
+
} | undefined;
|
|
786
|
+
}>>;
|
|
746
787
|
/** How often (in ms) to check for CLI updates */
|
|
747
788
|
updateCheckInterval: z.ZodOptional<z.ZodNumber>;
|
|
748
789
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -864,6 +905,15 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
864
905
|
enabled: boolean;
|
|
865
906
|
baselinePath: string;
|
|
866
907
|
} | undefined;
|
|
908
|
+
roadmap?: {
|
|
909
|
+
tracker?: {
|
|
910
|
+
kind: "github";
|
|
911
|
+
statusMap: Partial<Record<"backlog" | "planned" | "in-progress" | "done" | "blocked", string>>;
|
|
912
|
+
repo?: string | undefined;
|
|
913
|
+
labels?: string[] | undefined;
|
|
914
|
+
reverseStatusMap?: Record<string, string> | undefined;
|
|
915
|
+
} | undefined;
|
|
916
|
+
} | undefined;
|
|
867
917
|
updateCheckInterval?: number | undefined;
|
|
868
918
|
}, {
|
|
869
919
|
version: 1;
|
|
@@ -984,6 +1034,15 @@ declare const HarnessConfigSchema: z.ZodObject<{
|
|
|
984
1034
|
enabled?: boolean | undefined;
|
|
985
1035
|
baselinePath?: string | undefined;
|
|
986
1036
|
} | undefined;
|
|
1037
|
+
roadmap?: {
|
|
1038
|
+
tracker?: {
|
|
1039
|
+
kind: "github";
|
|
1040
|
+
statusMap: Partial<Record<"backlog" | "planned" | "in-progress" | "done" | "blocked", string>>;
|
|
1041
|
+
repo?: string | undefined;
|
|
1042
|
+
labels?: string[] | undefined;
|
|
1043
|
+
reverseStatusMap?: Record<string, string> | undefined;
|
|
1044
|
+
} | undefined;
|
|
1045
|
+
} | undefined;
|
|
987
1046
|
updateCheckInterval?: number | undefined;
|
|
988
1047
|
}>;
|
|
989
1048
|
/**
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
runScan,
|
|
13
13
|
runUninstall,
|
|
14
14
|
runUninstallConstraints
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-OA3MOZGG.js";
|
|
16
16
|
import {
|
|
17
17
|
generateCIWorkflow
|
|
18
18
|
} from "./chunk-SD3SQOZ2.js";
|
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
OutputFormatter,
|
|
21
21
|
OutputMode,
|
|
22
22
|
runCheckPhaseGate
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-ABQUCXRE.js";
|
|
24
24
|
import {
|
|
25
25
|
AGENT_DESCRIPTIONS,
|
|
26
26
|
DEFAULT_TOOLS,
|
|
@@ -63,23 +63,23 @@ import {
|
|
|
63
63
|
generateSlashCommands,
|
|
64
64
|
getToolDefinitions,
|
|
65
65
|
startServer
|
|
66
|
-
} from "./chunk-
|
|
67
|
-
import "./chunk-
|
|
68
|
-
import "./chunk-
|
|
69
|
-
import "./chunk-
|
|
70
|
-
import "./chunk-
|
|
71
|
-
import "./chunk-
|
|
66
|
+
} from "./chunk-2DMIQ35P.js";
|
|
67
|
+
import "./chunk-APNPXLB2.js";
|
|
68
|
+
import "./chunk-TZIHFNEG.js";
|
|
69
|
+
import "./chunk-OHZVGIPE.js";
|
|
70
|
+
import "./chunk-TG7IUJ3J.js";
|
|
71
|
+
import "./chunk-UX3JHYEA.js";
|
|
72
72
|
import "./chunk-CJDVBBPB.js";
|
|
73
|
-
import "./chunk-
|
|
74
|
-
import "./chunk-
|
|
75
|
-
import "./chunk-
|
|
73
|
+
import "./chunk-5FM64G6D.js";
|
|
74
|
+
import "./chunk-CZZXE6BL.js";
|
|
75
|
+
import "./chunk-GWXP3JVA.js";
|
|
76
76
|
import "./chunk-H7Y5CKTM.js";
|
|
77
|
-
import "./chunk-
|
|
77
|
+
import "./chunk-QSRRBNLY.js";
|
|
78
78
|
import {
|
|
79
79
|
findConfigFile,
|
|
80
80
|
loadConfig,
|
|
81
81
|
resolveConfig
|
|
82
|
-
} from "./chunk-
|
|
82
|
+
} from "./chunk-ZA2I7S3E.js";
|
|
83
83
|
import "./chunk-IDZNPTYD.js";
|
|
84
84
|
import "./chunk-W6Y7ZW3Y.js";
|
|
85
85
|
import "./chunk-N5G5QMS3.js";
|
|
@@ -95,8 +95,8 @@ import {
|
|
|
95
95
|
} from "./chunk-GZKSBLQL.js";
|
|
96
96
|
import {
|
|
97
97
|
TemplateEngine
|
|
98
|
-
} from "./chunk-
|
|
99
|
-
import "./chunk-
|
|
98
|
+
} from "./chunk-YLN34N65.js";
|
|
99
|
+
import "./chunk-VF23UTNB.js";
|
|
100
100
|
import "./chunk-ERS5EVUZ.js";
|
|
101
101
|
export {
|
|
102
102
|
AGENT_DESCRIPTIONS,
|
|
@@ -2,21 +2,21 @@ import {
|
|
|
2
2
|
createHarnessServer,
|
|
3
3
|
getToolDefinitions,
|
|
4
4
|
startServer
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
10
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-2DMIQ35P.js";
|
|
6
|
+
import "./chunk-APNPXLB2.js";
|
|
7
|
+
import "./chunk-TZIHFNEG.js";
|
|
8
|
+
import "./chunk-OHZVGIPE.js";
|
|
9
|
+
import "./chunk-TG7IUJ3J.js";
|
|
10
|
+
import "./chunk-UX3JHYEA.js";
|
|
11
11
|
import "./chunk-CJDVBBPB.js";
|
|
12
|
-
import "./chunk-
|
|
13
|
-
import "./chunk-
|
|
14
|
-
import "./chunk-
|
|
12
|
+
import "./chunk-5FM64G6D.js";
|
|
13
|
+
import "./chunk-CZZXE6BL.js";
|
|
14
|
+
import "./chunk-GWXP3JVA.js";
|
|
15
15
|
import {
|
|
16
16
|
resolveProjectConfig
|
|
17
17
|
} from "./chunk-H7Y5CKTM.js";
|
|
18
|
-
import "./chunk-
|
|
19
|
-
import "./chunk-
|
|
18
|
+
import "./chunk-QSRRBNLY.js";
|
|
19
|
+
import "./chunk-ZA2I7S3E.js";
|
|
20
20
|
import {
|
|
21
21
|
resultToMcpResponse
|
|
22
22
|
} from "./chunk-IDZNPTYD.js";
|
|
@@ -24,7 +24,7 @@ import "./chunk-W6Y7ZW3Y.js";
|
|
|
24
24
|
import "./chunk-N5G5QMS3.js";
|
|
25
25
|
import "./chunk-3WGJMBKH.js";
|
|
26
26
|
import "./chunk-HKUX2X7O.js";
|
|
27
|
-
import "./chunk-
|
|
27
|
+
import "./chunk-VF23UTNB.js";
|
|
28
28
|
import "./chunk-ERS5EVUZ.js";
|
|
29
29
|
export {
|
|
30
30
|
createHarnessServer,
|
|
@@ -7,12 +7,12 @@ import {
|
|
|
7
7
|
handleGetPerfBaselines,
|
|
8
8
|
handleUpdatePerfBaselines,
|
|
9
9
|
updatePerfBaselinesDefinition
|
|
10
|
-
} from "./chunk-
|
|
11
|
-
import "./chunk-
|
|
10
|
+
} from "./chunk-TZIHFNEG.js";
|
|
11
|
+
import "./chunk-ZA2I7S3E.js";
|
|
12
12
|
import "./chunk-IDZNPTYD.js";
|
|
13
13
|
import "./chunk-W6Y7ZW3Y.js";
|
|
14
14
|
import "./chunk-3WGJMBKH.js";
|
|
15
|
-
import "./chunk-
|
|
15
|
+
import "./chunk-VF23UTNB.js";
|
|
16
16
|
import "./chunk-ERS5EVUZ.js";
|
|
17
17
|
export {
|
|
18
18
|
checkPerformanceDefinition,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
handleValidateProject,
|
|
3
3
|
validateToolDefinition
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-5FM64G6D.js";
|
|
5
5
|
import "./chunk-H7Y5CKTM.js";
|
|
6
6
|
import "./chunk-W6Y7ZW3Y.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-VF23UTNB.js";
|
|
8
8
|
import "./chunk-ERS5EVUZ.js";
|
|
9
9
|
export {
|
|
10
10
|
handleValidateProject,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harness-engineering/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "CLI for Harness Engineering toolkit",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,33 +22,32 @@
|
|
|
22
22
|
"README.md"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@clack/prompts": "^0.9.
|
|
26
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
27
|
-
"@typescript-eslint/typescript-estree": "^7.
|
|
28
|
-
"chalk": "^5.
|
|
29
|
-
"commander": "^12.
|
|
25
|
+
"@clack/prompts": "^0.9.1",
|
|
26
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
27
|
+
"@typescript-eslint/typescript-estree": "^7.18.0",
|
|
28
|
+
"chalk": "^5.6.2",
|
|
29
|
+
"commander": "^12.1.0",
|
|
30
30
|
"ejs": "^3.1.10",
|
|
31
|
-
"glob": "^11.
|
|
32
|
-
"handlebars": "^4.7.
|
|
33
|
-
"
|
|
34
|
-
"minimatch": "^10.2.4",
|
|
31
|
+
"glob": "^11.1.0",
|
|
32
|
+
"handlebars": "^4.7.9",
|
|
33
|
+
"minimatch": "^10.2.5",
|
|
35
34
|
"semver": "^7.7.4",
|
|
36
|
-
"tree-sitter-wasms": "
|
|
35
|
+
"tree-sitter-wasms": "0.1.13",
|
|
37
36
|
"web-tree-sitter": "^0.24.7",
|
|
38
|
-
"yaml": "^2.3
|
|
39
|
-
"zod": "^3.
|
|
40
|
-
"@harness-engineering/
|
|
41
|
-
"@harness-engineering/
|
|
37
|
+
"yaml": "^2.8.3",
|
|
38
|
+
"zod": "^3.25.76",
|
|
39
|
+
"@harness-engineering/core": "0.17.0",
|
|
40
|
+
"@harness-engineering/graph": "0.3.5",
|
|
42
41
|
"@harness-engineering/linter-gen": "0.1.4",
|
|
43
|
-
"@harness-engineering/orchestrator": "0.2.
|
|
44
|
-
"@harness-engineering/types": "0.
|
|
42
|
+
"@harness-engineering/orchestrator": "0.2.5",
|
|
43
|
+
"@harness-engineering/types": "0.7.0"
|
|
45
44
|
},
|
|
46
45
|
"devDependencies": {
|
|
47
|
-
"@types/node": "^22.
|
|
46
|
+
"@types/node": "^22.19.15",
|
|
48
47
|
"@types/semver": "^7.7.1",
|
|
49
|
-
"@vitest/coverage-v8": "^4.
|
|
50
|
-
"tsup": "^8.
|
|
51
|
-
"vitest": "^4.
|
|
48
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
49
|
+
"tsup": "^8.5.1",
|
|
50
|
+
"vitest": "^4.1.2"
|
|
52
51
|
},
|
|
53
52
|
"license": "MIT",
|
|
54
53
|
"publishConfig": {
|