-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
150 lines (135 loc) · 3.62 KB
/
index.ts
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#!/usr/bin/env node
import { program } from "commander";
import fs from "fs";
import inquirer from "inquirer";
import path from "path";
import {
generateAIFriendlyOutput,
getAllFiles,
isTextFile,
loadGitignore,
} from "./src/utils";
const defaultIgnored: string[] = [
"node_modules",
".git",
"dist",
"build",
".vscode",
".idea",
".Trash",
];
process.on("SIGINT", () => {
console.log("\nOperation cancelled by user");
process.exit(0);
});
program
.version("1.0.0")
.argument("[directory]", "Directory to process", "./")
.option("-o, --output <file>", "Output file name", "ai_context.json")
.option(
"-e, --exclude <items>",
"Comma-separated list of files/folders to exclude"
)
.parse(process.argv);
const options = program.opts();
const inputDirectory: string = path.resolve(program.args[0] || "./");
const outputFile: string = options.output;
const excludeFiles: string[] = options.exclude
? options.exclude.split(",")
: [];
async function run(): Promise<void> {
try {
// Validate input directory
try {
const stats = fs.statSync(inputDirectory);
if (!stats.isDirectory()) {
console.error(`Error: "${inputDirectory}" is not a directory.`);
process.exit(1);
}
} catch (error) {
console.error(
`Error: Cannot access directory "${inputDirectory}": ${
error instanceof Error ? error.message : String(error)
}`
);
process.exit(1);
}
const ignoredFiles: string[] = [
...defaultIgnored,
...loadGitignore(inputDirectory),
...excludeFiles,
];
let allFiles: string[];
try {
allFiles = getAllFiles(inputDirectory, ignoredFiles);
} catch (error) {
console.error(
`Error scanning directory: ${
error instanceof Error ? error.message : String(error)
}`
);
process.exit(1);
}
if (allFiles.length === 0) {
console.log(
"No valid text files found in the specified directory after applying exclusions."
);
process.exit(0);
}
// Filter out non-text files and create choices
const choices = allFiles
.filter((file) => isTextFile(file))
.map((file) => ({
name: path.relative(inputDirectory, file),
value: file,
checked: false,
}));
try {
// @ts-ignore
const answers = await inquirer.prompt([
{
type: "checkbox",
name: "selectedFiles",
message: "Select files to include in the AI context:",
choices,
pageSize: 20,
validate: (answer: string[]) => {
if (answer.length === 0) {
return "You must select at least one file.";
}
return true;
},
},
]);
const { selectedFiles } = answers;
if (selectedFiles.length === 0) {
console.log("No files selected. Exiting without generating output.");
process.exit(0);
}
generateAIFriendlyOutput(inputDirectory, outputFile, selectedFiles);
console.log(`AI-friendly context written to ${outputFile}`);
} catch (error) {
if (
error instanceof Error &&
error.message?.includes("User force closed")
) {
console.log("\nOperation cancelled by user");
process.exit(0);
}
throw error;
}
} catch (error) {
console.error(
"Error:",
error instanceof Error ? error.message : String(error)
);
process.exit(1);
}
}
run().catch((error) => {
console.error(
"An unexpected error occurred:",
error instanceof Error ? error.message : String(error)
);
process.exit(1);
});