@harness-engineering/cli 1.11.0 → 1.12.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.
Files changed (35) hide show
  1. package/dist/{agents-md-ZFV6RR5J.js → agents-md-KIS2RSMG.js} +1 -1
  2. package/dist/{architecture-EXNUMH5R.js → architecture-AJAUDRQQ.js} +2 -2
  3. package/dist/bin/harness-mcp.js +10 -10
  4. package/dist/bin/harness.js +12 -12
  5. package/dist/{check-phase-gate-VZFOY2PO.js → check-phase-gate-K7QCSYRJ.js} +2 -2
  6. package/dist/{chunk-GSIVNYVJ.js → chunk-2SWJ4VO7.js} +4 -4
  7. package/dist/{chunk-I6JZYEGT.js → chunk-747VBPA4.js} +41 -41
  8. package/dist/{chunk-2YSQOUHO.js → chunk-AE2OWWDH.js} +72 -30
  9. package/dist/{chunk-ZWC3MN5E.js → chunk-B5SBNH4S.js} +705 -203
  10. package/dist/{chunk-NC6PXVWT.js → chunk-CTTFXXKJ.js} +3 -3
  11. package/dist/{chunk-X3MN5UQJ.js → chunk-EAURF4LH.js} +1 -1
  12. package/dist/{chunk-PA2XHK75.js → chunk-FLOEMHDF.js} +3 -3
  13. package/dist/{chunk-Z75JC6I2.js → chunk-JLXOEO5C.js} +2 -2
  14. package/dist/{chunk-TI4TGEX6.js → chunk-OIGVQF5V.js} +1 -1
  15. package/dist/{chunk-WUJTCNOU.js → chunk-TJVVU3HB.js} +1 -1
  16. package/dist/{chunk-WJZDO6OY.js → chunk-YXOG2277.js} +2 -2
  17. package/dist/{chunk-2NCIKJES.js → chunk-ZU2UBYBY.js} +1 -1
  18. package/dist/{ci-workflow-K5RCRNYR.js → ci-workflow-NBL4OT4A.js} +1 -1
  19. package/dist/{dist-JVZ2MKBC.js → dist-IJ4J4C5G.js} +3 -1
  20. package/dist/{docs-PWCUVYWU.js → docs-CPTMH3VY.js} +2 -2
  21. package/dist/{engine-6XUP6GAK.js → engine-BUWPAAGD.js} +1 -1
  22. package/dist/{entropy-4I6JEYAC.js → entropy-Z4FYVQ7L.js} +2 -2
  23. package/dist/{feedback-TNIW534S.js → feedback-TT6WF5YX.js} +1 -1
  24. package/dist/{generate-agent-definitions-MWKEA5NU.js → generate-agent-definitions-J5HANRNR.js} +1 -1
  25. package/dist/index.d.ts +39 -2
  26. package/dist/index.js +17 -13
  27. package/dist/{loader-4FIPIFII.js → loader-PCU5YWRH.js} +1 -1
  28. package/dist/{mcp-MOKLYNZL.js → mcp-YM6QLHLZ.js} +10 -10
  29. package/dist/{performance-BTOJCPXU.js → performance-YJVXOKIB.js} +2 -2
  30. package/dist/{review-pipeline-3YTW3463.js → review-pipeline-KGMIMLIE.js} +1 -1
  31. package/dist/{runtime-GO7K2PJE.js → runtime-F6R27LD6.js} +1 -1
  32. package/dist/{security-4P2GGFF6.js → security-MX5VVXBC.js} +1 -1
  33. package/dist/{validate-JN44D2Q7.js → validate-EFNMSFKD.js} +2 -2
  34. package/dist/{validate-cross-check-DB7RIFFF.js → validate-cross-check-LJX65SBS.js} +1 -1
  35. package/package.json +3 -3
@@ -32,12 +32,12 @@ async function handleCheckDocs(input) {
32
32
  const projectPath = sanitizePath(input.path);
33
33
  const scope = input.scope ?? "coverage";
34
34
  if (scope === "integrity") {
35
- const { validateKnowledgeMap } = await import("./dist-JVZ2MKBC.js");
35
+ const { validateKnowledgeMap } = await import("./dist-IJ4J4C5G.js");
36
36
  const result2 = await validateKnowledgeMap(projectPath);
37
37
  return resultToMcpResponse(result2);
38
38
  }
39
39
  if (scope === "all") {
40
- const { checkDocCoverage: checkDocCoverage2, validateKnowledgeMap } = await import("./dist-JVZ2MKBC.js");
40
+ const { checkDocCoverage: checkDocCoverage2, validateKnowledgeMap } = await import("./dist-IJ4J4C5G.js");
41
41
  const domain2 = input.domain ?? "src";
42
42
  const { loadGraphStore: loadGraphStore2 } = await import("./graph-loader-KO4GJ5N2.js");
43
43
  const store2 = await loadGraphStore2(projectPath);
@@ -76,7 +76,7 @@ async function handleCheckDocs(input) {
76
76
  }
77
77
  return resultToMcpResponse(Ok({ coverage, integrity }));
78
78
  }
79
- const { checkDocCoverage } = await import("./dist-JVZ2MKBC.js");
79
+ const { checkDocCoverage } = await import("./dist-IJ4J4C5G.js");
80
80
  const domain = input.domain ?? "src";
81
81
  const { loadGraphStore } = await import("./graph-loader-KO4GJ5N2.js");
82
82
  const store = await loadGraphStore(projectPath);
@@ -26,7 +26,7 @@ var runSecurityScanDefinition = {
26
26
  };
27
27
  async function handleRunSecurityScan(input) {
28
28
  try {
29
- const core = await import("./dist-JVZ2MKBC.js");
29
+ const core = await import("./dist-IJ4J4C5G.js");
30
30
  const projectRoot = sanitizePath(input.path);
31
31
  let configData = {};
32
32
  try {
@@ -33,7 +33,7 @@ var createSelfReviewDefinition = {
33
33
  };
34
34
  async function handleCreateSelfReview(input) {
35
35
  try {
36
- const { parseDiff, createSelfReview } = await import("./dist-JVZ2MKBC.js");
36
+ const { parseDiff, createSelfReview } = await import("./dist-IJ4J4C5G.js");
37
37
  const parseResult = parseDiff(input.diff);
38
38
  if (!parseResult.ok) {
39
39
  return resultToMcpResponse(parseResult);
@@ -119,7 +119,7 @@ var analyzeDiffDefinition = {
119
119
  };
120
120
  async function handleAnalyzeDiff(input) {
121
121
  try {
122
- const { parseDiff, analyzeDiff } = await import("./dist-JVZ2MKBC.js");
122
+ const { parseDiff, analyzeDiff } = await import("./dist-IJ4J4C5G.js");
123
123
  const parseResult = parseDiff(input.diff);
124
124
  if (!parseResult.ok) {
125
125
  return resultToMcpResponse(parseResult);
@@ -195,7 +195,7 @@ var requestPeerReviewDefinition = {
195
195
  };
196
196
  async function handleRequestPeerReview(input) {
197
197
  try {
198
- const { parseDiff, requestPeerReview } = await import("./dist-JVZ2MKBC.js");
198
+ const { parseDiff, requestPeerReview } = await import("./dist-IJ4J4C5G.js");
199
199
  const parseResult = parseDiff(input.diff);
200
200
  if (!parseResult.ok) {
201
201
  return resultToMcpResponse(parseResult);
@@ -84,7 +84,7 @@ var detectEntropyDefinition = {
84
84
  };
85
85
  async function handleDetectEntropy(input) {
86
86
  try {
87
- const { EntropyAnalyzer } = await import("./dist-JVZ2MKBC.js");
87
+ const { EntropyAnalyzer } = await import("./dist-IJ4J4C5G.js");
88
88
  const typeFilter = input.type ?? "all";
89
89
  const analyzer = new EntropyAnalyzer({
90
90
  rootDir: sanitizePath(input.path),
@@ -144,7 +144,7 @@ async function handleDetectEntropy(input) {
144
144
  return resultToMcpResponse(result);
145
145
  }
146
146
  if (!result.ok) return resultToMcpResponse(result);
147
- const { createFixes, applyFixes, generateSuggestions } = await import("./dist-JVZ2MKBC.js");
147
+ const { createFixes, applyFixes, generateSuggestions } = await import("./dist-IJ4J4C5G.js");
148
148
  const report = result.value;
149
149
  const deadCode = report.deadCode;
150
150
  const fixTypesConfig = input.fixTypes ? { fixTypes: input.fixTypes } : void 0;
@@ -38,7 +38,7 @@ async function handleCheckDependencies(input) {
38
38
  const configResult = resolveProjectConfig(projectPath);
39
39
  if (!configResult.ok) return resultToMcpResponse(configResult);
40
40
  try {
41
- const { validateDependencies, TypeScriptParser } = await import("./dist-JVZ2MKBC.js");
41
+ const { validateDependencies, TypeScriptParser } = await import("./dist-IJ4J4C5G.js");
42
42
  const config = configResult.value;
43
43
  const rawLayers = Array.isArray(config.layers) ? config.layers : [];
44
44
  const layers = rawLayers.map((l) => ({
@@ -45,7 +45,7 @@ var runCodeReviewDefinition = {
45
45
  };
46
46
  async function handleRunCodeReview(input) {
47
47
  try {
48
- const { parseDiff, runReviewPipeline } = await import("./dist-JVZ2MKBC.js");
48
+ const { parseDiff, runReviewPipeline } = await import("./dist-IJ4J4C5G.js");
49
49
  const parseResult = parseDiff(input.diff);
50
50
  if (!parseResult.ok) {
51
51
  return {
@@ -49,7 +49,7 @@ async function handleValidateProject(input) {
49
49
  checks.config = "pass";
50
50
  const config = configResult.value;
51
51
  try {
52
- const core = await import("./dist-JVZ2MKBC.js");
52
+ const core = await import("./dist-IJ4J4C5G.js");
53
53
  if (typeof core.validateFileStructure === "function" && Array.isArray(config.conventions)) {
54
54
  const conventions = config.conventions;
55
55
  const structureResult = await core.validateFileStructure(projectPath, conventions);
@@ -68,7 +68,7 @@ async function handleValidateProject(input) {
68
68
  } catch {
69
69
  }
70
70
  try {
71
- const core = await import("./dist-JVZ2MKBC.js");
71
+ const core = await import("./dist-IJ4J4C5G.js");
72
72
  if (typeof core.validateAgentsMap === "function") {
73
73
  const agentsMapPath = path.join(projectPath, "AGENTS.md");
74
74
  const agentsResult = await core.validateAgentsMap(agentsMapPath);
@@ -7,7 +7,7 @@ import {
7
7
  } from "./chunk-3WGJMBKH.js";
8
8
  import {
9
9
  ArchConfigSchema
10
- } from "./chunk-2YSQOUHO.js";
10
+ } from "./chunk-AE2OWWDH.js";
11
11
  import {
12
12
  Err,
13
13
  Ok
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  generateCIWorkflow
3
3
  } from "./chunk-VUCPTQ6G.js";
4
- import "./chunk-2YSQOUHO.js";
4
+ import "./chunk-AE2OWWDH.js";
5
5
  import "./chunk-MHBMTPW7.js";
6
6
  export {
7
7
  generateCIWorkflow
@@ -164,6 +164,7 @@ import {
164
164
  reactRules,
165
165
  readCheckState,
166
166
  readLockfile,
167
+ removeContributions,
167
168
  removeProvenance,
168
169
  requestMultiplePeerReviews,
169
170
  requestPeerReview,
@@ -210,7 +211,7 @@ import {
210
211
  writeConfig,
211
212
  writeLockfile,
212
213
  xssRules
213
- } from "./chunk-2YSQOUHO.js";
214
+ } from "./chunk-AE2OWWDH.js";
214
215
  import {
215
216
  Err,
216
217
  Ok,
@@ -389,6 +390,7 @@ export {
389
390
  reactRules,
390
391
  readCheckState,
391
392
  readLockfile,
393
+ removeContributions,
392
394
  removeProvenance,
393
395
  requestMultiplePeerReviews,
394
396
  requestPeerReview,
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  checkDocsDefinition,
3
3
  handleCheckDocs
4
- } from "./chunk-NC6PXVWT.js";
4
+ } from "./chunk-CTTFXXKJ.js";
5
5
  import "./chunk-IDZNPTYD.js";
6
6
  import "./chunk-W6Y7ZW3Y.js";
7
- import "./chunk-2YSQOUHO.js";
7
+ import "./chunk-AE2OWWDH.js";
8
8
  import "./chunk-MHBMTPW7.js";
9
9
  export {
10
10
  checkDocsDefinition,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  TemplateEngine
3
3
  } from "./chunk-C2ERUR3L.js";
4
- import "./chunk-2YSQOUHO.js";
4
+ import "./chunk-AE2OWWDH.js";
5
5
  import "./chunk-MHBMTPW7.js";
6
6
  export {
7
7
  TemplateEngine
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  detectEntropyDefinition,
3
3
  handleDetectEntropy
4
- } from "./chunk-Z75JC6I2.js";
4
+ } from "./chunk-JLXOEO5C.js";
5
5
  import "./chunk-IDZNPTYD.js";
6
6
  import "./chunk-W6Y7ZW3Y.js";
7
- import "./chunk-2YSQOUHO.js";
7
+ import "./chunk-AE2OWWDH.js";
8
8
  import "./chunk-MHBMTPW7.js";
9
9
  export {
10
10
  detectEntropyDefinition,
@@ -5,7 +5,7 @@ import {
5
5
  handleCreateSelfReview,
6
6
  handleRequestPeerReview,
7
7
  requestPeerReviewDefinition
8
- } from "./chunk-PA2XHK75.js";
8
+ } from "./chunk-FLOEMHDF.js";
9
9
  import "./chunk-IDZNPTYD.js";
10
10
  import "./chunk-W6Y7ZW3Y.js";
11
11
  export {
@@ -7,7 +7,7 @@ import "./chunk-KET4QQZB.js";
7
7
  import "./chunk-ZOAWBDWU.js";
8
8
  import "./chunk-HD4IBGLA.js";
9
9
  import "./chunk-3WGJMBKH.js";
10
- import "./chunk-2YSQOUHO.js";
10
+ import "./chunk-AE2OWWDH.js";
11
11
  import "./chunk-MHBMTPW7.js";
12
12
  export {
13
13
  createGenerateAgentDefinitionsCommand,
package/dist/index.d.ts CHANGED
@@ -1,8 +1,9 @@
1
1
  import { Command } from 'commander';
2
2
  import { ContextQLResult, IngestResult } from '@harness-engineering/graph';
3
- import { Result, Violation } from '@harness-engineering/core';
3
+ import { Result, Violation, ConflictReport } from '@harness-engineering/core';
4
4
  import { z } from 'zod';
5
5
  import { Server } from '@modelcontextprotocol/sdk/server/index.js';
6
+ import { Result as Result$1 } from '@harness-engineering/types';
6
7
 
7
8
  interface Phase {
8
9
  name: string;
@@ -1265,6 +1266,10 @@ declare function startServer(): Promise<void>;
1265
1266
  interface InstallOptions {
1266
1267
  version?: string;
1267
1268
  force?: boolean;
1269
+ from?: string;
1270
+ registry?: string;
1271
+ /** Internal: tracks which package triggered this install (for transitive deps) */
1272
+ _dependencyOf?: string | null;
1268
1273
  }
1269
1274
  interface InstallResult {
1270
1275
  installed: boolean;
@@ -1277,6 +1282,38 @@ interface InstallResult {
1277
1282
  }
1278
1283
  declare function runInstall(skillName: string, options: InstallOptions): Promise<InstallResult>;
1279
1284
 
1285
+ interface InstallConstraintsOptions {
1286
+ source: string;
1287
+ configPath: string;
1288
+ lockfilePath: string;
1289
+ forceLocal?: boolean;
1290
+ forcePackage?: boolean;
1291
+ dryRun?: boolean;
1292
+ }
1293
+ interface InstallConstraintsSuccess {
1294
+ installed: boolean;
1295
+ packageName: string;
1296
+ version: string;
1297
+ contributionsCount: number;
1298
+ conflicts: ConflictReport[];
1299
+ alreadyInstalled?: boolean;
1300
+ dryRun?: boolean;
1301
+ }
1302
+ declare function runInstallConstraints(options: InstallConstraintsOptions): Promise<Result$1<InstallConstraintsSuccess, string>>;
1303
+
1304
+ interface UninstallConstraintsOptions {
1305
+ packageName: string;
1306
+ configPath: string;
1307
+ lockfilePath: string;
1308
+ }
1309
+ interface UninstallConstraintsSuccess {
1310
+ removed: boolean;
1311
+ packageName: string;
1312
+ version: string;
1313
+ sectionsRemoved: string[];
1314
+ }
1315
+ declare function runUninstallConstraints(options: UninstallConstraintsOptions): Promise<Result$1<UninstallConstraintsSuccess, string>>;
1316
+
1280
1317
  interface UninstallOptions {
1281
1318
  force?: boolean;
1282
1319
  }
@@ -1305,4 +1342,4 @@ declare function runUninstall(skillName: string, options: UninstallOptions): Pro
1305
1342
  */
1306
1343
  declare function createProgram(): Command;
1307
1344
 
1308
- export { AGENT_DESCRIPTIONS, ALLOWED_PERSONA_COMMANDS, type AgentDefinition, CLIError, type CheckArchResult, type CommandExecutor, type CommandStep, type CreateSkillOptions, DEFAULT_TOOLS, ExitCode, GEMINI_TOOL_MAP, type GenerateAgentDefsOptions, type GenerateAgentDefsResult, type GenerateResult, type HandoffContext, type HarnessConfig, type InstallResult, OutputFormatter, OutputMode, type Persona, type PersonaMetadata, type PersonaRunReport, type RenderedFiles, type SkillExecutionContext, type SkillExecutionResult, type SkillExecutor, type SkillSource, type SkillStep, type Step, type StepExecutionContext, type StepReport, type TemplateContext, TemplateEngine, type TriggerContext, type TriggerDetectionResult, type UninstallResult, buildPreamble, createHarnessServer, createProgram, detectTrigger, executeSkill, findConfigFile, generateAgentDefinition, generateAgentDefinitions, generateAgentsMd, generateCIWorkflow, generateRuntime, generateSkillFiles, generateSlashCommands, getToolDefinitions, handleError, listPersonas, loadConfig, loadPersona, logger, renderClaudeCodeAgent, renderGeminiAgent, resolveConfig, runCheckArch, runCheckPhaseGate, runCrossCheck, runGraphExport, runGraphStatus, runImpactPreview, runIngest, runInstall, runPersona, runQuery, runScan, runUninstall, startServer };
1345
+ export { AGENT_DESCRIPTIONS, ALLOWED_PERSONA_COMMANDS, type AgentDefinition, CLIError, type CheckArchResult, type CommandExecutor, type CommandStep, type CreateSkillOptions, DEFAULT_TOOLS, ExitCode, GEMINI_TOOL_MAP, type GenerateAgentDefsOptions, type GenerateAgentDefsResult, type GenerateResult, type HandoffContext, type HarnessConfig, type InstallConstraintsOptions, type InstallConstraintsSuccess, type InstallResult, OutputFormatter, OutputMode, type Persona, type PersonaMetadata, type PersonaRunReport, type RenderedFiles, type SkillExecutionContext, type SkillExecutionResult, type SkillExecutor, type SkillSource, type SkillStep, type Step, type StepExecutionContext, type StepReport, type TemplateContext, TemplateEngine, type TriggerContext, type TriggerDetectionResult, type UninstallConstraintsOptions, type UninstallConstraintsSuccess, type UninstallResult, buildPreamble, createHarnessServer, createProgram, detectTrigger, executeSkill, findConfigFile, generateAgentDefinition, generateAgentDefinitions, generateAgentsMd, generateCIWorkflow, generateRuntime, generateSkillFiles, generateSlashCommands, getToolDefinitions, handleError, listPersonas, loadConfig, loadPersona, logger, renderClaudeCodeAgent, renderGeminiAgent, resolveConfig, runCheckArch, runCheckPhaseGate, runCrossCheck, runGraphExport, runGraphStatus, runImpactPreview, runIngest, runInstall, runInstallConstraints, runPersona, runQuery, runScan, runUninstall, runUninstallConstraints, startServer };
package/dist/index.js CHANGED
@@ -7,10 +7,12 @@ import {
7
7
  runImpactPreview,
8
8
  runIngest,
9
9
  runInstall,
10
+ runInstallConstraints,
10
11
  runQuery,
11
12
  runScan,
12
- runUninstall
13
- } from "./chunk-ZWC3MN5E.js";
13
+ runUninstall,
14
+ runUninstallConstraints
15
+ } from "./chunk-B5SBNH4S.js";
14
16
  import {
15
17
  generateCIWorkflow
16
18
  } from "./chunk-VUCPTQ6G.js";
@@ -21,7 +23,7 @@ import {
21
23
  loadConfig,
22
24
  resolveConfig,
23
25
  runCheckPhaseGate
24
- } from "./chunk-2NCIKJES.js";
26
+ } from "./chunk-ZU2UBYBY.js";
25
27
  import {
26
28
  AGENT_DESCRIPTIONS,
27
29
  DEFAULT_TOOLS,
@@ -64,18 +66,18 @@ import {
64
66
  generateSlashCommands,
65
67
  getToolDefinitions,
66
68
  startServer
67
- } from "./chunk-I6JZYEGT.js";
68
- import "./chunk-Z75JC6I2.js";
69
- import "./chunk-GSIVNYVJ.js";
70
- import "./chunk-PA2XHK75.js";
71
- import "./chunk-X3MN5UQJ.js";
72
- import "./chunk-WUJTCNOU.js";
69
+ } from "./chunk-747VBPA4.js";
70
+ import "./chunk-JLXOEO5C.js";
71
+ import "./chunk-2SWJ4VO7.js";
72
+ import "./chunk-FLOEMHDF.js";
73
+ import "./chunk-EAURF4LH.js";
74
+ import "./chunk-TJVVU3HB.js";
73
75
  import "./chunk-ZOAWBDWU.js";
74
- import "./chunk-WJZDO6OY.js";
76
+ import "./chunk-YXOG2277.js";
75
77
  import "./chunk-2YPZKGAG.js";
76
- import "./chunk-TI4TGEX6.js";
78
+ import "./chunk-OIGVQF5V.js";
77
79
  import "./chunk-K6XAPGML.js";
78
- import "./chunk-NC6PXVWT.js";
80
+ import "./chunk-CTTFXXKJ.js";
79
81
  import "./chunk-IDZNPTYD.js";
80
82
  import "./chunk-W6Y7ZW3Y.js";
81
83
  import "./chunk-HD4IBGLA.js";
@@ -92,7 +94,7 @@ import {
92
94
  import {
93
95
  TemplateEngine
94
96
  } from "./chunk-C2ERUR3L.js";
95
- import "./chunk-2YSQOUHO.js";
97
+ import "./chunk-AE2OWWDH.js";
96
98
  import "./chunk-MHBMTPW7.js";
97
99
  export {
98
100
  AGENT_DESCRIPTIONS,
@@ -134,9 +136,11 @@ export {
134
136
  runImpactPreview,
135
137
  runIngest,
136
138
  runInstall,
139
+ runInstallConstraints,
137
140
  runPersona,
138
141
  runQuery,
139
142
  runScan,
140
143
  runUninstall,
144
+ runUninstallConstraints,
141
145
  startServer
142
146
  };
@@ -2,7 +2,7 @@ import {
2
2
  listPersonas,
3
3
  loadPersona
4
4
  } from "./chunk-Q6AB7W5Z.js";
5
- import "./chunk-2YSQOUHO.js";
5
+ import "./chunk-AE2OWWDH.js";
6
6
  import "./chunk-MHBMTPW7.js";
7
7
  export {
8
8
  listPersonas,
@@ -2,20 +2,20 @@ import {
2
2
  createHarnessServer,
3
3
  getToolDefinitions,
4
4
  startServer
5
- } from "./chunk-I6JZYEGT.js";
6
- import "./chunk-Z75JC6I2.js";
7
- import "./chunk-GSIVNYVJ.js";
8
- import "./chunk-PA2XHK75.js";
9
- import "./chunk-X3MN5UQJ.js";
10
- import "./chunk-WUJTCNOU.js";
5
+ } from "./chunk-747VBPA4.js";
6
+ import "./chunk-JLXOEO5C.js";
7
+ import "./chunk-2SWJ4VO7.js";
8
+ import "./chunk-FLOEMHDF.js";
9
+ import "./chunk-EAURF4LH.js";
10
+ import "./chunk-TJVVU3HB.js";
11
11
  import "./chunk-ZOAWBDWU.js";
12
- import "./chunk-WJZDO6OY.js";
12
+ import "./chunk-YXOG2277.js";
13
13
  import "./chunk-2YPZKGAG.js";
14
- import "./chunk-TI4TGEX6.js";
14
+ import "./chunk-OIGVQF5V.js";
15
15
  import {
16
16
  resolveProjectConfig
17
17
  } from "./chunk-K6XAPGML.js";
18
- import "./chunk-NC6PXVWT.js";
18
+ import "./chunk-CTTFXXKJ.js";
19
19
  import {
20
20
  resultToMcpResponse
21
21
  } from "./chunk-IDZNPTYD.js";
@@ -23,7 +23,7 @@ import "./chunk-W6Y7ZW3Y.js";
23
23
  import "./chunk-HD4IBGLA.js";
24
24
  import "./chunk-3WGJMBKH.js";
25
25
  import "./chunk-VRFZWGMS.js";
26
- import "./chunk-2YSQOUHO.js";
26
+ import "./chunk-AE2OWWDH.js";
27
27
  import "./chunk-MHBMTPW7.js";
28
28
  export {
29
29
  createHarnessServer,
@@ -7,10 +7,10 @@ import {
7
7
  handleGetPerfBaselines,
8
8
  handleUpdatePerfBaselines,
9
9
  updatePerfBaselinesDefinition
10
- } from "./chunk-GSIVNYVJ.js";
10
+ } from "./chunk-2SWJ4VO7.js";
11
11
  import "./chunk-IDZNPTYD.js";
12
12
  import "./chunk-W6Y7ZW3Y.js";
13
- import "./chunk-2YSQOUHO.js";
13
+ import "./chunk-AE2OWWDH.js";
14
14
  import "./chunk-MHBMTPW7.js";
15
15
  export {
16
16
  checkPerformanceDefinition,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  handleRunCodeReview,
3
3
  runCodeReviewDefinition
4
- } from "./chunk-WUJTCNOU.js";
4
+ } from "./chunk-TJVVU3HB.js";
5
5
  import "./chunk-W6Y7ZW3Y.js";
6
6
  export {
7
7
  handleRunCodeReview,
@@ -2,7 +2,7 @@ import {
2
2
  generateRuntime
3
3
  } from "./chunk-JSTQ3AWB.js";
4
4
  import "./chunk-KET4QQZB.js";
5
- import "./chunk-2YSQOUHO.js";
5
+ import "./chunk-AE2OWWDH.js";
6
6
  import "./chunk-MHBMTPW7.js";
7
7
  export {
8
8
  generateRuntime
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  handleRunSecurityScan,
3
3
  runSecurityScanDefinition
4
- } from "./chunk-X3MN5UQJ.js";
4
+ } from "./chunk-EAURF4LH.js";
5
5
  import "./chunk-W6Y7ZW3Y.js";
6
6
  export {
7
7
  handleRunSecurityScan,
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  handleValidateProject,
3
3
  validateToolDefinition
4
- } from "./chunk-WJZDO6OY.js";
4
+ } from "./chunk-YXOG2277.js";
5
5
  import "./chunk-K6XAPGML.js";
6
6
  import "./chunk-W6Y7ZW3Y.js";
7
- import "./chunk-2YSQOUHO.js";
7
+ import "./chunk-AE2OWWDH.js";
8
8
  import "./chunk-MHBMTPW7.js";
9
9
  export {
10
10
  handleValidateProject,
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  runCrossCheck
3
3
  } from "./chunk-72GHBOL2.js";
4
- import "./chunk-2YSQOUHO.js";
4
+ import "./chunk-AE2OWWDH.js";
5
5
  import "./chunk-MHBMTPW7.js";
6
6
  export {
7
7
  runCrossCheck
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harness-engineering/cli",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "description": "CLI for Harness Engineering toolkit",
5
5
  "type": "module",
6
6
  "bin": {
@@ -34,10 +34,10 @@
34
34
  "semver": "^7.7.4",
35
35
  "yaml": "^2.3.0",
36
36
  "zod": "^3.22.0",
37
- "@harness-engineering/core": "0.11.0",
37
+ "@harness-engineering/core": "0.12.0",
38
38
  "@harness-engineering/graph": "0.3.2",
39
39
  "@harness-engineering/linter-gen": "0.1.3",
40
- "@harness-engineering/orchestrator": "0.2.0",
40
+ "@harness-engineering/orchestrator": "0.2.1",
41
41
  "@harness-engineering/types": "0.3.0"
42
42
  },
43
43
  "devDependencies": {