@vee-stack/delta-cli 2.0.8 → 2.0.10

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 (183) hide show
  1. package/dist/adapters/analysis.adapter.d.ts +29 -0
  2. package/dist/analyzer/commands/analyze.d.ts +14 -0
  3. package/dist/analyzer/commands/config.d.ts +12 -0
  4. package/dist/analyzer/commands/report.d.ts +11 -0
  5. package/dist/analyzer/generators/report.generator.d.ts +43 -0
  6. package/dist/analyzer/index.d.ts +8 -0
  7. package/dist/analyzer/scanners/project.scanner.d.ts +29 -0
  8. package/dist/analyzer/validators/contracts.validator.d.ts +27 -0
  9. package/dist/analyzer/validators/maintainability.validator.d.ts +27 -0
  10. package/dist/analyzer/validators/observability.validator.d.ts +27 -0
  11. package/dist/analyzer/validators/performance.validator.d.ts +27 -0
  12. package/dist/analyzer/validators/security.validator.d.ts +27 -0
  13. package/dist/analyzer/validators/soc.validator.d.ts +27 -0
  14. package/dist/auth/device-auth.d.ts +18 -0
  15. package/dist/auth/secure-auth.d.ts +35 -0
  16. package/dist/bundle.mjs +422 -0
  17. package/dist/commands/analyze.d.ts +12 -0
  18. package/dist/commands/auth-new.d.ts +6 -0
  19. package/dist/commands/auth.d.ts +17 -0
  20. package/dist/commands/config.d.ts +8 -0
  21. package/dist/commands/deploy.d.ts +5 -0
  22. package/dist/commands/init.d.ts +7 -0
  23. package/dist/commands/logout.d.ts +2 -0
  24. package/dist/commands/plugins.d.ts +7 -0
  25. package/dist/commands/status.d.ts +5 -0
  26. package/dist/commands/sync.d.ts +5 -0
  27. package/dist/commands/whoami.d.ts +4 -0
  28. package/dist/components/Dashboard.d.ts +8 -0
  29. package/dist/components/DeltaApp.d.ts +13 -0
  30. package/dist/components/UnifiedManager.d.ts +10 -0
  31. package/dist/core/audit.d.ts +60 -0
  32. package/dist/core/completion.d.ts +79 -0
  33. package/dist/core/contracts.d.ts +127 -0
  34. package/dist/core/engine.d.ts +26 -0
  35. package/dist/core/exit-codes.d.ts +19 -0
  36. package/dist/core/hooks.d.ts +50 -0
  37. package/dist/{apps/cli/src/core/index.js → core/index.d.ts} +1 -1
  38. package/dist/core/policy.d.ts +24 -0
  39. package/dist/core/profiles.d.ts +45 -0
  40. package/dist/core/wizard.d.ts +28 -0
  41. package/dist/interactive/index.d.ts +5 -0
  42. package/dist/plugins/GitStatusPlugin.d.ts +25 -0
  43. package/dist/providers/ai-provider.d.ts +21 -0
  44. package/dist/providers/local-provider.d.ts +21 -0
  45. package/dist/providers/remote-provider.d.ts +15 -0
  46. package/dist/telemetry/wrapper.d.ts +18 -0
  47. package/dist/types/api.d.ts +46 -0
  48. package/dist/ui.d.ts +52 -0
  49. package/dist/welcome.d.ts +8 -0
  50. package/package.json +8 -8
  51. package/dist/analyzer/commands/analyze.js +0 -260
  52. package/dist/analyzer/commands/config.js +0 -83
  53. package/dist/analyzer/commands/report.js +0 -38
  54. package/dist/analyzer/generators/report.generator.js +0 -123
  55. package/dist/analyzer/index.js +0 -44
  56. package/dist/analyzer/scanners/project.scanner.js +0 -92
  57. package/dist/analyzer/validators/contracts.validator.js +0 -42
  58. package/dist/analyzer/validators/maintainability.validator.js +0 -40
  59. package/dist/analyzer/validators/observability.validator.js +0 -39
  60. package/dist/analyzer/validators/performance.validator.js +0 -42
  61. package/dist/analyzer/validators/security.validator.js +0 -66
  62. package/dist/analyzer/validators/soc.validator.js +0 -75
  63. package/dist/apps/cli/src/analyzer/commands/analyze.js +0 -256
  64. package/dist/apps/cli/src/analyzer/commands/config.js +0 -83
  65. package/dist/apps/cli/src/analyzer/commands/report.js +0 -38
  66. package/dist/apps/cli/src/analyzer/generators/report.generator.js +0 -123
  67. package/dist/apps/cli/src/analyzer/index.js +0 -44
  68. package/dist/apps/cli/src/analyzer/scanners/project.scanner.js +0 -92
  69. package/dist/apps/cli/src/analyzer/validators/contracts.validator.js +0 -42
  70. package/dist/apps/cli/src/analyzer/validators/maintainability.validator.js +0 -40
  71. package/dist/apps/cli/src/analyzer/validators/observability.validator.js +0 -39
  72. package/dist/apps/cli/src/analyzer/validators/performance.validator.js +0 -42
  73. package/dist/apps/cli/src/analyzer/validators/security.validator.js +0 -66
  74. package/dist/apps/cli/src/analyzer/validators/soc.validator.js +0 -75
  75. package/dist/apps/cli/src/auth/secure-auth.js +0 -312
  76. package/dist/apps/cli/src/commands/analyze.js +0 -286
  77. package/dist/apps/cli/src/commands/auth-new.js +0 -37
  78. package/dist/apps/cli/src/commands/auth.js +0 -122
  79. package/dist/apps/cli/src/commands/config.js +0 -49
  80. package/dist/apps/cli/src/commands/deploy.js +0 -6
  81. package/dist/apps/cli/src/commands/init.js +0 -47
  82. package/dist/apps/cli/src/commands/logout.js +0 -23
  83. package/dist/apps/cli/src/commands/plugins.js +0 -21
  84. package/dist/apps/cli/src/commands/status.js +0 -80
  85. package/dist/apps/cli/src/commands/sync.js +0 -6
  86. package/dist/apps/cli/src/commands/whoami.js +0 -115
  87. package/dist/apps/cli/src/components/Dashboard.js +0 -168
  88. package/dist/apps/cli/src/components/DeltaApp.js +0 -56
  89. package/dist/apps/cli/src/components/UnifiedManager.js +0 -324
  90. package/dist/apps/cli/src/core/audit.js +0 -184
  91. package/dist/apps/cli/src/core/completion.js +0 -294
  92. package/dist/apps/cli/src/core/contracts.js +0 -6
  93. package/dist/apps/cli/src/core/engine.js +0 -124
  94. package/dist/apps/cli/src/core/exit-codes.js +0 -71
  95. package/dist/apps/cli/src/core/hooks.js +0 -181
  96. package/dist/apps/cli/src/core/policy.js +0 -115
  97. package/dist/apps/cli/src/core/profiles.js +0 -161
  98. package/dist/apps/cli/src/core/wizard.js +0 -203
  99. package/dist/apps/cli/src/index.js +0 -636
  100. package/dist/apps/cli/src/interactive/index.js +0 -11
  101. package/dist/apps/cli/src/plugins/GitStatusPlugin.js +0 -99
  102. package/dist/apps/cli/src/providers/ai-provider.js +0 -74
  103. package/dist/apps/cli/src/providers/local-provider.js +0 -302
  104. package/dist/apps/cli/src/providers/remote-provider.js +0 -100
  105. package/dist/apps/cli/src/types/api.js +0 -3
  106. package/dist/apps/cli/src/ui.js +0 -219
  107. package/dist/apps/cli/src/welcome.js +0 -81
  108. package/dist/auth/secure-auth.js +0 -372
  109. package/dist/bundle.js +0 -504
  110. package/dist/commands/analyze.js +0 -390
  111. package/dist/commands/auth-new.js +0 -37
  112. package/dist/commands/auth.js +0 -134
  113. package/dist/commands/config.js +0 -51
  114. package/dist/commands/deploy.js +0 -6
  115. package/dist/commands/init.js +0 -47
  116. package/dist/commands/logout.js +0 -31
  117. package/dist/commands/plugins.js +0 -21
  118. package/dist/commands/status.js +0 -82
  119. package/dist/commands/sync.js +0 -6
  120. package/dist/commands/whoami.js +0 -72
  121. package/dist/components/Dashboard.js +0 -169
  122. package/dist/components/DeltaApp.js +0 -57
  123. package/dist/components/UnifiedManager.js +0 -344
  124. package/dist/core/audit.js +0 -184
  125. package/dist/core/completion.js +0 -294
  126. package/dist/core/contracts.js +0 -6
  127. package/dist/core/engine.js +0 -124
  128. package/dist/core/exit-codes.js +0 -71
  129. package/dist/core/hooks.js +0 -181
  130. package/dist/core/index.js +0 -7
  131. package/dist/core/policy.js +0 -115
  132. package/dist/core/profiles.js +0 -161
  133. package/dist/core/wizard.js +0 -203
  134. package/dist/index.js +0 -387
  135. package/dist/interactive/index.js +0 -11
  136. package/dist/packages/domain/src/constitution/contracts/index.js +0 -43
  137. package/dist/packages/domain/src/constitution/contracts/ts.rules.js +0 -268
  138. package/dist/packages/domain/src/constitution/index.js +0 -139
  139. package/dist/packages/domain/src/constitution/maintainability/index.js +0 -43
  140. package/dist/packages/domain/src/constitution/maintainability/ts.rules.js +0 -344
  141. package/dist/packages/domain/src/constitution/observability/index.js +0 -43
  142. package/dist/packages/domain/src/constitution/observability/ts.rules.js +0 -307
  143. package/dist/packages/domain/src/constitution/performance/index.js +0 -43
  144. package/dist/packages/domain/src/constitution/performance/ts.rules.js +0 -325
  145. package/dist/packages/domain/src/constitution/security/index.js +0 -50
  146. package/dist/packages/domain/src/constitution/security/ts.rules.js +0 -267
  147. package/dist/packages/domain/src/constitution/soc/index.js +0 -43
  148. package/dist/packages/domain/src/constitution/soc/ts.rules.js +0 -360
  149. package/dist/packages/domain/src/contracts/analysis.contract.js +0 -18
  150. package/dist/packages/domain/src/contracts/index.js +0 -7
  151. package/dist/packages/domain/src/contracts/projects.contract.js +0 -18
  152. package/dist/packages/domain/src/control/registry/rules.registry.js +0 -29
  153. package/dist/packages/domain/src/control/schemas/policies.js +0 -6
  154. package/dist/packages/domain/src/core/analysis/discovery.js +0 -163
  155. package/dist/packages/domain/src/core/analysis/engine.contract.js +0 -298
  156. package/dist/packages/domain/src/core/analysis/engine.js +0 -77
  157. package/dist/packages/domain/src/core/analysis/index.js +0 -14
  158. package/dist/packages/domain/src/core/analysis/orchestrator.js +0 -242
  159. package/dist/packages/domain/src/core/comparison/engine.js +0 -29
  160. package/dist/packages/domain/src/core/comparison/index.js +0 -5
  161. package/dist/packages/domain/src/core/documentation/index.js +0 -5
  162. package/dist/packages/domain/src/core/documentation/pipeline.js +0 -41
  163. package/dist/packages/domain/src/core/fs/adapter.js +0 -111
  164. package/dist/packages/domain/src/core/fs/index.js +0 -5
  165. package/dist/packages/domain/src/core/parser/unified-parser.js +0 -166
  166. package/dist/packages/domain/src/index.js +0 -33
  167. package/dist/packages/domain/src/plugin/registry.js +0 -195
  168. package/dist/packages/domain/src/plugin/types.js +0 -6
  169. package/dist/packages/domain/src/ports/analysis.engine.js +0 -7
  170. package/dist/packages/domain/src/ports/audit.logger.js +0 -7
  171. package/dist/packages/domain/src/ports/project.repository.js +0 -7
  172. package/dist/packages/domain/src/rules/index.js +0 -134
  173. package/dist/packages/domain/src/types/analysis.js +0 -6
  174. package/dist/packages/domain/src/types/errors.js +0 -53
  175. package/dist/packages/domain/src/types/fs.js +0 -6
  176. package/dist/packages/domain/src/types/index.js +0 -7
  177. package/dist/plugins/GitStatusPlugin.js +0 -93
  178. package/dist/providers/ai-provider.js +0 -74
  179. package/dist/providers/local-provider.js +0 -304
  180. package/dist/providers/remote-provider.js +0 -100
  181. package/dist/types/api.js +0 -3
  182. package/dist/ui.js +0 -219
  183. package/dist/welcome.js +0 -81
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Local Execution Provider
3
+ * Implements all logic locally without external AI services
4
+ */
5
+ import { TaskRequest, TaskResponse, ExecutionProvider, ProviderCapabilities, LocalProviderConfig } from '../core/contracts.js';
6
+ export declare class LocalProvider implements ExecutionProvider {
7
+ readonly name = "local";
8
+ readonly version = "2.0.0";
9
+ readonly capabilities: ProviderCapabilities;
10
+ private config;
11
+ constructor(config: LocalProviderConfig);
12
+ isAvailable(): Promise<boolean>;
13
+ execute(request: TaskRequest): Promise<TaskResponse>;
14
+ private executeAnalyze;
15
+ private executeInit;
16
+ private executeStatus;
17
+ private executeConfig;
18
+ private executeAuth;
19
+ private discoverFiles;
20
+ }
21
+ //# sourceMappingURL=local-provider.d.ts.map
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Remote Execution Provider
3
+ * Connects to Delta API for cloud-based execution
4
+ */
5
+ import { TaskRequest, TaskResponse, ExecutionProvider, ProviderCapabilities, RemoteProviderConfig } from '../core/contracts.js';
6
+ export declare class RemoteProvider implements ExecutionProvider {
7
+ readonly name = "remote";
8
+ readonly version = "2.0.0";
9
+ readonly capabilities: ProviderCapabilities;
10
+ private config;
11
+ constructor(config: RemoteProviderConfig);
12
+ isAvailable(): Promise<boolean>;
13
+ execute(request: TaskRequest): Promise<TaskResponse>;
14
+ }
15
+ //# sourceMappingURL=remote-provider.d.ts.map
@@ -0,0 +1,18 @@
1
+ /**
2
+ * CLI Telemetry Wrapper
3
+ * @description Wraps CLI commands with telemetry and error handling
4
+ * @package apps/cli
5
+ */
6
+ /**
7
+ * Wrap a CLI command with telemetry
8
+ */
9
+ export declare function withCommandTelemetry<T>(commandName: string, args: string[], fn: () => T | Promise<T>): Promise<T>;
10
+ /**
11
+ * Global CLI error handler
12
+ */
13
+ export declare function handleCliError(error: unknown): void;
14
+ /**
15
+ * Print CLI health metrics
16
+ */
17
+ export declare function printHealthMetrics(): void;
18
+ //# sourceMappingURL=wrapper.d.ts.map
@@ -0,0 +1,46 @@
1
+ export interface ApiError {
2
+ message: string;
3
+ details?: Record<string, unknown>;
4
+ }
5
+ export type ApiResponse<T> = {
6
+ success: true;
7
+ data: T;
8
+ error?: undefined;
9
+ } | {
10
+ success: false;
11
+ data?: undefined;
12
+ error: ApiError;
13
+ };
14
+ export interface UserInfo {
15
+ email: string;
16
+ id: string;
17
+ plan: string;
18
+ role?: string;
19
+ }
20
+ export interface QuotaInfo {
21
+ used: number;
22
+ limit: number;
23
+ remaining: number;
24
+ resetAt: string;
25
+ }
26
+ export interface PlanLimits {
27
+ maxReportsPerMonth: number;
28
+ maxReportSizeBytes: number;
29
+ allowApiAccess: boolean;
30
+ allowUpload: boolean;
31
+ }
32
+ export interface WhoamiData {
33
+ user: UserInfo;
34
+ quota: QuotaInfo;
35
+ limits: PlanLimits;
36
+ }
37
+ export interface UploadInitData {
38
+ uploadId: string;
39
+ signing: {
40
+ secret: string;
41
+ };
42
+ }
43
+ export interface UploadFinalizeData {
44
+ reportId: string;
45
+ }
46
+ //# sourceMappingURL=api.d.ts.map
package/dist/ui.d.ts ADDED
@@ -0,0 +1,52 @@
1
+ import { Ora } from 'ora';
2
+ import Table from 'cli-table3';
3
+ export declare const icons: {
4
+ success: string;
5
+ error: string;
6
+ warning: string;
7
+ info: string;
8
+ arrow: string;
9
+ bullet: string;
10
+ star: string;
11
+ check: string;
12
+ cross: string;
13
+ loading: string;
14
+ rocket: string;
15
+ lock: string;
16
+ user: string;
17
+ package: string;
18
+ chart: string;
19
+ folder: string;
20
+ gear: string;
21
+ link: string;
22
+ sparkles: string;
23
+ dot: string;
24
+ };
25
+ export declare function startSpinner(text: string): Ora;
26
+ export declare function stopSpinner(success?: boolean, text?: string): void;
27
+ export declare function updateSpinnerText(text: string): void;
28
+ export declare function printHeader(title: string): void;
29
+ export declare function printSection(title: string): void;
30
+ export declare function printSubSection(title: string): void;
31
+ export declare function printSuccess(message: string): void;
32
+ export declare function printError(message: string, details?: string): void;
33
+ export declare function printWarning(message: string): void;
34
+ export declare function printInfo(message: string): void;
35
+ export declare function printKeyValue(key: string, value: string, keyColor?: import("chalk").ChalkInstance): void;
36
+ export declare function createTable(headers: string[]): Table.Table;
37
+ export declare function confirm(message: string, initial?: boolean): Promise<boolean>;
38
+ export declare function select<T extends string>(message: string, choices: {
39
+ title: string;
40
+ value: T;
41
+ description?: string;
42
+ }[]): Promise<T | null>;
43
+ export declare function input(message: string, initial?: string, validate?: (value: string) => boolean | string): Promise<string | null>;
44
+ export declare function password(message: string): Promise<string | null>;
45
+ export declare function printProgress(current: number, total: number, prefix?: string): void;
46
+ export declare function printBox(title: string, lines: string[]): void;
47
+ export declare function formatBytes(bytes: number): string;
48
+ export declare function formatDuration(ms: number): string;
49
+ export declare function printCommandHint(command: string, description: string): void;
50
+ export declare function printDivider(): void;
51
+ export declare function printWelcome(): void;
52
+ //# sourceMappingURL=ui.d.ts.map
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import gradient from 'gradient-string';
3
+ export declare const gradients: Record<string, ReturnType<typeof gradient>>;
4
+ export declare function printLogo(variant?: keyof typeof gradients): void;
5
+ export declare function printMinimalLogo(): void;
6
+ export declare function printWelcome(): void;
7
+ export declare function printTips(): void;
8
+ //# sourceMappingURL=welcome.d.ts.map
package/package.json CHANGED
@@ -1,30 +1,30 @@
1
1
  {
2
2
  "name": "@vee-stack/delta-cli",
3
- "version": "2.0.8",
3
+ "version": "2.0.10",
4
4
  "description": "Delta CLI v2 - Next-gen terminal interface with React Ink",
5
5
  "type": "module",
6
- "main": "./dist/index.js",
6
+ "main": "./dist/bundle.mjs",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
10
  "types": "./dist/index.d.ts",
11
- "default": "./dist/index.js"
11
+ "default": "./dist/bundle.mjs"
12
12
  }
13
13
  },
14
14
  "bin": {
15
- "delta": "dist/index.js",
16
- "dt": "dist/index.js"
15
+ "delta": "dist/bundle.mjs",
16
+ "dt": "dist/bundle.mjs"
17
17
  },
18
18
  "files": [
19
- "dist/**/*.js",
20
- "dist/index.d.ts",
19
+ "dist/bundle.mjs",
20
+ "dist/**/*.d.ts",
21
21
  "README.md"
22
22
  ],
23
23
  "publishConfig": {
24
24
  "access": "public"
25
25
  },
26
26
  "scripts": {
27
- "build": "tsc && node scripts/add-shebang.js",
27
+ "build": "tsc && node scripts/add-shebang.js && pnpm run bundle",
28
28
  "bundle": "node scripts/bundle.mjs",
29
29
  "build:publish": "pnpm run build",
30
30
  "dev": "tsx watch src/index.tsx",
@@ -1,260 +0,0 @@
1
- /**
2
- * Analyze Command
3
- * @description Main analysis command implementation
4
- */
5
- import * as fs from 'fs/promises';
6
- import * as path from 'path';
7
- import { ProjectScanner } from '../scanners/project.scanner';
8
- import { SecurityValidator } from '../validators/security.validator';
9
- import { PerformanceValidator } from '../validators/performance.validator';
10
- import { SocValidator } from '../validators/soc.validator';
11
- import { ContractsValidator } from '../validators/contracts.validator';
12
- import { MaintainabilityValidator } from '../validators/maintainability.validator';
13
- import { ObservabilityValidator } from '../validators/observability.validator';
14
- import { ReportGenerator } from '../generators/report.generator';
15
- export async function analyzeCommand(projectPath, options) {
16
- console.log(`🔍 Analyzing project: ${projectPath}`);
17
- console.log(` Language: ${options.language}`);
18
- console.log(` Depth: ${options.depth}`);
19
- console.log('');
20
- try {
21
- // 1. Validate project path
22
- const absolutePath = path.resolve(projectPath);
23
- await fs.access(absolutePath);
24
- // 2. Scan project structure
25
- console.log('📁 Scanning project structure...');
26
- const projectInfo = await ProjectScanner.scan(absolutePath, options.language);
27
- // 3. Run validators
28
- console.log('🔒 Validating Security...');
29
- const securityResult = await SecurityValidator.validate(projectInfo, options);
30
- console.log('⚡ Validating Performance...');
31
- const performanceResult = await PerformanceValidator.validate(projectInfo, options);
32
- console.log('🏗️ Validating Separation of Concerns...');
33
- const socResult = await SocValidator.validate(projectInfo, options);
34
- console.log('📋 Validating Contracts...');
35
- const contractsResult = await ContractsValidator.validate(projectInfo, options);
36
- console.log('🔧 Validating Maintainability...');
37
- const maintainabilityResult = await MaintainabilityValidator.validate(projectInfo, options);
38
- console.log('👁️ Validating Observability...');
39
- const observabilityResult = await ObservabilityValidator.validate(projectInfo, options);
40
- // 4. Calculate overall score
41
- const scores = {
42
- security: {
43
- ...securityResult,
44
- weight: 25,
45
- weightedScore: (securityResult.score / securityResult.maxScore) * 25,
46
- },
47
- performance: {
48
- ...performanceResult,
49
- weight: 20,
50
- weightedScore: (performanceResult.score / performanceResult.maxScore) * 20,
51
- },
52
- soc: { ...socResult, weight: 20, weightedScore: (socResult.score / socResult.maxScore) * 20 },
53
- contracts: {
54
- ...contractsResult,
55
- weight: 15,
56
- weightedScore: (contractsResult.score / contractsResult.maxScore) * 15,
57
- },
58
- maintainability: {
59
- ...maintainabilityResult,
60
- weight: 10,
61
- weightedScore: (maintainabilityResult.score / maintainabilityResult.maxScore) * 10,
62
- },
63
- observability: {
64
- ...observabilityResult,
65
- weight: 10,
66
- weightedScore: (observabilityResult.score / observabilityResult.maxScore) * 10,
67
- },
68
- };
69
- const overallScore = Object.values(scores).reduce((sum, s) => sum + s.weightedScore, 0);
70
- const percentage = Math.round(overallScore);
71
- const grade = percentage >= 90
72
- ? 'A'
73
- : percentage >= 80
74
- ? 'B'
75
- : percentage >= 70
76
- ? 'C'
77
- : percentage >= 60
78
- ? 'D'
79
- : 'F';
80
- // 5. Collect violations
81
- const violations = [
82
- ...securityResult.violations.map(v => ({ ...v, axis: 'Security' })),
83
- ...performanceResult.violations.map(v => ({ ...v, axis: 'Performance' })),
84
- ...socResult.violations.map(v => ({ ...v, axis: 'SoC' })),
85
- ...contractsResult.violations.map(v => ({ ...v, axis: 'Contracts' })),
86
- ...maintainabilityResult.violations.map(v => ({ ...v, axis: 'Maintainability' })),
87
- ...observabilityResult.violations.map(v => ({ ...v, axis: 'Observability' })),
88
- ];
89
- // 6. Generate recommendations
90
- const recommendations = generateRecommendations(violations, scores);
91
- // 7. Build result
92
- const result = {
93
- project: {
94
- path: absolutePath,
95
- name: path.basename(absolutePath),
96
- language: options.language,
97
- size: projectInfo.size,
98
- fileCount: projectInfo.fileCount,
99
- },
100
- timestamp: new Date().toISOString(),
101
- constitution: {
102
- version: '0.5.0',
103
- axes: ['security', 'performance', 'maintainability'],
104
- },
105
- scores,
106
- overall: {
107
- score: overallScore,
108
- percentage,
109
- grade,
110
- compliant: violations.filter(v => v.severity === 'critical' || v.severity === 'error').length === 0,
111
- },
112
- violations,
113
- recommendations,
114
- };
115
- // 8. Output results
116
- await outputResults(result, options);
117
- // 9. Exit with appropriate code
118
- if (options.strict &&
119
- violations.some(v => v.severity === 'critical' || v.severity === 'error')) {
120
- process.exit(1);
121
- }
122
- }
123
- catch (error) {
124
- console.error('❌ Analysis failed:', error instanceof Error ? error.message : String(error));
125
- process.exit(1);
126
- }
127
- }
128
- async function outputResults(result, options) {
129
- switch (options.output) {
130
- case 'json':
131
- console.log(JSON.stringify(result, null, 2));
132
- break;
133
- case 'html':
134
- {
135
- const html = ReportGenerator.generateHTML(result);
136
- const htmlPath = `${result.project.name}-analysis.html`;
137
- await fs.writeFile(htmlPath, html);
138
- console.log(`📄 HTML report saved to: ${htmlPath}`);
139
- }
140
- break;
141
- case 'markdown':
142
- {
143
- const markdown = ReportGenerator.generateMarkdown(result);
144
- const mdPath = `${result.project.name}-analysis.md`;
145
- await fs.writeFile(mdPath, markdown);
146
- console.log(`📄 Markdown report saved to: ${mdPath}`);
147
- }
148
- break;
149
- default:
150
- // Console output
151
- printConsoleReport(result);
152
- }
153
- }
154
- function printConsoleReport(result) {
155
- console.log('\n' + '='.repeat(60));
156
- console.log('📊 DELTA CONSTITUTION ANALYSIS REPORT');
157
- console.log('='.repeat(60));
158
- console.log(`\nProject: ${result.project.name}`);
159
- console.log(`Path: ${result.project.path}`);
160
- console.log(`Language: ${result.project.language}`);
161
- console.log(`Files: ${result.project.fileCount}`);
162
- console.log(`Constitution: v${result.constitution.version}`);
163
- console.log(`\n${'-'.repeat(60)}`);
164
- console.log(`\n🎯 OVERALL SCORE: ${result.overall.percentage}% (Grade: ${result.overall.grade})`);
165
- console.log(`Status: ${result.overall.compliant ? '✅ Compliant' : '❌ Non-Compliant'}`);
166
- console.log(`\n${'-'.repeat(60)}`);
167
- console.log('AXIS SCORES:');
168
- console.log(`${'-'.repeat(60)}`);
169
- Object.entries(result.scores).forEach(([axis, score]) => {
170
- const bar = '█'.repeat(Math.round(score.percentage / 5)) +
171
- '░'.repeat(20 - Math.round(score.percentage / 5));
172
- console.log(`${axis.padEnd(20)} ${bar} ${score.percentage.toString().padStart(3)}%`);
173
- });
174
- if (result.violations.length > 0) {
175
- console.log(`\n${'-'.repeat(60)}`);
176
- console.log('VIOLATIONS:');
177
- console.log(`${'-'.repeat(60)}`);
178
- const critical = result.violations.filter(v => v.severity === 'critical');
179
- const errors = result.violations.filter(v => v.severity === 'error');
180
- const warnings = result.violations.filter(v => v.severity === 'warning');
181
- if (critical.length > 0) {
182
- console.log('\n🔴 Critical:');
183
- critical.forEach(v => console.log(` - [${v.id}] ${v.message}`));
184
- }
185
- if (errors.length > 0) {
186
- console.log('\n🟠 Errors:');
187
- errors.forEach(v => console.log(` - [${v.id}] ${v.message}`));
188
- }
189
- if (warnings.length > 0) {
190
- console.log('\n🟡 Warnings:');
191
- warnings.slice(0, 5).forEach(v => console.log(` - [${v.id}] ${v.message}`));
192
- if (warnings.length > 5) {
193
- console.log(` ... and ${warnings.length - 5} more warnings`);
194
- }
195
- }
196
- }
197
- if (result.recommendations.length > 0) {
198
- console.log(`\n${'-'.repeat(60)}`);
199
- console.log('TOP RECOMMENDATIONS:');
200
- console.log(`${'-'.repeat(60)}`);
201
- result.recommendations
202
- .filter(r => r.priority === 'high')
203
- .slice(0, 5)
204
- .forEach(r => {
205
- console.log(`\n[${r.axis}] ${r.description}`);
206
- console.log(` Action: ${r.action}`);
207
- console.log(` Effort: ${r.effort}`);
208
- });
209
- }
210
- console.log('\n' + '='.repeat(60) + '\n');
211
- }
212
- function generateRecommendations(violations, scores) {
213
- const recommendations = [];
214
- // Security recommendations
215
- if (scores.security.percentage < 80) {
216
- recommendations.push({
217
- axis: 'Security',
218
- priority: 'high',
219
- description: 'Security score below 80%',
220
- action: 'Implement Policy Guards, Audit Logging, and Fail-Closed patterns',
221
- effort: '2-3 days',
222
- });
223
- }
224
- // Performance recommendations
225
- if (scores.performance.percentage < 70) {
226
- recommendations.push({
227
- axis: 'Performance',
228
- priority: 'medium',
229
- description: 'Performance optimizations needed',
230
- action: 'Add lazy loading, code splitting, and caching layers',
231
- effort: '1-2 days',
232
- });
233
- }
234
- // SoC recommendations
235
- if (scores.soc.percentage < 80) {
236
- recommendations.push({
237
- axis: 'SoC',
238
- priority: 'high',
239
- description: 'Layer boundaries need improvement',
240
- action: 'Refactor to follow 7-layer architecture, fix import violations',
241
- effort: '3-5 days',
242
- });
243
- }
244
- // Add specific recommendations based on violations
245
- const failClosedViolations = violations.filter(v => v.message.includes('Fail-Open'));
246
- if (failClosedViolations.length > 0) {
247
- recommendations.push({
248
- axis: 'Security',
249
- priority: 'high',
250
- description: `Found ${failClosedViolations.length} Fail-Open patterns`,
251
- action: 'Replace with Fail-Closed: if (!isAllowed) return deny()',
252
- effort: '1 day',
253
- });
254
- }
255
- return recommendations.sort((a, b) => {
256
- const priorityOrder = { high: 0, medium: 1, low: 2 };
257
- return priorityOrder[a.priority] - priorityOrder[b.priority];
258
- });
259
- }
260
- //# sourceMappingURL=analyze.js.map
@@ -1,83 +0,0 @@
1
- /**
2
- * Config Command
3
- * @description Manage analyzer configuration
4
- */
5
- import * as fs from 'fs/promises';
6
- import * as path from 'path';
7
- const DEFAULT_CONFIG = {
8
- version: '1.0.0',
9
- language: 'typescript',
10
- depth: 'standard',
11
- output: 'json',
12
- strict: false,
13
- rules: {
14
- security: { enabled: true, weight: 25 },
15
- performance: { enabled: true, weight: 20 },
16
- soc: { enabled: true, weight: 20 },
17
- contracts: { enabled: true, weight: 15 },
18
- maintainability: { enabled: true, weight: 10 },
19
- observability: { enabled: true, weight: 10 },
20
- },
21
- thresholds: {
22
- critical: 0,
23
- error: 5,
24
- warning: 20,
25
- },
26
- };
27
- export async function configCommand(options) {
28
- const configPath = path.join(process.cwd(), '.delta-analyzer.json');
29
- if (options.init) {
30
- try {
31
- await fs.writeFile(configPath, JSON.stringify(DEFAULT_CONFIG, null, 2));
32
- console.log('✅ Configuration file created: .delta-analyzer.json');
33
- console.log('\nEdit this file to customize analyzer settings.');
34
- }
35
- catch (error) {
36
- console.error('❌ Failed to create config:', error instanceof Error ? error.message : String(error));
37
- process.exit(1);
38
- }
39
- return;
40
- }
41
- if (options.show) {
42
- try {
43
- const content = await fs.readFile(configPath, 'utf-8');
44
- const config = JSON.parse(content);
45
- console.log('\n📋 Current Configuration:\n');
46
- console.log(JSON.stringify(config, null, 2));
47
- }
48
- catch {
49
- console.log('⚠️ No configuration file found. Run with --init to create one.');
50
- }
51
- return;
52
- }
53
- if (options.set) {
54
- const [key, value] = options.set.split('=');
55
- if (!key || !value) {
56
- console.error('❌ Invalid format. Use: --set key=value');
57
- process.exit(1);
58
- }
59
- try {
60
- const content = await fs.readFile(configPath, 'utf-8');
61
- const config = JSON.parse(content);
62
- // Simple nested key support (e.g., "rules.security.enabled")
63
- const keys = key.split('.');
64
- let current = config;
65
- for (let i = 0; i < keys.length - 1; i++) {
66
- current = current[keys[i]];
67
- }
68
- current[keys[keys.length - 1]] = value;
69
- await fs.writeFile(configPath, JSON.stringify(config, null, 2));
70
- console.log(`✅ Set ${key} = ${value}`);
71
- }
72
- catch {
73
- console.log('⚠️ No configuration file found. Run with --init to create one.');
74
- process.exit(1);
75
- }
76
- return;
77
- }
78
- console.log('Usage:');
79
- console.log(' delta-analyze config --init Create default configuration');
80
- console.log(' delta-analyze config --show Show current configuration');
81
- console.log(' delta-analyze config --set key=value Set configuration value');
82
- }
83
- //# sourceMappingURL=config.js.map
@@ -1,38 +0,0 @@
1
- /**
2
- * Report Command
3
- * @description Generate report from previous analysis
4
- */
5
- import * as fs from 'fs/promises';
6
- import { ReportGenerator } from '../generators/report.generator';
7
- export async function reportCommand(analysisFile, options) {
8
- try {
9
- // Read analysis file
10
- const content = await fs.readFile(analysisFile, 'utf-8');
11
- const analysis = JSON.parse(content);
12
- // Generate report
13
- let output;
14
- let extension;
15
- switch (options.template) {
16
- case 'html':
17
- output = ReportGenerator.generateHTML(analysis);
18
- extension = 'html';
19
- break;
20
- case 'markdown':
21
- output = ReportGenerator.generateMarkdown(analysis);
22
- extension = 'md';
23
- break;
24
- default:
25
- console.error(`Unknown template: ${options.template}`);
26
- process.exit(1);
27
- }
28
- // Write to file
29
- const outputPath = options.output || `${analysis.project.name}-report.${extension}`;
30
- await fs.writeFile(outputPath, output);
31
- console.log(`✅ Report generated: ${outputPath}`);
32
- }
33
- catch (error) {
34
- console.error('❌ Failed to generate report:', error instanceof Error ? error.message : String(error));
35
- process.exit(1);
36
- }
37
- }
38
- //# sourceMappingURL=report.js.map