-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate.js
75 lines (67 loc) · 2.53 KB
/
generate.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import { glob } from "glob";
import fs from "fs";
import inquirer from "inquirer";
import { analyzeCode } from "./geminiclient.js";
export async function generateReadme() {
console.log("Welcome to the README generator!");
// Step 1: Prompt the user for details
const answers = await inquirer.prompt([
{
type: "input",
name: "projectName",
message: "What is the name of your project?",
},
{
type: "input",
name: "githubURL",
message: "What is the GitHub repository URL for this project?",
default: "https://github.com/your-username/your-repository.git",
},
]);
console.log("Generating README.md...");
// Step 2: Find all relevant code files in the repository
const files = glob.sync("**/*.{js,ts,jsx,tsx,py}", {
ignore: ["node_modules/**", "dist/**", "build/**"],
});
// Step 3: Concatenate all file contents into a single string
let combinedContent = "";
files.forEach((file) => {
const codeContent = fs.readFileSync(file, "utf-8");
combinedContent += `### File: ${file}\n\n\`\`\`javascript\n${codeContent}\n\`\`\`\n\n`;
});
// Append project details
combinedContent += `## Project Name: ${answers.projectName}\n`;
combinedContent += `## GitHub URL: ${answers.githubURL}\n`;
// Send the combined content to Gemini API
const analysis = await analyzeCode("project-files", combinedContent);
if (!analysis) {
console.error(
"Failed to generate project analysis. Check Gemini API response."
);
return;
}
try {
const projectDetails = {
projectName: analysis.projectSummary.projectName || "My Project",
description:
analysis.projectSummary.description || "A brief project description.",
preRequisites: analysis.preRequisites || ["Node.js (v16 or above)"],
installationSteps:
analysis.installationSteps || "Installation steps go here.",
environmentVariables:
analysis.environmentVariables || "No environment variables documented.",
techStack: {
frontend: analysis.techStack?.frontend || [],
backend: analysis.techStack?.backend || [],
},
features: analysis.features || [],
contributing: analysis.contributing || "Contribution guidelines go here.",
license: analysis.license || "MIT License.",
};
const readmeContent = generateReadmeTemplate(projectDetails);
} catch (err) {
// Write the README.md file
fs.writeFileSync("README.md", analysis.replace("```markdown", ""));
console.log("README.md has been successfully generated!");
}
}