fraim-framework 2.0.26 → 2.0.30
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/.github/workflows/deploy-fraim.yml +1 -1
- package/dist/registry/scripts/build-scripts-generator.js +205 -0
- package/dist/registry/scripts/cleanup-branch.js +258 -0
- package/dist/registry/scripts/evaluate-code-quality.js +66 -0
- package/dist/registry/scripts/exec-with-timeout.js +142 -0
- package/dist/registry/scripts/fraim-config.js +61 -0
- package/dist/registry/scripts/generate-engagement-emails.js +630 -0
- package/dist/registry/scripts/generic-issues-api.js +100 -0
- package/dist/registry/scripts/newsletter-helpers.js +731 -0
- package/dist/registry/scripts/openapi-generator.js +664 -0
- package/dist/registry/scripts/performance/profile-server.js +390 -0
- package/dist/registry/scripts/run-thank-you-workflow.js +92 -0
- package/dist/registry/scripts/send-newsletter-simple.js +85 -0
- package/dist/registry/scripts/send-thank-you-emails.js +54 -0
- package/dist/registry/scripts/validate-openapi-limits.js +311 -0
- package/dist/registry/scripts/validate-test-coverage.js +262 -0
- package/dist/registry/scripts/verify-test-coverage.js +66 -0
- package/dist/src/cli/commands/init.js +14 -12
- package/dist/src/cli/commands/sync.js +19 -2
- package/dist/src/cli/fraim.js +24 -22
- package/dist/src/cli/setup/first-run.js +13 -6
- package/dist/src/fraim/config-loader.js +0 -8
- package/dist/src/fraim/db-service.js +26 -15
- package/dist/src/fraim/issues.js +67 -0
- package/dist/src/fraim/setup-wizard.js +1 -69
- package/dist/src/fraim/types.js +0 -11
- package/dist/src/fraim-mcp-server.js +272 -18
- package/dist/src/utils/git-utils.js +1 -1
- package/dist/src/utils/version-utils.js +32 -0
- package/dist/tests/debug-tools.js +79 -0
- package/dist/tests/esm-compat.js +11 -0
- package/dist/tests/test-chalk-esm-issue.js +159 -0
- package/dist/tests/test-chalk-real-world.js +265 -0
- package/dist/tests/test-chalk-regression.js +327 -0
- package/dist/tests/test-chalk-resolution-issue.js +304 -0
- package/dist/tests/test-cli.js +0 -2
- package/dist/tests/test-fraim-install-chalk-issue.js +254 -0
- package/dist/tests/test-fraim-issues.js +59 -0
- package/dist/tests/test-genericization.js +1 -3
- package/dist/tests/test-mcp-connection.js +166 -0
- package/dist/tests/test-mcp-issue-integration.js +144 -0
- package/dist/tests/test-mcp-lifecycle-methods.js +312 -0
- package/dist/tests/test-node-compatibility.js +71 -0
- package/dist/tests/test-npm-install.js +66 -0
- package/dist/tests/test-npm-resolution-diagnostic.js +140 -0
- package/dist/tests/test-session-rehydration.js +145 -0
- package/dist/tests/test-standalone.js +2 -8
- package/dist/tests/test-sync-version-update.js +93 -0
- package/dist/tests/test-telemetry.js +190 -0
- package/package.json +10 -8
- package/registry/agent-guardrails.md +62 -54
- package/registry/rules/agent-success-criteria.md +52 -0
- package/registry/rules/agent-testing-guidelines.md +502 -502
- package/registry/rules/communication.md +121 -121
- package/registry/rules/continuous-learning.md +54 -54
- package/registry/rules/ephemeral-execution.md +10 -5
- package/registry/rules/hitl-ppe-record-analysis.md +302 -302
- package/registry/rules/local-development.md +251 -251
- package/registry/rules/software-development-lifecycle.md +104 -104
- package/registry/rules/successful-debugging-patterns.md +482 -478
- package/registry/rules/telemetry.md +67 -0
- package/registry/scripts/build-scripts-generator.ts +216 -215
- package/registry/scripts/cleanup-branch.ts +303 -284
- package/registry/scripts/code-quality-check.sh +559 -559
- package/registry/scripts/detect-tautological-tests.sh +38 -38
- package/registry/scripts/evaluate-code-quality.ts +1 -1
- package/registry/scripts/generate-engagement-emails.ts +744 -744
- package/registry/scripts/generic-issues-api.ts +110 -150
- package/registry/scripts/newsletter-helpers.ts +874 -874
- package/registry/scripts/openapi-generator.ts +695 -693
- package/registry/scripts/performance/profile-server.ts +5 -3
- package/registry/scripts/prep-issue.sh +468 -455
- package/registry/scripts/validate-openapi-limits.ts +366 -365
- package/registry/scripts/validate-test-coverage.ts +280 -280
- package/registry/scripts/verify-pr-comments.sh +70 -70
- package/registry/scripts/verify-test-coverage.ts +1 -1
- package/registry/templates/bootstrap/ARCHITECTURE-TEMPLATE.md +53 -53
- package/registry/templates/evidence/Implementation-BugEvidence.md +85 -85
- package/registry/templates/evidence/Implementation-FeatureEvidence.md +120 -120
- package/registry/templates/marketing/HBR-ARTICLE-TEMPLATE.md +66 -0
- package/registry/workflows/bootstrap/create-architecture.md +2 -2
- package/registry/workflows/bootstrap/evaluate-code-quality.md +3 -3
- package/registry/workflows/bootstrap/verify-test-coverage.md +2 -2
- package/registry/workflows/customer-development/insight-analysis.md +156 -156
- package/registry/workflows/customer-development/interview-preparation.md +421 -421
- package/registry/workflows/customer-development/strategic-brainstorming.md +146 -146
- package/registry/workflows/customer-development/thank-customers.md +193 -191
- package/registry/workflows/customer-development/weekly-newsletter.md +362 -352
- package/registry/workflows/improve-fraim/contribute.md +32 -0
- package/registry/workflows/improve-fraim/file-issue.md +32 -0
- package/registry/workflows/marketing/hbr-article.md +73 -0
- package/registry/workflows/performance/analyze-performance.md +63 -59
- package/registry/workflows/product-building/design.md +3 -2
- package/registry/workflows/product-building/implement.md +4 -3
- package/registry/workflows/product-building/prep-issue.md +28 -17
- package/registry/workflows/product-building/resolve.md +3 -2
- package/registry/workflows/product-building/retrospect.md +3 -2
- package/registry/workflows/product-building/spec.md +5 -4
- package/registry/workflows/product-building/test.md +3 -2
- package/registry/workflows/quality-assurance/iterative-improvement-cycle.md +562 -562
- package/registry/workflows/replicate/website-discovery-analysis.md +3 -3
- package/registry/workflows/reviewer/review-implementation-vs-design-spec.md +632 -632
- package/registry/workflows/reviewer/review-implementation-vs-feature-spec.md +669 -669
- package/tsconfig.json +2 -1
|
@@ -67,7 +67,7 @@ jobs:
|
|
|
67
67
|
uses: azure/CLI@v2
|
|
68
68
|
with:
|
|
69
69
|
inlineScript: |
|
|
70
|
-
az webapp config appsettings set -g rg-ashley-fraim-prod -n app-ashley-fraim-prod --settings SCM_DO_BUILD_DURING_DEPLOYMENT=false
|
|
70
|
+
az webapp config appsettings set -g rg-ashley-fraim-prod -n app-ashley-fraim-prod --settings SCM_DO_BUILD_DURING_DEPLOYMENT=false MONGODB_DB_NAME="fraim_prod"
|
|
71
71
|
az webapp config set -g rg-ashley-fraim-prod -n app-ashley-fraim-prod --startup-file "node dist/src/fraim-mcp-server.js"
|
|
72
72
|
|
|
73
73
|
- name: Deploy to Azure Web App
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
/**
|
|
4
|
+
* FRAIM Build Scripts Generator
|
|
5
|
+
*
|
|
6
|
+
* Generates generic build scripts and validation patterns.
|
|
7
|
+
* These are generic enough to apply to any project.
|
|
8
|
+
*
|
|
9
|
+
* Usage:
|
|
10
|
+
* npx tsx scripts/build-scripts-generator.ts
|
|
11
|
+
*/
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
exports.generatePackageScripts = generatePackageScripts;
|
|
14
|
+
exports.generateCodeQualityScript = generateCodeQualityScript;
|
|
15
|
+
exports.generateCopyScripts = generateCopyScripts;
|
|
16
|
+
exports.generateBuildScripts = generateBuildScripts;
|
|
17
|
+
const fs_1 = require("fs");
|
|
18
|
+
const path_1 = require("path");
|
|
19
|
+
const config_loader_js_1 = require("../../src/fraim/config-loader.js");
|
|
20
|
+
/**
|
|
21
|
+
* Generate package.json scripts section
|
|
22
|
+
*/
|
|
23
|
+
function generatePackageScripts(config) {
|
|
24
|
+
return {
|
|
25
|
+
"build": "tsc && npm run validate:openapi",
|
|
26
|
+
"validate:openapi": "npx tsx " + "reg" + "istry/scripts/validate-openapi-limits.ts",
|
|
27
|
+
"start": "node dist/src/server.js",
|
|
28
|
+
"start:mcp": "node dist/src/mcp-server.js",
|
|
29
|
+
"dev": "npx tsx --watch src/server.ts",
|
|
30
|
+
"dev:mcp": "tsx src/mcp-server.ts",
|
|
31
|
+
"generate:openapi": "npx tsx " + "reg" + "istry/scripts/openapi-generator.ts",
|
|
32
|
+
"test": "npx tsx --test test*.ts",
|
|
33
|
+
"lint": "eslint *.ts",
|
|
34
|
+
"lint:fix": "eslint *.ts --fix"
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Generate code quality check script (generic version)
|
|
39
|
+
*/
|
|
40
|
+
function generateCodeQualityScript(outputDir) {
|
|
41
|
+
if (!(0, fs_1.existsSync)(outputDir)) {
|
|
42
|
+
(0, fs_1.mkdirSync)(outputDir, { recursive: true });
|
|
43
|
+
}
|
|
44
|
+
const scriptContent = `#!/bin/bash
|
|
45
|
+
|
|
46
|
+
# FRAIM Generic Code Quality Check
|
|
47
|
+
# Validates code quality, build, and ChatGPT limits
|
|
48
|
+
|
|
49
|
+
set -e
|
|
50
|
+
|
|
51
|
+
MODE=\${1:-full}
|
|
52
|
+
FAILED=0
|
|
53
|
+
WARNINGS=0
|
|
54
|
+
|
|
55
|
+
echo "================================================"
|
|
56
|
+
echo "🔍 CODE QUALITY CHECK ($MODE mode)"
|
|
57
|
+
echo "================================================"
|
|
58
|
+
echo ""
|
|
59
|
+
|
|
60
|
+
# Build check
|
|
61
|
+
if [ "$MODE" = "full" ] || [ "$MODE" = "build" ]; then
|
|
62
|
+
echo "📦 Building project..."
|
|
63
|
+
if npm run build; then
|
|
64
|
+
echo "✅ Build passed"
|
|
65
|
+
else
|
|
66
|
+
echo "❌ Build failed"
|
|
67
|
+
FAILED=1
|
|
68
|
+
fi
|
|
69
|
+
echo ""
|
|
70
|
+
fi
|
|
71
|
+
|
|
72
|
+
# Lint check
|
|
73
|
+
if [ "$MODE" = "full" ] || [ "$MODE" = "lint" ]; then
|
|
74
|
+
echo "🔍 Linting code..."
|
|
75
|
+
if npm run lint; then
|
|
76
|
+
echo "✅ Lint passed"
|
|
77
|
+
else
|
|
78
|
+
echo "⚠️ Lint warnings (non-blocking)"
|
|
79
|
+
WARNINGS=1
|
|
80
|
+
fi
|
|
81
|
+
echo ""
|
|
82
|
+
fi
|
|
83
|
+
|
|
84
|
+
# OpenAPI validation (ChatGPT limits)
|
|
85
|
+
if [ "$MODE" = "full" ] || [ "$MODE" = "openapi" ]; then
|
|
86
|
+
echo "📋 Validating OpenAPI and ChatGPT limits..."
|
|
87
|
+
if npm run validate:openapi; then
|
|
88
|
+
echo "✅ OpenAPI validation passed"
|
|
89
|
+
else
|
|
90
|
+
echo "❌ OpenAPI validation failed"
|
|
91
|
+
FAILED=1
|
|
92
|
+
fi
|
|
93
|
+
echo ""
|
|
94
|
+
fi
|
|
95
|
+
|
|
96
|
+
# Summary
|
|
97
|
+
echo "================================================"
|
|
98
|
+
echo "📊 QUALITY CHECK SUMMARY ($MODE mode)"
|
|
99
|
+
echo "================================================"
|
|
100
|
+
echo ""
|
|
101
|
+
|
|
102
|
+
if [ $FAILED -eq 1 ]; then
|
|
103
|
+
echo "❌ CHECKS FAILED"
|
|
104
|
+
echo ""
|
|
105
|
+
echo "Fix the errors above before proceeding."
|
|
106
|
+
exit 1
|
|
107
|
+
elif [ $WARNINGS -eq 1 ]; then
|
|
108
|
+
echo "⚠️ CHECKS PASSED WITH WARNINGS"
|
|
109
|
+
echo ""
|
|
110
|
+
echo "Review warnings above."
|
|
111
|
+
exit 0
|
|
112
|
+
else
|
|
113
|
+
echo "✅ ALL CHECKS PASSED"
|
|
114
|
+
echo ""
|
|
115
|
+
exit 0
|
|
116
|
+
fi
|
|
117
|
+
`;
|
|
118
|
+
const scriptPath = (0, path_1.join)(outputDir, 'code-quality-check.sh');
|
|
119
|
+
(0, fs_1.writeFileSync)(scriptPath, scriptContent);
|
|
120
|
+
// Make executable (Unix)
|
|
121
|
+
if (process.platform !== 'win32') {
|
|
122
|
+
const { execSync } = require('child_process');
|
|
123
|
+
execSync(`chmod +x ${scriptPath}`);
|
|
124
|
+
}
|
|
125
|
+
console.log(`✅ Generated code quality check script at ${scriptPath}`);
|
|
126
|
+
}
|
|
127
|
+
/**
|
|
128
|
+
* Generate build copy scripts (generic)
|
|
129
|
+
*/
|
|
130
|
+
function generateCopyScripts(outputDir) {
|
|
131
|
+
if (!(0, fs_1.existsSync)(outputDir)) {
|
|
132
|
+
(0, fs_1.mkdirSync)(outputDir, { recursive: true });
|
|
133
|
+
}
|
|
134
|
+
// Copy AI agents script (if .fraim exists)
|
|
135
|
+
const copyAiAgents = `#!/usr/bin/env node
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Copy registry directory to dist
|
|
139
|
+
* Generic build script for FRAIM projects
|
|
140
|
+
*/
|
|
141
|
+
|
|
142
|
+
const fs = require('fs');
|
|
143
|
+
const path = require('path');
|
|
144
|
+
|
|
145
|
+
const sourceDir = path.join(__dirname, '..', '..', 'registry');
|
|
146
|
+
const destDir = path.join(__dirname, '..', '..', 'dist', 'registry');
|
|
147
|
+
|
|
148
|
+
if (fs.existsSync(sourceDir)) {
|
|
149
|
+
// Recursive copy
|
|
150
|
+
function copyRecursive(src, dest) {
|
|
151
|
+
if (!fs.existsSync(dest)) {
|
|
152
|
+
fs.mkdirSync(dest, { recursive: true });
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
const entries = fs.readdirSync(src, { withFileTypes: true });
|
|
156
|
+
|
|
157
|
+
for (const entry of entries) {
|
|
158
|
+
const srcPath = path.join(src, entry.name);
|
|
159
|
+
const destPath = path.join(dest, entry.name);
|
|
160
|
+
|
|
161
|
+
if (entry.isDirectory()) {
|
|
162
|
+
copyRecursive(srcPath, destPath);
|
|
163
|
+
} else {
|
|
164
|
+
fs.copyFileSync(srcPath, destPath);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
copyRecursive(sourceDir, destDir);
|
|
170
|
+
console.log('✅ Copied registry to dist/registry');
|
|
171
|
+
} else {
|
|
172
|
+
console.log('ℹ️ registry directory not found, skipping');
|
|
173
|
+
}
|
|
174
|
+
`;
|
|
175
|
+
(0, fs_1.writeFileSync)((0, path_1.join)(outputDir, 'copy-ai-agents.js'), copyAiAgents);
|
|
176
|
+
console.log(`✅ Generated copy-ai-agents.js`);
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* Main generator function
|
|
180
|
+
*/
|
|
181
|
+
function generateBuildScripts(config, outputDir = "scr" + "ipts/build") {
|
|
182
|
+
console.log('🚀 FRAIM Build Scripts Generator\n');
|
|
183
|
+
console.log(`📁 Output directory: ${outputDir}\n`);
|
|
184
|
+
// Ensure output directory exists
|
|
185
|
+
if (!(0, fs_1.existsSync)(outputDir)) {
|
|
186
|
+
(0, fs_1.mkdirSync)(outputDir, { recursive: true });
|
|
187
|
+
}
|
|
188
|
+
// Generate code quality check
|
|
189
|
+
console.log('📝 Generating code quality check script...');
|
|
190
|
+
generateCodeQualityScript(outputDir);
|
|
191
|
+
// Generate build scripts
|
|
192
|
+
console.log('\n📝 Generating build scripts...');
|
|
193
|
+
generateCopyScripts(outputDir);
|
|
194
|
+
console.log('\n✅ Build scripts generation complete!');
|
|
195
|
+
console.log('\n📋 Next steps:');
|
|
196
|
+
console.log('1. Add scripts to package.json');
|
|
197
|
+
console.log('2. Run: npm run validate:openapi');
|
|
198
|
+
console.log('3. Run: ./scripts/build/code-quality-check.sh');
|
|
199
|
+
}
|
|
200
|
+
// Run if executed directly
|
|
201
|
+
// @ts-ignore
|
|
202
|
+
if (import.meta.url === `file://${process.argv[1]}`) {
|
|
203
|
+
const config = (0, config_loader_js_1.loadFraimConfig)();
|
|
204
|
+
generateBuildScripts(config);
|
|
205
|
+
}
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
#!/usr/bin/env npx tsx
|
|
2
|
+
"use strict";
|
|
3
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
|
+
};
|
|
6
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
+
const child_process_1 = require("child_process");
|
|
8
|
+
const dotenv_1 = __importDefault(require("dotenv"));
|
|
9
|
+
// Load environment variables
|
|
10
|
+
dotenv_1.default.config({ override: true });
|
|
11
|
+
class BranchCleanup {
|
|
12
|
+
constructor(options = {}) {
|
|
13
|
+
this.options = {
|
|
14
|
+
branchName: options.branchName,
|
|
15
|
+
force: options.force || false,
|
|
16
|
+
skipProjectCleanup: options.skipProjectCleanup || false,
|
|
17
|
+
skipGit: options.skipGit || false,
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
async insertYourCodeHere(branchName) {
|
|
21
|
+
const { extractIssueNumber } = require('../../src/utils/git-utils');
|
|
22
|
+
const branchPattern = "branch_" + extractIssueNumber(branchName) + "%";
|
|
23
|
+
this.log(`Attempting to fetch and run DB cleanup for pattern: ${branchPattern}`);
|
|
24
|
+
// Historically this called: npx tsx scripts/database/cleanup-mongo-schemas.ts
|
|
25
|
+
// In FRAIM 2.0, we should fetch it if possible, or skip if it's an internal-only script
|
|
26
|
+
// that doesn't exist in the registry but was incorrectly referenced.
|
|
27
|
+
// NOTE: In this specific case, cleanup-mongo-schemas.ts is likely an internal script.
|
|
28
|
+
// If it's not in the registry, get_fraim_file will fail.
|
|
29
|
+
// For now, we fix the path to be more agnostic or explicitly documented as a dependency.
|
|
30
|
+
try {
|
|
31
|
+
// NOTE: Users should define their own cleanup script location in .fraim/config.json
|
|
32
|
+
// or the agent should fetch it. For now, we try to run it from a standard location
|
|
33
|
+
// if it exists, but we don't hardcode it as a requirement for the script to run.
|
|
34
|
+
const cleanupScript = process.env.FRAIM_PROJECT_CLEANUP_SCRIPT || (['scripts', 'database', 'cleanup-mongo-schemas.ts'].join('/'));
|
|
35
|
+
this.log(`Checking for project cleanup script: ${cleanupScript}`);
|
|
36
|
+
await this.executeCommand(`npx tsx ${cleanupScript} "${branchPattern}"`, 'Run project-specific cleanup script');
|
|
37
|
+
}
|
|
38
|
+
catch (e) {
|
|
39
|
+
this.log('Skipping project-specific cleanup (script not found or failed).', 'info');
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
log(message, level = 'info') {
|
|
43
|
+
const timestamp = new Date().toISOString();
|
|
44
|
+
const prefix = {
|
|
45
|
+
info: 'ℹ️ ',
|
|
46
|
+
warn: '⚠️ ',
|
|
47
|
+
error: '❌',
|
|
48
|
+
success: '✅'
|
|
49
|
+
}[level];
|
|
50
|
+
console.log(`${prefix} [${timestamp}] ${message}`);
|
|
51
|
+
}
|
|
52
|
+
async executeCommand(command, description) {
|
|
53
|
+
this.log(`Executing: ${description}`);
|
|
54
|
+
try {
|
|
55
|
+
const result = (0, child_process_1.execSync)(command, {
|
|
56
|
+
encoding: 'utf8',
|
|
57
|
+
stdio: 'pipe',
|
|
58
|
+
cwd: process.cwd()
|
|
59
|
+
});
|
|
60
|
+
this.log(`Success: ${description}`, 'success');
|
|
61
|
+
return result;
|
|
62
|
+
}
|
|
63
|
+
catch (error) {
|
|
64
|
+
this.log(`Failed: ${description} - ${error.message}`, 'error');
|
|
65
|
+
throw error;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
async getCurrentBranch() {
|
|
69
|
+
try {
|
|
70
|
+
const result = await this.executeCommand('git branch --show-current', 'Get current branch');
|
|
71
|
+
return result.trim();
|
|
72
|
+
}
|
|
73
|
+
catch (error) {
|
|
74
|
+
this.log('Could not determine current branch', 'warn');
|
|
75
|
+
return 'unknown';
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
async getBranchName() {
|
|
79
|
+
if (this.options.branchName) {
|
|
80
|
+
return this.options.branchName;
|
|
81
|
+
}
|
|
82
|
+
const currentBranch = await this.getCurrentBranch();
|
|
83
|
+
if (currentBranch === 'master' || currentBranch === 'main') {
|
|
84
|
+
throw new Error('Cannot cleanup master/main branch. Please specify a feature branch name.');
|
|
85
|
+
}
|
|
86
|
+
return currentBranch;
|
|
87
|
+
}
|
|
88
|
+
async checkBranchExists(branchName, remote = false) {
|
|
89
|
+
try {
|
|
90
|
+
const command = remote
|
|
91
|
+
? `git ls-remote --heads origin ${branchName}`
|
|
92
|
+
: `git branch --list ${branchName}`;
|
|
93
|
+
const result = await this.executeCommand(command, `Check if ${remote ? 'remote' : 'local'} branch exists`);
|
|
94
|
+
return result.trim().length > 0;
|
|
95
|
+
}
|
|
96
|
+
catch (error) {
|
|
97
|
+
return false;
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
async doProjectSpecificCleanup(branchName) {
|
|
101
|
+
try {
|
|
102
|
+
if (this.options.skipProjectCleanup) {
|
|
103
|
+
this.log('Skipping project-specific cleanup', 'warn');
|
|
104
|
+
return;
|
|
105
|
+
}
|
|
106
|
+
this.log('Starting project-specific cleanup...');
|
|
107
|
+
await this.insertYourCodeHere(branchName);
|
|
108
|
+
this.log('Project-specific cleanup completed successfully', 'success');
|
|
109
|
+
}
|
|
110
|
+
catch (error) {
|
|
111
|
+
this.log(`Project-specific cleanup failed: ${error.message}`, 'error');
|
|
112
|
+
if (!this.options.force) {
|
|
113
|
+
throw error;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
async cleanupGitBranches(branchName) {
|
|
118
|
+
if (this.options.skipGit) {
|
|
119
|
+
this.log('Skipping Git cleanup', 'warn');
|
|
120
|
+
return;
|
|
121
|
+
}
|
|
122
|
+
this.log(`Starting Git branch cleanup for: ${branchName}`);
|
|
123
|
+
// Check if we're on the branch we want to delete
|
|
124
|
+
const currentBranch = await this.getCurrentBranch();
|
|
125
|
+
if (currentBranch === branchName) {
|
|
126
|
+
this.log(`Currently on branch ${branchName}, switching to master first`, 'warn');
|
|
127
|
+
await this.executeCommand('git checkout master', 'Switch to master branch');
|
|
128
|
+
}
|
|
129
|
+
// Delete remote branch
|
|
130
|
+
const remoteExists = await this.checkBranchExists(branchName, true);
|
|
131
|
+
if (remoteExists) {
|
|
132
|
+
this.log(`Deleting remote branch: origin/${branchName}`);
|
|
133
|
+
await this.executeCommand(`git push origin --delete ${branchName}`, `Delete remote branch ${branchName}`);
|
|
134
|
+
}
|
|
135
|
+
else {
|
|
136
|
+
this.log(`Remote branch origin/${branchName} does not exist`, 'info');
|
|
137
|
+
}
|
|
138
|
+
// Delete local branch
|
|
139
|
+
const localExists = await this.checkBranchExists(branchName, false);
|
|
140
|
+
if (localExists) {
|
|
141
|
+
this.log(`Deleting local branch: ${branchName}`);
|
|
142
|
+
await this.executeCommand(`git branch -D ${branchName}`, `Delete local branch ${branchName}`);
|
|
143
|
+
}
|
|
144
|
+
else {
|
|
145
|
+
this.log(`Local branch ${branchName} does not exist`, 'info');
|
|
146
|
+
}
|
|
147
|
+
// Clean up any untracked files
|
|
148
|
+
this.log('Cleaning up untracked files...');
|
|
149
|
+
await this.executeCommand('git clean -fd', 'Remove untracked files and directories');
|
|
150
|
+
// Reset any uncommitted changes
|
|
151
|
+
this.log('Resetting uncommitted changes...');
|
|
152
|
+
await this.executeCommand('git reset --hard HEAD', 'Reset to HEAD');
|
|
153
|
+
this.log('Git branch cleanup completed', 'success');
|
|
154
|
+
}
|
|
155
|
+
async verifyCleanup(branchName) {
|
|
156
|
+
this.log('Verifying cleanup...');
|
|
157
|
+
// Verify branch deletion
|
|
158
|
+
const remoteExists = await this.checkBranchExists(branchName, true);
|
|
159
|
+
const localExists = await this.checkBranchExists(branchName, false);
|
|
160
|
+
if (remoteExists || localExists) {
|
|
161
|
+
this.log(`Warning: Branch ${branchName} still exists (remote: ${remoteExists}, local: ${localExists})`, 'warn');
|
|
162
|
+
}
|
|
163
|
+
else {
|
|
164
|
+
this.log(`Branch ${branchName} successfully deleted`, 'success');
|
|
165
|
+
}
|
|
166
|
+
// Verify we're on master
|
|
167
|
+
const currentBranch = await this.getCurrentBranch();
|
|
168
|
+
if (currentBranch === 'master' || currentBranch === 'main') {
|
|
169
|
+
this.log('Currently on master/main branch', 'success');
|
|
170
|
+
}
|
|
171
|
+
else {
|
|
172
|
+
this.log(`Warning: Not on master branch, currently on ${currentBranch}`, 'warn');
|
|
173
|
+
}
|
|
174
|
+
this.log('Cleanup verification completed', 'success');
|
|
175
|
+
}
|
|
176
|
+
async cleanup() {
|
|
177
|
+
try {
|
|
178
|
+
this.log('🚀 Starting branch cleanup process...');
|
|
179
|
+
const branchName = await this.getBranchName();
|
|
180
|
+
this.log(`Target branch: ${branchName}`);
|
|
181
|
+
// Step 1: Project-specific cleanup
|
|
182
|
+
await this.doProjectSpecificCleanup(branchName);
|
|
183
|
+
// Step 2: Git branch cleanup
|
|
184
|
+
await this.cleanupGitBranches(branchName);
|
|
185
|
+
// Step 3: Verification
|
|
186
|
+
await this.verifyCleanup(branchName);
|
|
187
|
+
this.log('🎉 Branch cleanup completed successfully!', 'success');
|
|
188
|
+
}
|
|
189
|
+
catch (error) {
|
|
190
|
+
this.log(`Cleanup failed: ${error.message}`, 'error');
|
|
191
|
+
if (!this.options.force) {
|
|
192
|
+
process.exit(1);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
// Parse command line arguments
|
|
198
|
+
const args = process.argv.slice(2);
|
|
199
|
+
const options = {};
|
|
200
|
+
// Parse arguments
|
|
201
|
+
for (let i = 0; i < args.length; i++) {
|
|
202
|
+
const arg = args[i];
|
|
203
|
+
switch (arg) {
|
|
204
|
+
case '--branch':
|
|
205
|
+
case '-b':
|
|
206
|
+
options.branchName = args[++i];
|
|
207
|
+
break;
|
|
208
|
+
case '--force':
|
|
209
|
+
case '-f':
|
|
210
|
+
options.force = true;
|
|
211
|
+
break;
|
|
212
|
+
case '--skip-project-cleanup':
|
|
213
|
+
options.skipProjectCleanup = true;
|
|
214
|
+
break;
|
|
215
|
+
case '--skip-git':
|
|
216
|
+
options.skipGit = true;
|
|
217
|
+
break;
|
|
218
|
+
case '--help':
|
|
219
|
+
case '-h':
|
|
220
|
+
console.log(`
|
|
221
|
+
🧹 Branch Cleanup Script
|
|
222
|
+
|
|
223
|
+
Usage:
|
|
224
|
+
npx tsx scripts/cleanup-branch.ts [options]
|
|
225
|
+
|
|
226
|
+
Options:
|
|
227
|
+
--branch, -b <name> Specific branch name to cleanup (default: current branch)
|
|
228
|
+
--force, -f Continue even if some operations fail
|
|
229
|
+
--skip-project-cleanup Skip project-specific cleanup
|
|
230
|
+
--skip-git Skip Git branch deletion
|
|
231
|
+
--help, -h Show this help message
|
|
232
|
+
|
|
233
|
+
Examples:
|
|
234
|
+
# Cleanup current branch with default settings
|
|
235
|
+
npx tsx <cleanup-script-path>
|
|
236
|
+
|
|
237
|
+
# Cleanup specific branch
|
|
238
|
+
npx tsx <cleanup-script-path> --branch feature/123
|
|
239
|
+
|
|
240
|
+
# Force cleanup even if some operations fail
|
|
241
|
+
npx tsx <cleanup-script-path> --force
|
|
242
|
+
|
|
243
|
+
# Skip project-specific cleanup (only do Git cleanup)
|
|
244
|
+
npx tsx <cleanup-script-path> --skip-project-cleanup
|
|
245
|
+
|
|
246
|
+
This script performs the following cleanup operations:
|
|
247
|
+
1. 🗄️ Project-specific cleanup (calls configured cleanup script)
|
|
248
|
+
2. 🌿 Git branch deletion (remote and local)
|
|
249
|
+
3. ✅ Verification of cleanup completion
|
|
250
|
+
|
|
251
|
+
⚠️ WARNING: This script will permanently delete branches and data!
|
|
252
|
+
`);
|
|
253
|
+
process.exit(0);
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
// Run the cleanup
|
|
257
|
+
const cleanup = new BranchCleanup(options);
|
|
258
|
+
cleanup.cleanup();
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
/**
|
|
4
|
+
* Code Quality Evaluator (Diagnostic Tool)
|
|
5
|
+
*
|
|
6
|
+
* Runs code quality checks and outputs results to the console.
|
|
7
|
+
* Used by the evaluate-code-quality bootstrapping workflow.
|
|
8
|
+
*
|
|
9
|
+
* Usage: npx tsx <this-script>
|
|
10
|
+
*/
|
|
11
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
14
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
15
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
16
|
+
}
|
|
17
|
+
Object.defineProperty(o, k2, desc);
|
|
18
|
+
}) : (function(o, m, k, k2) {
|
|
19
|
+
if (k2 === undefined) k2 = k;
|
|
20
|
+
o[k2] = m[k];
|
|
21
|
+
}));
|
|
22
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
23
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
24
|
+
}) : function(o, v) {
|
|
25
|
+
o["default"] = v;
|
|
26
|
+
});
|
|
27
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
28
|
+
var ownKeys = function(o) {
|
|
29
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
30
|
+
var ar = [];
|
|
31
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
32
|
+
return ar;
|
|
33
|
+
};
|
|
34
|
+
return ownKeys(o);
|
|
35
|
+
};
|
|
36
|
+
return function (mod) {
|
|
37
|
+
if (mod && mod.__esModule) return mod;
|
|
38
|
+
var result = {};
|
|
39
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
40
|
+
__setModuleDefault(result, mod);
|
|
41
|
+
return result;
|
|
42
|
+
};
|
|
43
|
+
})();
|
|
44
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45
|
+
const path = __importStar(require("path"));
|
|
46
|
+
const child_process_1 = require("child_process");
|
|
47
|
+
const REGISTRY_SCRIPTS_DIR = __dirname;
|
|
48
|
+
const QUALITY_CHECK_SCRIPT = path.join(REGISTRY_SCRIPTS_DIR, 'code-quality-check.sh');
|
|
49
|
+
function evaluateQuality() {
|
|
50
|
+
console.log('🚀 Starting Code Quality Evaluation...');
|
|
51
|
+
console.log('📊 Running code-quality-check.sh...\n');
|
|
52
|
+
// Run the existing quality check script and pipe output directly to terminal
|
|
53
|
+
const child = (0, child_process_1.spawn)('bash', [QUALITY_CHECK_SCRIPT, 'pre-pr'], {
|
|
54
|
+
stdio: 'inherit',
|
|
55
|
+
shell: false
|
|
56
|
+
});
|
|
57
|
+
child.on('exit', (code) => {
|
|
58
|
+
if (code === 0) {
|
|
59
|
+
console.log('\n✅ Code quality check completed successfully.');
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
console.log(`\n❌ Code quality check failed with exit code ${code}.`);
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
evaluateQuality();
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
36
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
37
|
+
};
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
const child_process_1 = require("child_process");
|
|
40
|
+
const fs = __importStar(require("fs"));
|
|
41
|
+
const path = __importStar(require("path"));
|
|
42
|
+
const fast_glob_1 = __importDefault(require("fast-glob"));
|
|
43
|
+
const tree_kill_1 = __importDefault(require("tree-kill"));
|
|
44
|
+
const os_1 = __importDefault(require("os"));
|
|
45
|
+
function parseArgs(argv) {
|
|
46
|
+
const out = { cmd: [], timeout: 120, logfile: "run.log" };
|
|
47
|
+
let parsingCmd = false;
|
|
48
|
+
for (let i = 0; i < argv.length; i++) {
|
|
49
|
+
const a = argv[i];
|
|
50
|
+
if (!parsingCmd) {
|
|
51
|
+
if (a === "--timeout" && argv[i + 1]) {
|
|
52
|
+
out.timeout = parseInt(argv[++i], 10);
|
|
53
|
+
}
|
|
54
|
+
else if (a.startsWith("--timeout=")) {
|
|
55
|
+
out.timeout = parseInt(a.split("=")[1], 10);
|
|
56
|
+
}
|
|
57
|
+
else if (a === "--logfile" && argv[i + 1]) {
|
|
58
|
+
out.logfile = argv[++i];
|
|
59
|
+
}
|
|
60
|
+
else if (a.startsWith("--logfile=")) {
|
|
61
|
+
out.logfile = a.split("=")[1];
|
|
62
|
+
}
|
|
63
|
+
else if (a === "--") {
|
|
64
|
+
parsingCmd = true; // everything after this is command
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
parsingCmd = true;
|
|
68
|
+
out.cmd.push(a);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
out.cmd.push(a);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
return out;
|
|
76
|
+
}
|
|
77
|
+
async function main() {
|
|
78
|
+
const args = parseArgs(process.argv.slice(2));
|
|
79
|
+
if (!args.cmd.length) {
|
|
80
|
+
console.error("Usage: exec-with-timeout <cmd> [args...] [--timeout 120] [--logfile run.log]");
|
|
81
|
+
process.exit(2);
|
|
82
|
+
}
|
|
83
|
+
const logPath = path.resolve(process.cwd(), args.logfile);
|
|
84
|
+
const out = fs.createWriteStream(logPath, { flags: "a" });
|
|
85
|
+
out.write(`\n--- RUN: ${args.cmd.join(" ")} @ ${new Date().toISOString()} (timeout ${args.timeout}s) ---\n`);
|
|
86
|
+
// Expand globs (e.g. test*.ts)
|
|
87
|
+
let [cmd, ...argv] = args.cmd;
|
|
88
|
+
let expanded = [];
|
|
89
|
+
for (const a of argv) {
|
|
90
|
+
if (a.includes("*")) {
|
|
91
|
+
const matches = await (0, fast_glob_1.default)(a);
|
|
92
|
+
expanded.push(...matches);
|
|
93
|
+
}
|
|
94
|
+
else {
|
|
95
|
+
expanded.push(a);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
let child;
|
|
99
|
+
if (os_1.default.platform() === "win32" && (cmd === "npm" || cmd === "npx")) {
|
|
100
|
+
// On Windows, run the full command line with shell
|
|
101
|
+
const fullCommand = [cmd, ...expanded].join(" ");
|
|
102
|
+
child = (0, child_process_1.spawn)(fullCommand, { stdio: ["ignore", "pipe", "pipe"], shell: true });
|
|
103
|
+
}
|
|
104
|
+
else {
|
|
105
|
+
// On Linux/Mac, do it the normal way
|
|
106
|
+
child = (0, child_process_1.spawn)(cmd, expanded, { stdio: ["ignore", "pipe", "pipe"] });
|
|
107
|
+
}
|
|
108
|
+
child.stdout.on("data", (d) => {
|
|
109
|
+
process.stdout.write(d);
|
|
110
|
+
out.write(d);
|
|
111
|
+
});
|
|
112
|
+
child.stderr.on("data", (d) => {
|
|
113
|
+
process.stderr.write(d);
|
|
114
|
+
out.write(d);
|
|
115
|
+
});
|
|
116
|
+
let timedOut = false;
|
|
117
|
+
const timer = setTimeout(() => {
|
|
118
|
+
timedOut = true;
|
|
119
|
+
out.write(`\n[exec-with-timeout] TIMEOUT after ${args.timeout}s → killing process tree\n`);
|
|
120
|
+
(0, tree_kill_1.default)(child.pid, "SIGTERM");
|
|
121
|
+
setTimeout(() => {
|
|
122
|
+
try {
|
|
123
|
+
(0, tree_kill_1.default)(child.pid, "SIGKILL");
|
|
124
|
+
}
|
|
125
|
+
catch { }
|
|
126
|
+
}, 2000);
|
|
127
|
+
}, args.timeout * 1000);
|
|
128
|
+
child.on("exit", (code, signal) => {
|
|
129
|
+
clearTimeout(timer);
|
|
130
|
+
out.write(`\n--- EXIT: code=${code} signal=${signal} timedOut=${timedOut} ---\n`);
|
|
131
|
+
out.end();
|
|
132
|
+
if (timedOut) {
|
|
133
|
+
console.error(`[guard] Command timed out: ${args.cmd.join(" ")}`);
|
|
134
|
+
process.exit(124);
|
|
135
|
+
}
|
|
136
|
+
process.exit(code === null ? 1 : code);
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
main().catch((err) => {
|
|
140
|
+
console.error(err);
|
|
141
|
+
process.exit(1);
|
|
142
|
+
});
|