aios-core 2.1.5 → 2.1.6

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 (29) hide show
  1. package/.aios-core/development/tasks/analyze-brownfield.md +456 -0
  2. package/.aios-core/development/tasks/setup-project-docs.md +440 -0
  3. package/.aios-core/infrastructure/scripts/documentation-integrity/brownfield-analyzer.js +501 -0
  4. package/.aios-core/infrastructure/scripts/documentation-integrity/config-generator.js +368 -0
  5. package/.aios-core/infrastructure/scripts/documentation-integrity/deployment-config-loader.js +308 -0
  6. package/.aios-core/infrastructure/scripts/documentation-integrity/doc-generator.js +331 -0
  7. package/.aios-core/infrastructure/scripts/documentation-integrity/gitignore-generator.js +312 -0
  8. package/.aios-core/infrastructure/scripts/documentation-integrity/index.js +74 -0
  9. package/.aios-core/infrastructure/scripts/documentation-integrity/mode-detector.js +389 -0
  10. package/.aios-core/infrastructure/templates/core-config/core-config-brownfield.tmpl.yaml +176 -0
  11. package/.aios-core/infrastructure/templates/core-config/core-config-greenfield.tmpl.yaml +127 -0
  12. package/.aios-core/infrastructure/templates/gitignore/gitignore-aios-base.tmpl +63 -0
  13. package/.aios-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -0
  14. package/.aios-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -0
  15. package/.aios-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -0
  16. package/.aios-core/infrastructure/templates/project-docs/coding-standards-tmpl.md +346 -0
  17. package/.aios-core/infrastructure/templates/project-docs/source-tree-tmpl.md +177 -0
  18. package/.aios-core/infrastructure/templates/project-docs/tech-stack-tmpl.md +267 -0
  19. package/package.json +1 -1
  20. package/packages/installer/src/config/templates/env-template.js +2 -2
  21. package/packages/installer/src/wizard/wizard.js +185 -34
  22. package/packages/installer/tests/integration/environment-configuration.test.js +2 -1
  23. package/packages/installer/tests/unit/env-template.test.js +3 -2
  24. package/.aios-core/development/tasks/validate-structure.md +0 -243
  25. package/.aios-core/infrastructure/scripts/source-tree-guardian/index.js +0 -375
  26. package/.aios-core/infrastructure/scripts/source-tree-guardian/manifest-generator.js +0 -410
  27. package/.aios-core/infrastructure/scripts/source-tree-guardian/rules/naming-rules.yaml +0 -285
  28. package/.aios-core/infrastructure/scripts/source-tree-guardian/rules/placement-rules.yaml +0 -262
  29. package/.aios-core/infrastructure/scripts/source-tree-guardian/validator.js +0 -468
@@ -0,0 +1,368 @@
1
+ /**
2
+ * Config Generator Module
3
+ *
4
+ * Generates project-specific core-config.yaml from templates.
5
+ * Supports greenfield and brownfield modes with deployment configuration.
6
+ *
7
+ * @module documentation-integrity/config-generator
8
+ * @version 1.0.0
9
+ * @story 6.9
10
+ */
11
+
12
+ const fs = require('fs');
13
+ const path = require('path');
14
+ const yaml = require('yaml');
15
+
16
+ // Template directory
17
+ const TEMPLATES_DIR = path.join(__dirname, '..', '..', 'templates', 'core-config');
18
+
19
+ /**
20
+ * Template file names
21
+ * @enum {string}
22
+ */
23
+ const ConfigTemplates = {
24
+ GREENFIELD: 'core-config-greenfield.tmpl.yaml',
25
+ BROWNFIELD: 'core-config-brownfield.tmpl.yaml',
26
+ };
27
+
28
+ /**
29
+ * Deployment workflow types
30
+ * @enum {string}
31
+ */
32
+ const DeploymentWorkflow = {
33
+ STAGING_FIRST: 'staging-first',
34
+ DIRECT_TO_MAIN: 'direct-to-main',
35
+ };
36
+
37
+ /**
38
+ * Deployment platform options
39
+ * @enum {string}
40
+ */
41
+ const DeploymentPlatform = {
42
+ RAILWAY: 'Railway',
43
+ VERCEL: 'Vercel',
44
+ AWS: 'AWS',
45
+ DOCKER: 'Docker',
46
+ NONE: 'None',
47
+ };
48
+
49
+ /**
50
+ * Default deployment configuration
51
+ * @type {Object}
52
+ */
53
+ const DEFAULT_DEPLOYMENT_CONFIG = {
54
+ workflow: DeploymentWorkflow.STAGING_FIRST,
55
+ stagingBranch: 'staging',
56
+ productionBranch: 'main',
57
+ defaultTarget: 'staging',
58
+ stagingEnvName: 'Staging',
59
+ productionEnvName: 'Production',
60
+ platform: DeploymentPlatform.NONE,
61
+ qualityGates: {
62
+ lint: true,
63
+ typecheck: true,
64
+ tests: true,
65
+ securityScan: false,
66
+ minCoverage: 50,
67
+ },
68
+ };
69
+
70
+ /**
71
+ * Escapes a string for use in YAML double-quoted strings
72
+ *
73
+ * @param {string} str - String to escape
74
+ * @returns {string} Escaped string safe for YAML
75
+ */
76
+ function escapeYamlString(str) {
77
+ return String(str)
78
+ .replace(/\\/g, '\\\\') // Escape backslashes first
79
+ .replace(/"/g, '\\"') // Escape double quotes
80
+ .replace(/\n/g, '\\n') // Escape newlines
81
+ .replace(/\r/g, '\\r') // Escape carriage returns
82
+ .replace(/\t/g, '\\t'); // Escape tabs
83
+ }
84
+
85
+ /**
86
+ * Formats an array as YAML list string for template substitution
87
+ *
88
+ * @param {Array} arr - Array to format
89
+ * @param {number} [indent=4] - Number of spaces for indentation
90
+ * @returns {string} YAML-formatted array string
91
+ */
92
+ function formatArrayAsYaml(arr, indent = 4) {
93
+ if (!Array.isArray(arr) || arr.length === 0) {
94
+ return '[]';
95
+ }
96
+ const spaces = ' '.repeat(indent);
97
+ const items = arr.map((item) => `\n${spaces}- "${escapeYamlString(item)}"`).join('');
98
+ return items;
99
+ }
100
+
101
+ /**
102
+ * Builds config context from project info and deployment settings
103
+ *
104
+ * @param {string} projectName - Project name
105
+ * @param {string} mode - Installation mode (greenfield/brownfield)
106
+ * @param {Object} deploymentConfig - Deployment configuration
107
+ * @param {Object} [analysisResults] - Brownfield analysis results (if applicable)
108
+ * @returns {Object} Config context for template rendering
109
+ */
110
+ function buildConfigContext(projectName, mode, deploymentConfig = {}, analysisResults = {}) {
111
+ const config = { ...DEFAULT_DEPLOYMENT_CONFIG, ...deploymentConfig };
112
+ const isStaging = config.workflow === DeploymentWorkflow.STAGING_FIRST;
113
+
114
+ const context = {
115
+ // Basic info
116
+ PROJECT_NAME: projectName,
117
+ GENERATED_DATE: new Date().toISOString().split('T')[0],
118
+ PROJECT_VERSION: analysisResults.version || '0.1.0',
119
+
120
+ // Deployment workflow
121
+ DEPLOYMENT_WORKFLOW: config.workflow,
122
+
123
+ // Branch configuration
124
+ STAGING_BRANCH: isStaging ? config.stagingBranch : 'null',
125
+ PRODUCTION_BRANCH: config.productionBranch,
126
+ // Use symbolic name ('staging'/'production') - deployment-config-loader resolves to actual branch
127
+ DEFAULT_TARGET: isStaging ? 'staging' : 'production',
128
+
129
+ // Environment names
130
+ STAGING_ENV_NAME: config.stagingEnvName,
131
+ PRODUCTION_ENV_NAME: config.productionEnvName,
132
+
133
+ // Platform
134
+ DEPLOYMENT_PLATFORM: config.platform,
135
+
136
+ // Quality gates
137
+ QUALITY_LINT: config.qualityGates.lint,
138
+ QUALITY_TYPECHECK: config.qualityGates.typecheck,
139
+ QUALITY_TESTS: config.qualityGates.tests,
140
+ QUALITY_SECURITY: config.qualityGates.securityScan || false,
141
+ MIN_COVERAGE: config.qualityGates.minCoverage || 50,
142
+
143
+ // Brownfield specific (defaults for greenfield)
144
+ HAS_EXISTING_STRUCTURE: analysisResults.hasExistingStructure || false,
145
+ HAS_EXISTING_WORKFLOWS: analysisResults.hasExistingWorkflows || false,
146
+ HAS_EXISTING_STANDARDS: analysisResults.hasExistingStandards || false,
147
+ MERGE_STRATEGY: analysisResults.mergeStrategy || 'parallel',
148
+
149
+ // Detected configs (brownfield)
150
+ DETECTED_TECH_STACK: JSON.stringify(analysisResults.techStack || []),
151
+ DETECTED_FRAMEWORKS: JSON.stringify(analysisResults.frameworks || []),
152
+ DETECTED_LINTING: analysisResults.linting || 'none',
153
+ DETECTED_FORMATTING: analysisResults.formatting || 'none',
154
+ DETECTED_TESTING: analysisResults.testing || 'none',
155
+
156
+ // Auto deploy settings
157
+ STAGING_AUTO_DEPLOY: config.stagingAutoDeploy !== false,
158
+ PRODUCTION_AUTO_DEPLOY: config.productionAutoDeploy !== false,
159
+
160
+ // PR settings
161
+ AUTO_ASSIGN_REVIEWERS: config.autoAssignReviewers || false,
162
+ DRAFT_BY_DEFAULT: config.draftByDefault || false,
163
+
164
+ // Existing config paths (brownfield)
165
+ ESLINT_CONFIG_PATH: analysisResults.eslintPath || 'null',
166
+ PRETTIER_CONFIG_PATH: analysisResults.prettierPath || 'null',
167
+ TSCONFIG_PATH: analysisResults.tsconfigPath || 'null',
168
+ FLAKE8_CONFIG_PATH: analysisResults.flake8Path || 'null',
169
+ GITHUB_WORKFLOWS_PATH: analysisResults.githubWorkflowsPath || 'null',
170
+ GITLAB_CI_PATH: analysisResults.gitlabCiPath || 'null',
171
+ PACKAGE_JSON_PATH: analysisResults.packageJsonPath || 'null',
172
+ REQUIREMENTS_PATH: analysisResults.requirementsPath || 'null',
173
+ GO_MOD_PATH: analysisResults.goModPath || 'null',
174
+
175
+ // Merge settings
176
+ MERGE_WORKFLOWS: analysisResults.mergeWorkflows || false,
177
+
178
+ // Migration notes (brownfield)
179
+ MIGRATION_SUMMARY: analysisResults.summary || 'No analysis performed',
180
+ MANUAL_REVIEW_ITEMS: analysisResults.manualReviewItems || [],
181
+ CONFLICTS: analysisResults.conflicts || [],
182
+ RECOMMENDATIONS: analysisResults.recommendations || [],
183
+
184
+ // Pre-formatted YAML arrays for template substitution (avoids Handlebars #each)
185
+ MANUAL_REVIEW_ITEMS_YAML: formatArrayAsYaml(analysisResults.manualReviewItems || []),
186
+ CONFLICTS_YAML: formatArrayAsYaml(analysisResults.conflicts || []),
187
+ RECOMMENDATIONS_YAML: formatArrayAsYaml(analysisResults.recommendations || []),
188
+ };
189
+
190
+ return context;
191
+ }
192
+
193
+ /**
194
+ * Renders a YAML template with context
195
+ *
196
+ * @param {string} template - Template content
197
+ * @param {Object} context - Context object
198
+ * @returns {string} Rendered YAML content
199
+ */
200
+ function renderConfigTemplate(template, context) {
201
+ let result = template;
202
+
203
+ // Process {{#each}} blocks
204
+ result = processEachBlocks(result, context);
205
+
206
+ // Replace simple variables {{variable}}
207
+ result = result.replace(/\{\{([^#/}][^}]*)\}\}/g, (match, key) => {
208
+ const value = context[key.trim()];
209
+ if (value === undefined) return match;
210
+ if (typeof value === 'boolean') return value.toString();
211
+ if (typeof value === 'number') return value.toString();
212
+ return String(value);
213
+ });
214
+
215
+ return result;
216
+ }
217
+
218
+ /**
219
+ * Process {{#each array}}...{{/each}} blocks
220
+ *
221
+ * @param {string} template - Template string
222
+ * @param {Object} context - Context object
223
+ * @returns {string} Processed template
224
+ */
225
+ function processEachBlocks(template, context) {
226
+ const eachRegex = /\{\{#each\s+(\w+)\}\}([\s\S]*?)\{\{\/each\}\}/g;
227
+
228
+ return template.replace(eachRegex, (match, arrayName, content) => {
229
+ const array = context[arrayName];
230
+ if (!Array.isArray(array) || array.length === 0) {
231
+ return '';
232
+ }
233
+
234
+ return array
235
+ .map((item) => {
236
+ return content.replace(/\{\{this\}\}/g, String(item));
237
+ })
238
+ .join('');
239
+ });
240
+ }
241
+
242
+ /**
243
+ * Loads a config template
244
+ *
245
+ * @param {string} templateName - Template file name
246
+ * @returns {string} Template content
247
+ * @throws {Error} If template not found
248
+ */
249
+ function loadConfigTemplate(templateName) {
250
+ const templatePath = path.join(TEMPLATES_DIR, templateName);
251
+
252
+ if (!fs.existsSync(templatePath)) {
253
+ throw new Error(`Config template not found: ${templatePath}`);
254
+ }
255
+
256
+ return fs.readFileSync(templatePath, 'utf8');
257
+ }
258
+
259
+ /**
260
+ * Generates core-config.yaml for a project
261
+ *
262
+ * @param {string} targetDir - Target directory
263
+ * @param {string} mode - Installation mode (greenfield/brownfield)
264
+ * @param {Object} context - Config context
265
+ * @param {Object} [options] - Generation options
266
+ * @param {boolean} [options.dryRun] - Don't write file, just return content
267
+ * @returns {Object} Generation result
268
+ */
269
+ function generateConfig(targetDir, mode, context, options = {}) {
270
+ const templateName =
271
+ mode === 'brownfield' ? ConfigTemplates.BROWNFIELD : ConfigTemplates.GREENFIELD;
272
+
273
+ try {
274
+ const template = loadConfigTemplate(templateName);
275
+ const rendered = renderConfigTemplate(template, context);
276
+
277
+ // Validate YAML syntax
278
+ try {
279
+ yaml.parse(rendered);
280
+ } catch (yamlError) {
281
+ return {
282
+ success: false,
283
+ error: `Generated YAML is invalid: ${yamlError.message}`,
284
+ content: rendered,
285
+ };
286
+ }
287
+
288
+ const configDir = path.join(targetDir, '.aios-core');
289
+ const configPath = path.join(configDir, 'core-config.yaml');
290
+
291
+ if (!options.dryRun) {
292
+ fs.mkdirSync(configDir, { recursive: true });
293
+ fs.writeFileSync(configPath, rendered, 'utf8');
294
+ }
295
+
296
+ return {
297
+ success: true,
298
+ path: configPath,
299
+ content: rendered,
300
+ };
301
+ } catch (error) {
302
+ return {
303
+ success: false,
304
+ error: error.message,
305
+ content: null,
306
+ };
307
+ }
308
+ }
309
+
310
+ /**
311
+ * Generates deployment config context from user inputs
312
+ *
313
+ * @param {Object} inputs - User inputs from wizard
314
+ * @returns {Object} Deployment configuration
315
+ */
316
+ function buildDeploymentConfig(inputs = {}) {
317
+ return {
318
+ workflow: inputs.workflow || DeploymentWorkflow.STAGING_FIRST,
319
+ stagingBranch: inputs.stagingBranch || 'staging',
320
+ productionBranch: inputs.productionBranch || 'main',
321
+ stagingEnvName: inputs.stagingEnvName || 'Staging',
322
+ productionEnvName: inputs.productionEnvName || 'Production',
323
+ platform: inputs.platform || DeploymentPlatform.NONE,
324
+ qualityGates: {
325
+ lint: inputs.lint !== false,
326
+ typecheck: inputs.typecheck !== false,
327
+ tests: inputs.tests !== false,
328
+ securityScan: inputs.securityScan || false,
329
+ minCoverage: inputs.minCoverage || 50,
330
+ },
331
+ autoAssignReviewers: inputs.autoAssignReviewers || false,
332
+ draftByDefault: inputs.draftByDefault || false,
333
+ };
334
+ }
335
+
336
+ /**
337
+ * Gets default deployment config for a mode
338
+ *
339
+ * @param {string} mode - Installation mode
340
+ * @returns {Object} Default deployment config
341
+ */
342
+ function getDefaultDeploymentConfig(mode) {
343
+ if (mode === 'brownfield') {
344
+ // Brownfield might use direct-to-main if solo project
345
+ return {
346
+ ...DEFAULT_DEPLOYMENT_CONFIG,
347
+ // Keep staging-first as default, but brownfield analyzer may change this
348
+ };
349
+ }
350
+
351
+ return { ...DEFAULT_DEPLOYMENT_CONFIG };
352
+ }
353
+
354
+ module.exports = {
355
+ buildConfigContext,
356
+ renderConfigTemplate,
357
+ loadConfigTemplate,
358
+ generateConfig,
359
+ buildDeploymentConfig,
360
+ getDefaultDeploymentConfig,
361
+ formatArrayAsYaml,
362
+ escapeYamlString,
363
+ ConfigTemplates,
364
+ DeploymentWorkflow,
365
+ DeploymentPlatform,
366
+ DEFAULT_DEPLOYMENT_CONFIG,
367
+ TEMPLATES_DIR,
368
+ };
@@ -0,0 +1,308 @@
1
+ /**
2
+ * Deployment Config Loader
3
+ *
4
+ * Shared utility for loading deployment configuration from core-config.yaml.
5
+ * Implements the Configuration-Driven Architecture pattern.
6
+ *
7
+ * Usage:
8
+ * const { loadDeploymentConfig } = require('./deployment-config-loader');
9
+ * const config = loadDeploymentConfig(projectRoot);
10
+ *
11
+ * @module documentation-integrity/deployment-config-loader
12
+ * @version 1.0.0
13
+ * @story 6.9
14
+ */
15
+
16
+ const fs = require('fs');
17
+ const path = require('path');
18
+ const yaml = require('yaml');
19
+
20
+ /**
21
+ * Default deployment configuration
22
+ * Used when core-config.yaml doesn't exist or deployment section is missing
23
+ *
24
+ * @type {Object}
25
+ */
26
+ const DEFAULT_DEPLOYMENT_CONFIG = {
27
+ workflow: 'staging-first',
28
+
29
+ branches: {
30
+ staging_targets: ['feature/*', 'fix/*', 'docs/*', 'chore/*', 'refactor/*', 'test/*'],
31
+ production_targets: ['hotfix/*'],
32
+ staging_branch: 'staging',
33
+ production_branch: 'main',
34
+ default_target: 'staging',
35
+ },
36
+
37
+ environments: {
38
+ staging: {
39
+ name: 'Staging',
40
+ auto_deploy: true,
41
+ platform: null,
42
+ url: null,
43
+ promotion_message: 'After validation, create PR to main for production',
44
+ },
45
+ production: {
46
+ name: 'Production',
47
+ auto_deploy: true,
48
+ platform: null,
49
+ url: null,
50
+ promotion_message: 'This is the final production deployment',
51
+ },
52
+ },
53
+
54
+ quality_gates: {
55
+ lint: true,
56
+ typecheck: true,
57
+ tests: true,
58
+ security_scan: false,
59
+ min_coverage: 50,
60
+ },
61
+
62
+ pr_defaults: {
63
+ auto_assign_reviewers: false,
64
+ draft_by_default: false,
65
+ include_deployment_info: true,
66
+ },
67
+ };
68
+
69
+ /**
70
+ * Loads deployment configuration from core-config.yaml
71
+ *
72
+ * @param {string} projectRoot - Project root directory
73
+ * @returns {Object} Deployment configuration (merged with defaults)
74
+ */
75
+ function loadDeploymentConfig(projectRoot) {
76
+ const configPath = path.join(projectRoot, '.aios-core', 'core-config.yaml');
77
+
78
+ if (!fs.existsSync(configPath)) {
79
+ console.warn(`[deployment-config-loader] core-config.yaml not found at ${configPath}`);
80
+ console.warn('[deployment-config-loader] Using default deployment configuration');
81
+ return { ...DEFAULT_DEPLOYMENT_CONFIG };
82
+ }
83
+
84
+ try {
85
+ const configContent = fs.readFileSync(configPath, 'utf8');
86
+ const config = yaml.parse(configContent);
87
+
88
+ if (!config || !config.deployment) {
89
+ console.warn('[deployment-config-loader] No deployment section in core-config.yaml');
90
+ console.warn('[deployment-config-loader] Using default deployment configuration');
91
+ return { ...DEFAULT_DEPLOYMENT_CONFIG };
92
+ }
93
+
94
+ // Deep merge with defaults to ensure all required fields exist
95
+ return deepMerge(DEFAULT_DEPLOYMENT_CONFIG, config.deployment);
96
+ } catch (error) {
97
+ console.error(`[deployment-config-loader] Error loading config: ${error.message}`);
98
+ console.warn('[deployment-config-loader] Using default deployment configuration');
99
+ return { ...DEFAULT_DEPLOYMENT_CONFIG };
100
+ }
101
+ }
102
+
103
+ /**
104
+ * Loads project configuration from core-config.yaml
105
+ *
106
+ * @param {string} projectRoot - Project root directory
107
+ * @returns {Object|null} Project configuration or null if not found
108
+ */
109
+ function loadProjectConfig(projectRoot) {
110
+ const configPath = path.join(projectRoot, '.aios-core', 'core-config.yaml');
111
+
112
+ if (!fs.existsSync(configPath)) {
113
+ return null;
114
+ }
115
+
116
+ try {
117
+ const configContent = fs.readFileSync(configPath, 'utf8');
118
+ const config = yaml.parse(configContent);
119
+ return config.project || null;
120
+ } catch (error) {
121
+ console.error(`[deployment-config-loader] Error loading project config: ${error.message}`);
122
+ return null;
123
+ }
124
+ }
125
+
126
+ /**
127
+ * Gets the target branch for a given source branch
128
+ *
129
+ * @param {string} sourceBranch - Source branch name
130
+ * @param {Object} deploymentConfig - Deployment configuration
131
+ * @returns {string} Target branch name
132
+ */
133
+ function getTargetBranch(sourceBranch, deploymentConfig) {
134
+ const { branches, workflow } = deploymentConfig;
135
+
136
+ // Check if it's a staging branch (used for promotion)
137
+ if (sourceBranch === branches.staging_branch) {
138
+ return branches.production_branch;
139
+ }
140
+
141
+ // Check production targets (hotfix/* etc.)
142
+ for (const pattern of branches.production_targets || []) {
143
+ if (matchesBranchPattern(sourceBranch, pattern)) {
144
+ return branches.production_branch;
145
+ }
146
+ }
147
+
148
+ // Check staging targets
149
+ for (const pattern of branches.staging_targets || []) {
150
+ if (matchesBranchPattern(sourceBranch, pattern)) {
151
+ // If direct-to-main workflow, target production
152
+ if (workflow === 'direct-to-main') {
153
+ return branches.production_branch;
154
+ }
155
+ return branches.staging_branch || branches.production_branch;
156
+ }
157
+ }
158
+
159
+ // Default target - resolve symbolic name to actual branch
160
+ const defaultTarget = (branches.default_target || 'production').toLowerCase();
161
+ const stagingBranch = branches.staging_branch;
162
+ const productionBranch = branches.production_branch;
163
+
164
+ // Handle symbolic names
165
+ if (defaultTarget === 'staging') {
166
+ return stagingBranch || productionBranch;
167
+ }
168
+ if (defaultTarget === 'production') {
169
+ return productionBranch;
170
+ }
171
+
172
+ // Handle explicit branch names as fallback (for manually-edited configs)
173
+ if (stagingBranch && defaultTarget === stagingBranch.toLowerCase()) {
174
+ return stagingBranch;
175
+ }
176
+ if (productionBranch && defaultTarget === productionBranch.toLowerCase()) {
177
+ return productionBranch;
178
+ }
179
+
180
+ // Conservative fallback with warning
181
+ console.warn(
182
+ `[deployment-config-loader] Unknown default_target "${branches.default_target}", falling back to production`,
183
+ );
184
+ return productionBranch;
185
+ }
186
+
187
+ /**
188
+ * Checks if a branch name matches a pattern
189
+ *
190
+ * @param {string} branchName - Branch name to check
191
+ * @param {string} pattern - Pattern to match (e.g., "feature/*")
192
+ * @returns {boolean} True if matches
193
+ */
194
+ function matchesBranchPattern(branchName, pattern) {
195
+ // Escape regex metacharacters first, then convert glob wildcards
196
+ // Order matters: escape special chars, then convert * and ?
197
+ const regexPattern = pattern
198
+ .replace(/[.+^${}()|[\]\\]/g, '\\$&') // Escape regex metacharacters (except * and ?)
199
+ .replace(/\*/g, '.*') // Convert glob * to regex .*
200
+ .replace(/\?/g, '.'); // Convert glob ? to regex .
201
+
202
+ const regex = new RegExp(`^${regexPattern}$`);
203
+ return regex.test(branchName);
204
+ }
205
+
206
+ /**
207
+ * Gets environment configuration by name
208
+ *
209
+ * @param {string} envName - Environment name (staging/production)
210
+ * @param {Object} deploymentConfig - Deployment configuration
211
+ * @returns {Object|null} Environment configuration
212
+ */
213
+ function getEnvironmentConfig(envName, deploymentConfig) {
214
+ const normalized = envName.toLowerCase();
215
+ return deploymentConfig.environments?.[normalized] || null;
216
+ }
217
+
218
+ /**
219
+ * Checks if quality gate is enabled
220
+ *
221
+ * @param {string} gateName - Gate name (lint, typecheck, tests, security_scan)
222
+ * @param {Object} deploymentConfig - Deployment configuration
223
+ * @returns {boolean} True if gate is enabled
224
+ */
225
+ function isQualityGateEnabled(gateName, deploymentConfig) {
226
+ return deploymentConfig.quality_gates?.[gateName] === true;
227
+ }
228
+
229
+ /**
230
+ * Gets all enabled quality gates
231
+ *
232
+ * @param {Object} deploymentConfig - Deployment configuration
233
+ * @returns {string[]} List of enabled gate names
234
+ */
235
+ function getEnabledQualityGates(deploymentConfig) {
236
+ const gates = deploymentConfig.quality_gates || {};
237
+ return Object.entries(gates)
238
+ .filter(([key, value]) => value === true && key !== 'min_coverage')
239
+ .map(([key]) => key);
240
+ }
241
+
242
+ /**
243
+ * Deep merge two objects
244
+ *
245
+ * @param {Object} target - Target object
246
+ * @param {Object} source - Source object
247
+ * @returns {Object} Merged object
248
+ */
249
+ function deepMerge(target, source) {
250
+ const result = { ...target };
251
+
252
+ for (const key of Object.keys(source)) {
253
+ if (source[key] && typeof source[key] === 'object' && !Array.isArray(source[key])) {
254
+ result[key] = deepMerge(target[key] || {}, source[key]);
255
+ } else if (source[key] !== undefined) {
256
+ result[key] = source[key];
257
+ }
258
+ }
259
+
260
+ return result;
261
+ }
262
+
263
+ /**
264
+ * Validates deployment configuration
265
+ *
266
+ * @param {Object} config - Deployment configuration to validate
267
+ * @returns {Object} Validation result with isValid and errors
268
+ */
269
+ function validateDeploymentConfig(config) {
270
+ const errors = [];
271
+
272
+ // Check workflow
273
+ if (!['staging-first', 'direct-to-main'].includes(config.workflow)) {
274
+ errors.push(`Invalid workflow: ${config.workflow}`);
275
+ }
276
+
277
+ // Check branches
278
+ if (!config.branches?.production_branch) {
279
+ errors.push('Missing production_branch');
280
+ }
281
+
282
+ if (config.workflow === 'staging-first' && !config.branches?.staging_branch) {
283
+ errors.push('staging-first workflow requires staging_branch');
284
+ }
285
+
286
+ // Check environments
287
+ if (!config.environments?.production) {
288
+ errors.push('Missing production environment configuration');
289
+ }
290
+
291
+ return {
292
+ isValid: errors.length === 0,
293
+ errors,
294
+ };
295
+ }
296
+
297
+ module.exports = {
298
+ loadDeploymentConfig,
299
+ loadProjectConfig,
300
+ getTargetBranch,
301
+ matchesBranchPattern,
302
+ getEnvironmentConfig,
303
+ isQualityGateEnabled,
304
+ getEnabledQualityGates,
305
+ validateDeploymentConfig,
306
+ deepMerge,
307
+ DEFAULT_DEPLOYMENT_CONFIG,
308
+ };