@llm-dev-ops/agentics-cli 1.3.7 → 1.3.9
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/adapters/base-adapter.d.ts +58 -1
- package/dist/adapters/base-adapter.d.ts.map +1 -1
- package/dist/adapters/base-adapter.js +110 -0
- package/dist/adapters/base-adapter.js.map +1 -1
- package/dist/cli/index.js +992 -16
- package/dist/cli/index.js.map +1 -1
- package/dist/commands/deploy.d.ts +95 -13
- package/dist/commands/deploy.d.ts.map +1 -1
- package/dist/commands/deploy.js +420 -14
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/erp.d.ts +302 -0
- package/dist/commands/erp.d.ts.map +1 -0
- package/dist/commands/erp.js +1064 -0
- package/dist/commands/erp.js.map +1 -0
- package/dist/commands/export.d.ts +40 -13
- package/dist/commands/export.d.ts.map +1 -1
- package/dist/commands/export.js +434 -14
- package/dist/commands/export.js.map +1 -1
- package/dist/commands/index.d.ts +20 -12
- package/dist/commands/index.d.ts.map +1 -1
- package/dist/commands/index.js +10 -6
- package/dist/commands/index.js.map +1 -1
- package/dist/commands/inspect.d.ts +84 -18
- package/dist/commands/inspect.d.ts.map +1 -1
- package/dist/commands/inspect.js +585 -131
- package/dist/commands/inspect.js.map +1 -1
- package/dist/commands/logout.d.ts +34 -0
- package/dist/commands/logout.d.ts.map +1 -0
- package/dist/commands/logout.js +73 -0
- package/dist/commands/logout.js.map +1 -0
- package/dist/commands/plan.d.ts +147 -14
- package/dist/commands/plan.d.ts.map +1 -1
- package/dist/commands/plan.js +557 -16
- package/dist/commands/plan.js.map +1 -1
- package/dist/commands/policy.d.ts +136 -0
- package/dist/commands/policy.d.ts.map +1 -0
- package/dist/commands/policy.js +460 -0
- package/dist/commands/policy.js.map +1 -0
- package/dist/commands/quantify.d.ts +131 -13
- package/dist/commands/quantify.d.ts.map +1 -1
- package/dist/commands/quantify.js +425 -14
- package/dist/commands/quantify.js.map +1 -1
- package/dist/commands/simulate.d.ts +119 -13
- package/dist/commands/simulate.d.ts.map +1 -1
- package/dist/commands/simulate.js +363 -14
- package/dist/commands/simulate.js.map +1 -1
- package/dist/commands/usage.d.ts +110 -0
- package/dist/commands/usage.d.ts.map +1 -0
- package/dist/commands/usage.js +507 -0
- package/dist/commands/usage.js.map +1 -0
- package/dist/commands/whoami.d.ts +33 -0
- package/dist/commands/whoami.d.ts.map +1 -0
- package/dist/commands/whoami.js +93 -0
- package/dist/commands/whoami.js.map +1 -0
- package/dist/config/endpoints.d.ts.map +1 -1
- package/dist/config/endpoints.js +16 -1
- package/dist/config/endpoints.js.map +1 -1
- package/dist/contracts/schemas/index.d.ts +4 -0
- package/dist/contracts/schemas/index.d.ts.map +1 -1
- package/dist/contracts/schemas/index.js +2 -0
- package/dist/contracts/schemas/index.js.map +1 -1
- package/dist/contracts/validator.d.ts.map +1 -1
- package/dist/contracts/validator.js +55 -148
- package/dist/contracts/validator.js.map +1 -1
- package/dist/modules/artifact-handoff.d.ts +5 -0
- package/dist/modules/artifact-handoff.d.ts.map +1 -1
- package/dist/modules/artifact-handoff.js +47 -11
- package/dist/modules/artifact-handoff.js.map +1 -1
- package/dist/modules/command-parser.d.ts +1 -1
- package/dist/modules/command-parser.d.ts.map +1 -1
- package/dist/modules/command-parser.js +6 -1
- package/dist/modules/command-parser.js.map +1 -1
- package/dist/modules/output-renderer.d.ts +1 -0
- package/dist/modules/output-renderer.d.ts.map +1 -1
- package/dist/modules/output-renderer.js +25 -1
- package/dist/modules/output-renderer.js.map +1 -1
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js.map +1 -1
- package/package.json +4 -4
package/dist/commands/index.d.ts
CHANGED
|
@@ -5,18 +5,26 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export { executeLoginCommand } from './login.js';
|
|
7
7
|
export type { LoginCommandInput, LoginCommandResult } from './login.js';
|
|
8
|
-
export { executePlanCommand } from './plan.js';
|
|
9
|
-
export type { PlanCommandInput, PlanCommandResult } from './plan.js';
|
|
10
|
-
export { executeSimulateCommand } from './simulate.js';
|
|
11
|
-
export type { SimulateCommandInput, SimulateCommandResult } from './simulate.js';
|
|
12
|
-
export { executeInspectCommand } from './inspect.js';
|
|
13
|
-
export type { InspectCommandInput, InspectCommandResult } from './inspect.js';
|
|
14
|
-
export { executeQuantifyCommand } from './quantify.js';
|
|
15
|
-
export type { QuantifyCommandInput, QuantifyCommandResult } from './quantify.js';
|
|
16
|
-
export { executeDeployCommand } from './deploy.js';
|
|
17
|
-
export type { DeployCommandInput, DeployCommandResult } from './deploy.js';
|
|
18
|
-
export { executeExportCommand } from './export.js';
|
|
19
|
-
export type { ExportCommandInput, ExportCommandResult } from './export.js';
|
|
8
|
+
export { executePlanCommand, executePlanListCommand, executePlanCreateCommand, executePlanInspectCommand, executePlanDeleteCommand, executePlanApproveCommand, formatPlansListForDisplay, formatPlanForDisplay, } from './plan.js';
|
|
9
|
+
export type { PlanCommandInput, PlanCommandResult, PlanListInput, PlanListResult, PlanSummary, PlanRecord, PlanStatus, PlanCreateInput, PlanCreateResult, PlanInspectInput, PlanInspectResult, PlanDeleteInput, PlanDeleteResult, PlanApproveInput, PlanApproveResult, } from './plan.js';
|
|
10
|
+
export { executeSimulateCommand, executeSimulateListCommand, executeSimulateCreateCommand, executeSimulateInspectCommand, executeSimulateDeleteCommand, executeSimulateRunCommand, formatSimulationsListForDisplay, formatSimulationForDisplay, } from './simulate.js';
|
|
11
|
+
export type { SimulateCommandInput, SimulateCommandResult, SimulateListInput, SimulateListResult, SimulationSummary, SimulationRecord, SimulationStatus, SimulationResultData, SimulateCreateInput, SimulateCreateResult, SimulateInspectInput, SimulateInspectResult, SimulateDeleteInput, SimulateDeleteResult, SimulateRunInput, SimulateRunResult, } from './simulate.js';
|
|
12
|
+
export { executeInspectCommand, executeInspectLatestCommand, executeInspectRunCommand, formatResultsForDisplay, } from './inspect.js';
|
|
13
|
+
export type { InspectCommandInput, InspectCommandResult, InspectLatestInput, InspectLatestResult, InspectRunInput, InspectRunResult, SimulationResult, } from './inspect.js';
|
|
14
|
+
export { executeQuantifyCommand, executeQuantifyCreateCommand, executeQuantifyListCommand, executeQuantifyInspectCommand, executeQuantifyDeleteCommand, executeQuantifyCompareCommand, formatQuantifyForDisplay, formatQuantifyListForDisplay, formatCompareForDisplay, QUANTIFY_EXIT_CODES, } from './quantify.js';
|
|
15
|
+
export type { QuantifyCommandInput, QuantifyCommandResult, QuantifyRecord, QuantifyStatus, RoiMetrics, QuantifyCreateInput, QuantifyCreateResult, QuantifyListInput, QuantifyListResult, QuantifySummary, QuantifyInspectInput, QuantifyInspectResult, QuantifyDeleteInput, QuantifyDeleteResult, QuantifyCompareInput, QuantifyCompareResult, ComparisonSummary, } from './quantify.js';
|
|
16
|
+
export { executeDeployCommand, executeDeployPreviewCommand, executeDeployRunCommand, executeDeployStatusCommand, executeDeployRollbackCommand, executeDeployListCommand, formatDeployForDisplay, formatDeployListForDisplay, DEPLOY_EXIT_CODES, } from './deploy.js';
|
|
17
|
+
export type { DeployCommandInput, DeployCommandResult, DeployRecord, DeployStatus, DeployPreview, DeployChange, DeployExecution, DeployPreviewInput, DeployPreviewResult, DeployRunInput, DeployRunResult, DeployStatusInput, DeployStatusResult, DeployRollbackInput, DeployRollbackResult, DeployListResult, } from './deploy.js';
|
|
18
|
+
export { executeExportCommand, executeExportTerraformCommand, executeExportKubernetesCommand, executeExportErpCommand, formatExportForDisplay, EXPORT_EXIT_CODES, } from './export.js';
|
|
19
|
+
export type { ExportCommandInput, ExportCommandResult, LocalExportType, ExportArtifact, LocalExportInput, LocalExportResult, } from './export.js';
|
|
20
20
|
export { executeDiligenceCommand } from './diligence.js';
|
|
21
21
|
export type { DiligenceCommandInput, DiligenceCommandResult } from './diligence.js';
|
|
22
|
+
export { executePolicyListCommand, executePolicyInspectCommand, executePolicyCreateCommand, executePolicyEditCommand, executePolicyDeleteCommand, executePolicyEnableCommand, executePolicyDisableCommand, formatPolicyForDisplay, formatPoliciesListForDisplay, } from './policy.js';
|
|
23
|
+
export type { Policy, PolicyType, PolicyStatus, PolicyRule, PolicyListInput, PolicyListResult, PolicyInspectInput, PolicyInspectResult, PolicyCreateInput, PolicyCreateResult, PolicyEditInput, PolicyEditResult, PolicyDeleteInput, PolicyDeleteResult, PolicyToggleInput, PolicyToggleResult, } from './policy.js';
|
|
24
|
+
export { executeUsageCommand, executeUsageHistoryCommand, executeUsageLimitsCommand, executeUsageResetCommand, formatUsageForDisplay, formatHistoryForDisplay, formatLimitsForDisplay, } from './usage.js';
|
|
25
|
+
export type { UsageCommandResult, UsageHistoryInput, UsageHistoryEntry, UsageHistoryResult, UsageLimitsInput, UsageLimits, UsageLimitsResult, UsageResetInput, UsageResetResult, } from './usage.js';
|
|
26
|
+
export { executeWhoamiCommand, formatWhoamiForDisplay, } from './whoami.js';
|
|
27
|
+
export type { WhoamiCommandResult, } from './whoami.js';
|
|
28
|
+
export { executeLogoutCommand, formatLogoutForDisplay, } from './logout.js';
|
|
29
|
+
export type { LogoutCommandResult, } from './logout.js';
|
|
22
30
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,YAAY,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAExE,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AACjD,YAAY,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAExE,OAAO,EACL,kBAAkB,EAClB,sBAAsB,EACtB,wBAAwB,EACxB,yBAAyB,EACzB,wBAAwB,EACxB,yBAAyB,EACzB,yBAAyB,EACzB,oBAAoB,GACrB,MAAM,WAAW,CAAC;AACnB,YAAY,EACV,gBAAgB,EAChB,iBAAiB,EACjB,aAAa,EACb,cAAc,EACd,WAAW,EACX,UAAU,EACV,UAAU,EACV,eAAe,EACf,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EACjB,eAAe,EACf,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,WAAW,CAAC;AAEnB,OAAO,EACL,sBAAsB,EACtB,0BAA0B,EAC1B,4BAA4B,EAC5B,6BAA6B,EAC7B,4BAA4B,EAC5B,yBAAyB,EACzB,+BAA+B,EAC/B,0BAA0B,GAC3B,MAAM,eAAe,CAAC;AACvB,YAAY,EACV,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,eAAe,CAAC;AAEvB,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,wBAAwB,EACxB,uBAAuB,GACxB,MAAM,cAAc,CAAC;AACtB,YAAY,EACV,mBAAmB,EACnB,oBAAoB,EACpB,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,EACf,gBAAgB,EAChB,gBAAgB,GACjB,MAAM,cAAc,CAAC;AAEtB,OAAO,EACL,sBAAsB,EACtB,4BAA4B,EAC5B,0BAA0B,EAC1B,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,EAC7B,wBAAwB,EACxB,4BAA4B,EAC5B,uBAAuB,EACvB,mBAAmB,GACpB,MAAM,eAAe,CAAC;AACvB,YAAY,EACV,oBAAoB,EACpB,qBAAqB,EACrB,cAAc,EACd,cAAc,EACd,UAAU,EACV,mBAAmB,EACnB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,oBAAoB,EACpB,qBAAqB,EACrB,mBAAmB,EACnB,oBAAoB,EACpB,oBAAoB,EACpB,qBAAqB,EACrB,iBAAiB,GAClB,MAAM,eAAe,CAAC;AAEvB,OAAO,EACL,oBAAoB,EACpB,2BAA2B,EAC3B,uBAAuB,EACvB,0BAA0B,EAC1B,4BAA4B,EAC5B,wBAAwB,EACxB,sBAAsB,EACtB,0BAA0B,EAC1B,iBAAiB,GAClB,MAAM,aAAa,CAAC;AACrB,YAAY,EACV,kBAAkB,EAClB,mBAAmB,EACnB,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,eAAe,EACf,kBAAkB,EAClB,mBAAmB,EACnB,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,kBAAkB,EAClB,mBAAmB,EACnB,oBAAoB,EACpB,gBAAgB,GACjB,MAAM,aAAa,CAAC;AAErB,OAAO,EACL,oBAAoB,EACpB,6BAA6B,EAC7B,8BAA8B,EAC9B,uBAAuB,EACvB,sBAAsB,EACtB,iBAAiB,GAClB,MAAM,aAAa,CAAC;AACrB,YAAY,EACV,kBAAkB,EAClB,mBAAmB,EACnB,eAAe,EACf,cAAc,EACd,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,aAAa,CAAC;AAErB,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AACzD,YAAY,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAEpF,OAAO,EACL,wBAAwB,EACxB,2BAA2B,EAC3B,0BAA0B,EAC1B,wBAAwB,EACxB,0BAA0B,EAC1B,0BAA0B,EAC1B,2BAA2B,EAC3B,sBAAsB,EACtB,4BAA4B,GAC7B,MAAM,aAAa,CAAC;AACrB,YAAY,EACV,MAAM,EACN,UAAU,EACV,YAAY,EACZ,UAAU,EACV,eAAe,EACf,gBAAgB,EAChB,kBAAkB,EAClB,mBAAmB,EACnB,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,kBAAkB,EAClB,iBAAiB,EACjB,kBAAkB,GACnB,MAAM,aAAa,CAAC;AAErB,OAAO,EACL,mBAAmB,EACnB,0BAA0B,EAC1B,yBAAyB,EACzB,wBAAwB,EACxB,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,GACvB,MAAM,YAAY,CAAC;AACpB,YAAY,EACV,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,gBAAgB,EAChB,WAAW,EACX,iBAAiB,EACjB,eAAe,EACf,gBAAgB,GACjB,MAAM,YAAY,CAAC;AAEpB,OAAO,EACL,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,aAAa,CAAC;AACrB,YAAY,EACV,mBAAmB,GACpB,MAAM,aAAa,CAAC;AAErB,OAAO,EACL,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,aAAa,CAAC;AACrB,YAAY,EACV,mBAAmB,GACpB,MAAM,aAAa,CAAC"}
|
package/dist/commands/index.js
CHANGED
|
@@ -4,11 +4,15 @@
|
|
|
4
4
|
* Re-exports all command implementations
|
|
5
5
|
*/
|
|
6
6
|
export { executeLoginCommand } from './login.js';
|
|
7
|
-
export { executePlanCommand } from './plan.js';
|
|
8
|
-
export { executeSimulateCommand } from './simulate.js';
|
|
9
|
-
export { executeInspectCommand } from './inspect.js';
|
|
10
|
-
export { executeQuantifyCommand } from './quantify.js';
|
|
11
|
-
export { executeDeployCommand } from './deploy.js';
|
|
12
|
-
export { executeExportCommand } from './export.js';
|
|
7
|
+
export { executePlanCommand, executePlanListCommand, executePlanCreateCommand, executePlanInspectCommand, executePlanDeleteCommand, executePlanApproveCommand, formatPlansListForDisplay, formatPlanForDisplay, } from './plan.js';
|
|
8
|
+
export { executeSimulateCommand, executeSimulateListCommand, executeSimulateCreateCommand, executeSimulateInspectCommand, executeSimulateDeleteCommand, executeSimulateRunCommand, formatSimulationsListForDisplay, formatSimulationForDisplay, } from './simulate.js';
|
|
9
|
+
export { executeInspectCommand, executeInspectLatestCommand, executeInspectRunCommand, formatResultsForDisplay, } from './inspect.js';
|
|
10
|
+
export { executeQuantifyCommand, executeQuantifyCreateCommand, executeQuantifyListCommand, executeQuantifyInspectCommand, executeQuantifyDeleteCommand, executeQuantifyCompareCommand, formatQuantifyForDisplay, formatQuantifyListForDisplay, formatCompareForDisplay, QUANTIFY_EXIT_CODES, } from './quantify.js';
|
|
11
|
+
export { executeDeployCommand, executeDeployPreviewCommand, executeDeployRunCommand, executeDeployStatusCommand, executeDeployRollbackCommand, executeDeployListCommand, formatDeployForDisplay, formatDeployListForDisplay, DEPLOY_EXIT_CODES, } from './deploy.js';
|
|
12
|
+
export { executeExportCommand, executeExportTerraformCommand, executeExportKubernetesCommand, executeExportErpCommand, formatExportForDisplay, EXPORT_EXIT_CODES, } from './export.js';
|
|
13
13
|
export { executeDiligenceCommand } from './diligence.js';
|
|
14
|
+
export { executePolicyListCommand, executePolicyInspectCommand, executePolicyCreateCommand, executePolicyEditCommand, executePolicyDeleteCommand, executePolicyEnableCommand, executePolicyDisableCommand, formatPolicyForDisplay, formatPoliciesListForDisplay, } from './policy.js';
|
|
15
|
+
export { executeUsageCommand, executeUsageHistoryCommand, executeUsageLimitsCommand, executeUsageResetCommand, formatUsageForDisplay, formatHistoryForDisplay, formatLimitsForDisplay, } from './usage.js';
|
|
16
|
+
export { executeWhoamiCommand, formatWhoamiForDisplay, } from './whoami.js';
|
|
17
|
+
export { executeLogoutCommand, formatLogoutForDisplay, } from './logout.js';
|
|
14
18
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAGjD,OAAO,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/commands/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAC;AAGjD,OAAO,EACL,kBAAkB,EAClB,sBAAsB,EACtB,wBAAwB,EACxB,yBAAyB,EACzB,wBAAwB,EACxB,yBAAyB,EACzB,yBAAyB,EACzB,oBAAoB,GACrB,MAAM,WAAW,CAAC;AAmBnB,OAAO,EACL,sBAAsB,EACtB,0BAA0B,EAC1B,4BAA4B,EAC5B,6BAA6B,EAC7B,4BAA4B,EAC5B,yBAAyB,EACzB,+BAA+B,EAC/B,0BAA0B,GAC3B,MAAM,eAAe,CAAC;AAoBvB,OAAO,EACL,qBAAqB,EACrB,2BAA2B,EAC3B,wBAAwB,EACxB,uBAAuB,GACxB,MAAM,cAAc,CAAC;AAWtB,OAAO,EACL,sBAAsB,EACtB,4BAA4B,EAC5B,0BAA0B,EAC1B,6BAA6B,EAC7B,4BAA4B,EAC5B,6BAA6B,EAC7B,wBAAwB,EACxB,4BAA4B,EAC5B,uBAAuB,EACvB,mBAAmB,GACpB,MAAM,eAAe,CAAC;AAqBvB,OAAO,EACL,oBAAoB,EACpB,2BAA2B,EAC3B,uBAAuB,EACvB,0BAA0B,EAC1B,4BAA4B,EAC5B,wBAAwB,EACxB,sBAAsB,EACtB,0BAA0B,EAC1B,iBAAiB,GAClB,MAAM,aAAa,CAAC;AAoBrB,OAAO,EACL,oBAAoB,EACpB,6BAA6B,EAC7B,8BAA8B,EAC9B,uBAAuB,EACvB,sBAAsB,EACtB,iBAAiB,GAClB,MAAM,aAAa,CAAC;AAUrB,OAAO,EAAE,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAGzD,OAAO,EACL,wBAAwB,EACxB,2BAA2B,EAC3B,0BAA0B,EAC1B,wBAAwB,EACxB,0BAA0B,EAC1B,0BAA0B,EAC1B,2BAA2B,EAC3B,sBAAsB,EACtB,4BAA4B,GAC7B,MAAM,aAAa,CAAC;AAoBrB,OAAO,EACL,mBAAmB,EACnB,0BAA0B,EAC1B,yBAAyB,EACzB,wBAAwB,EACxB,qBAAqB,EACrB,uBAAuB,EACvB,sBAAsB,GACvB,MAAM,YAAY,CAAC;AAapB,OAAO,EACL,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,aAAa,CAAC;AAKrB,OAAO,EACL,oBAAoB,EACpB,sBAAsB,GACvB,MAAM,aAAa,CAAC"}
|
|
@@ -1,31 +1,97 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Inspect Command
|
|
2
|
+
* Inspect Command - Standalone Read-Only HTTP Command
|
|
3
3
|
*
|
|
4
|
-
*
|
|
4
|
+
* ARCHITECTURE:
|
|
5
|
+
* - This is a TERMINAL command with its own control flow
|
|
6
|
+
* - Does NOT participate in orchestration, retrieval, or execution pipelines
|
|
7
|
+
* - Issues direct HTTP GET requests to agentics-results-index
|
|
8
|
+
* - Has its own error handling and exit codes
|
|
9
|
+
* - No code path can fall through to simulation, planner, or execution services
|
|
5
10
|
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* 4. VALIDATE response has execution_metadata (reject if missing)
|
|
11
|
-
* 5. Record audit entry
|
|
12
|
-
* 6. Return SimulationOutputReference
|
|
13
|
-
*
|
|
14
|
-
* CONTRACT ENFORCEMENT:
|
|
15
|
-
* - Request validation happens BEFORE any network call
|
|
16
|
-
* - Response validation requires execution_metadata
|
|
17
|
-
* - No bypass flags or soft-fail behavior
|
|
11
|
+
* ROUTING:
|
|
12
|
+
* - Routes EXCLUSIVELY to agentics-results-index
|
|
13
|
+
* - NO routing to execution, planning, or simulation services
|
|
14
|
+
* - Read-only operation - performs NO mutations
|
|
18
15
|
*/
|
|
19
|
-
import type { CommandOptions,
|
|
16
|
+
import type { CommandOptions, FlexibleInput } from '../types/index.js';
|
|
17
|
+
export declare const INSPECT_EXIT_CODES: {
|
|
18
|
+
readonly SUCCESS: 0;
|
|
19
|
+
readonly INPUT_ERROR: 100;
|
|
20
|
+
readonly SERVICE_UNAVAILABLE: 69;
|
|
21
|
+
readonly TIMEOUT: 75;
|
|
22
|
+
readonly NETWORK_ERROR: 120;
|
|
23
|
+
readonly UNEXPECTED_ERROR: 1;
|
|
24
|
+
};
|
|
25
|
+
export interface ResultsQueryParams {
|
|
26
|
+
environment?: 'production' | 'staging' | 'development' | 'test';
|
|
27
|
+
status?: 'completed' | 'failed' | 'running' | 'pending';
|
|
28
|
+
limit?: number;
|
|
29
|
+
order?: 'newest' | 'oldest';
|
|
30
|
+
id?: string;
|
|
31
|
+
}
|
|
32
|
+
export interface SimulationResult {
|
|
33
|
+
id: string;
|
|
34
|
+
environment: string;
|
|
35
|
+
status: string;
|
|
36
|
+
created_at: string;
|
|
37
|
+
completed_at?: string;
|
|
38
|
+
duration_ms?: number;
|
|
39
|
+
summary?: string;
|
|
40
|
+
metrics?: Record<string, unknown>;
|
|
41
|
+
}
|
|
42
|
+
export interface InspectCommandResult {
|
|
43
|
+
results: SimulationResult[];
|
|
44
|
+
query: ResultsQueryParams;
|
|
45
|
+
count: number;
|
|
46
|
+
timing: number;
|
|
47
|
+
}
|
|
20
48
|
export interface InspectCommandInput {
|
|
21
|
-
simRef: FlexibleInput<
|
|
49
|
+
simRef: FlexibleInput<{
|
|
50
|
+
id: string;
|
|
51
|
+
}>;
|
|
22
52
|
depth?: 'summary' | 'detailed' | 'full';
|
|
23
53
|
includeMetrics?: boolean;
|
|
24
54
|
includeTraces?: boolean;
|
|
25
55
|
}
|
|
26
|
-
export interface
|
|
27
|
-
|
|
56
|
+
export interface InspectLatestInput {
|
|
57
|
+
environment?: 'production' | 'staging' | 'development' | 'test';
|
|
58
|
+
status?: 'completed' | 'failed' | 'running' | 'pending';
|
|
59
|
+
}
|
|
60
|
+
export interface InspectLatestResult {
|
|
61
|
+
result: SimulationResult | null;
|
|
62
|
+
found: boolean;
|
|
63
|
+
timing: number;
|
|
64
|
+
}
|
|
65
|
+
export interface InspectRunInput {
|
|
66
|
+
id: string;
|
|
67
|
+
}
|
|
68
|
+
export interface InspectRunResult {
|
|
69
|
+
result: SimulationResult | null;
|
|
70
|
+
found: boolean;
|
|
28
71
|
timing: number;
|
|
29
72
|
}
|
|
73
|
+
/**
|
|
74
|
+
* Format simulation results for human-readable terminal output.
|
|
75
|
+
*/
|
|
76
|
+
export declare function formatResultsForDisplay(results: SimulationResult[]): string;
|
|
77
|
+
/**
|
|
78
|
+
* Execute the inspect command.
|
|
79
|
+
*
|
|
80
|
+
* This is a STANDALONE command that:
|
|
81
|
+
* - Does NOT use shared orchestration, retrieval, or execution helpers
|
|
82
|
+
* - Issues direct HTTP GET requests to agentics-results-index
|
|
83
|
+
* - Has its own error handling with inspect-specific exit codes
|
|
84
|
+
* - Cannot fall through to any other service
|
|
85
|
+
*/
|
|
30
86
|
export declare function executeInspectCommand(input: InspectCommandInput, options: CommandOptions): Promise<InspectCommandResult>;
|
|
87
|
+
/**
|
|
88
|
+
* Execute the 'inspect latest' subcommand.
|
|
89
|
+
* Returns the most recent simulation result matching the filters.
|
|
90
|
+
*/
|
|
91
|
+
export declare function executeInspectLatestCommand(input: InspectLatestInput, options: CommandOptions): Promise<InspectLatestResult>;
|
|
92
|
+
/**
|
|
93
|
+
* Execute the 'inspect run <id>' subcommand.
|
|
94
|
+
* Returns a specific simulation result by ID.
|
|
95
|
+
*/
|
|
96
|
+
export declare function executeInspectRunCommand(input: InspectRunInput, options: CommandOptions): Promise<InspectRunResult>;
|
|
31
97
|
//# sourceMappingURL=inspect.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inspect.d.ts","sourceRoot":"","sources":["../../src/commands/inspect.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"inspect.d.ts","sourceRoot":"","sources":["../../src/commands/inspect.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,KAAK,EACV,cAAc,EACd,aAAa,EAEd,MAAM,mBAAmB,CAAC;AAQ3B,eAAO,MAAM,kBAAkB;;;;;;;CAOrB,CAAC;AAMX,MAAM,WAAW,kBAAkB;IACjC,WAAW,CAAC,EAAE,YAAY,GAAG,SAAS,GAAG,aAAa,GAAG,MAAM,CAAC;IAChE,MAAM,CAAC,EAAE,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;IACxD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,QAAQ,GAAG,QAAQ,CAAC;IAC5B,EAAE,CAAC,EAAE,MAAM,CAAC;CACb;AAMD,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACnC;AAED,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,KAAK,EAAE,kBAAkB,CAAC;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAMD,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,aAAa,CAAC;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACtC,KAAK,CAAC,EAAE,SAAS,GAAG,UAAU,GAAG,MAAM,CAAC;IACxC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAMD,MAAM,WAAW,kBAAkB;IACjC,WAAW,CAAC,EAAE,YAAY,GAAG,SAAS,GAAG,aAAa,GAAG,MAAM,CAAC;IAChE,MAAM,CAAC,EAAE,WAAW,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;CACzD;AAED,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAChC,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,eAAe;IAC9B,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAChC,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;CAChB;AAyLD;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,gBAAgB,EAAE,GAAG,MAAM,CA6B3E;AAwID;;;;;;;;GAQG;AACH,wBAAsB,qBAAqB,CACzC,KAAK,EAAE,mBAAmB,EAC1B,OAAO,EAAE,cAAc,GACtB,OAAO,CAAC,oBAAoB,CAAC,CA+F/B;AAMD;;;GAGG;AACH,wBAAsB,2BAA2B,CAC/C,KAAK,EAAE,kBAAkB,EACzB,OAAO,EAAE,cAAc,GACtB,OAAO,CAAC,mBAAmB,CAAC,CAoF9B;AAMD;;;GAGG;AACH,wBAAsB,wBAAwB,CAC5C,KAAK,EAAE,eAAe,EACtB,OAAO,EAAE,cAAc,GACtB,OAAO,CAAC,gBAAgB,CAAC,CAgG3B"}
|