openhacker 0.1.1 → 0.1.2
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/README.md +2 -3
- package/bin/openhacker +1 -1
- package/package.json +3 -3
- package/src/index.d.ts +1 -0
- package/src/index.js +305 -1
- package/src/cli.js +0 -276
- package/src/index.ts +0 -1
package/README.md
CHANGED
package/bin/openhacker
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openhacker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Scaffold a self-hosted OpenHacker security agent",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"type": "module",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
".": "./src/index.js"
|
|
12
12
|
},
|
|
13
13
|
"main": "./src/index.js",
|
|
14
|
-
"types": "./src/index.ts",
|
|
14
|
+
"types": "./src/index.d.ts",
|
|
15
15
|
"files": [
|
|
16
16
|
"bin",
|
|
17
17
|
"scripts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"typescript": "6.0.2"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
|
-
"build": "tsc --noEmit && node --check ./bin/openhacker && node --check ./src/
|
|
29
|
+
"build": "tsc --noEmit && node --check ./bin/openhacker && node --check ./src/index.js && node --check ./scripts/sync-template.js && node --check ./scripts/clean-template.js",
|
|
30
30
|
"sync-template": "node ./scripts/sync-template.js"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/src/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export function run(args?: string[]): Promise<void>;
|
package/src/index.js
CHANGED
|
@@ -1 +1,305 @@
|
|
|
1
|
-
|
|
1
|
+
import { spawnSync } from "node:child_process";
|
|
2
|
+
import { cp, readFile, stat, writeFile } from "node:fs/promises";
|
|
3
|
+
import path from "node:path";
|
|
4
|
+
import { fileURLToPath } from "node:url";
|
|
5
|
+
|
|
6
|
+
const ORANGE = "\x1b[38;5;214m";
|
|
7
|
+
const MUTED = "\x1b[0;2m";
|
|
8
|
+
const RED = "\x1b[0;31m";
|
|
9
|
+
const NC = "\x1b[0m";
|
|
10
|
+
|
|
11
|
+
const EXCLUDE = new Set([
|
|
12
|
+
".env",
|
|
13
|
+
".env.local",
|
|
14
|
+
"node_modules",
|
|
15
|
+
".eve",
|
|
16
|
+
".next",
|
|
17
|
+
".output",
|
|
18
|
+
".git",
|
|
19
|
+
".vercel",
|
|
20
|
+
".turbo",
|
|
21
|
+
]);
|
|
22
|
+
|
|
23
|
+
// Written into scaffolded projects directly rather than shipped as a template
|
|
24
|
+
// file, because npm renames a packaged `.gitignore` to `.npmignore` on publish.
|
|
25
|
+
const GITIGNORE = `# dependencies
|
|
26
|
+
node_modules
|
|
27
|
+
|
|
28
|
+
# next.js
|
|
29
|
+
.next
|
|
30
|
+
next-env.d.ts
|
|
31
|
+
|
|
32
|
+
# eve build artifacts
|
|
33
|
+
.eve
|
|
34
|
+
.output
|
|
35
|
+
|
|
36
|
+
# vercel / turbo
|
|
37
|
+
.vercel
|
|
38
|
+
.turbo
|
|
39
|
+
|
|
40
|
+
# typescript
|
|
41
|
+
tsconfig.tsbuildinfo
|
|
42
|
+
|
|
43
|
+
# env files (keep the example)
|
|
44
|
+
.env
|
|
45
|
+
.env.*
|
|
46
|
+
!.env.example
|
|
47
|
+
|
|
48
|
+
# misc
|
|
49
|
+
.DS_Store
|
|
50
|
+
*.log
|
|
51
|
+
`;
|
|
52
|
+
|
|
53
|
+
const here = path.dirname(fileURLToPath(import.meta.url));
|
|
54
|
+
|
|
55
|
+
async function exists(p) {
|
|
56
|
+
try {
|
|
57
|
+
await stat(p);
|
|
58
|
+
return true;
|
|
59
|
+
} catch {
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
async function resolveTemplateDir() {
|
|
65
|
+
const candidates = [];
|
|
66
|
+
|
|
67
|
+
if (process.env.OPENHACKER_TEMPLATE_DIR) {
|
|
68
|
+
candidates.push(path.resolve(process.env.OPENHACKER_TEMPLATE_DIR));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
candidates.push(
|
|
72
|
+
// npm package layout: packages/openhacker/src -> packages/openhacker/templates/agent
|
|
73
|
+
path.resolve(here, "../templates/agent"),
|
|
74
|
+
// monorepo layout: packages/openhacker/src -> repo root -> apps/agent
|
|
75
|
+
path.resolve(here, "../../../apps/agent"),
|
|
76
|
+
);
|
|
77
|
+
|
|
78
|
+
for (const candidate of candidates) {
|
|
79
|
+
if (await exists(path.join(candidate, "agent", "agent.ts"))) {
|
|
80
|
+
return candidate;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
return candidates[0];
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
function packageNameFor(dest) {
|
|
88
|
+
return (
|
|
89
|
+
path
|
|
90
|
+
.basename(dest)
|
|
91
|
+
.replace(/[^a-z0-9-]+/gi, "-")
|
|
92
|
+
.toLowerCase() || "openhacker"
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function shouldCopyTemplatePath(src, root) {
|
|
97
|
+
const relative = path.relative(root, src);
|
|
98
|
+
const segments = relative.split(path.sep);
|
|
99
|
+
|
|
100
|
+
return (
|
|
101
|
+
!segments.some((seg) => EXCLUDE.has(seg)) &&
|
|
102
|
+
!relative.endsWith("next-env.d.ts") &&
|
|
103
|
+
!relative.endsWith("tsconfig.tsbuildinfo")
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
function runStep(command, args, cwd, { quiet = false } = {}) {
|
|
108
|
+
const result = spawnSync(command, args, {
|
|
109
|
+
cwd,
|
|
110
|
+
stdio: quiet ? "ignore" : "inherit",
|
|
111
|
+
shell: process.platform === "win32",
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
return !result.error && result.status === 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
function hasCommand(command) {
|
|
118
|
+
const probe = process.platform === "win32" ? "where" : "which";
|
|
119
|
+
const result = spawnSync(probe, [command], {
|
|
120
|
+
stdio: "ignore",
|
|
121
|
+
shell: process.platform === "win32",
|
|
122
|
+
});
|
|
123
|
+
return !result.error && result.status === 0;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
function isInsideGitRepo(cwd) {
|
|
127
|
+
const result = spawnSync("git", ["rev-parse", "--is-inside-work-tree"], {
|
|
128
|
+
cwd,
|
|
129
|
+
stdio: "ignore",
|
|
130
|
+
shell: process.platform === "win32",
|
|
131
|
+
});
|
|
132
|
+
return !result.error && result.status === 0;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
async function installDependencies(dest) {
|
|
136
|
+
if (!hasCommand("pnpm")) {
|
|
137
|
+
console.log(
|
|
138
|
+
`${MUTED}pnpm not found — skipping install. Run \`pnpm install\` manually.${NC}`,
|
|
139
|
+
);
|
|
140
|
+
return false;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
console.log(`\n${MUTED}Installing dependencies with pnpm…${NC}`);
|
|
144
|
+
// --ignore-workspace keeps the install self-contained: without it, pnpm walks
|
|
145
|
+
// up to a parent pnpm-workspace.yaml (e.g. when scaffolding inside a monorepo)
|
|
146
|
+
// and installs that workspace instead of the new project's node_modules.
|
|
147
|
+
const ok = runStep("pnpm", ["install", "--ignore-workspace"], dest);
|
|
148
|
+
if (!ok) {
|
|
149
|
+
console.log(
|
|
150
|
+
`${RED}pnpm install failed.${NC} ${MUTED}You can re-run it inside the project.${NC}`,
|
|
151
|
+
);
|
|
152
|
+
}
|
|
153
|
+
return ok;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
async function initGitRepo(dest) {
|
|
157
|
+
if (!hasCommand("git")) {
|
|
158
|
+
console.log(`${MUTED}git not found — skipping repository init.${NC}`);
|
|
159
|
+
return false;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
if (isInsideGitRepo(dest)) {
|
|
163
|
+
console.log(
|
|
164
|
+
`${MUTED}Already inside a git repository — skipping git init.${NC}`,
|
|
165
|
+
);
|
|
166
|
+
return false;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
const initialized =
|
|
170
|
+
runStep("git", ["init"], dest, { quiet: true }) &&
|
|
171
|
+
runStep("git", ["add", "-A"], dest, { quiet: true }) &&
|
|
172
|
+
runStep("git", ["commit", "-m", "Initial commit from OpenHacker"], dest, {
|
|
173
|
+
quiet: true,
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
if (initialized) {
|
|
177
|
+
console.log(`${MUTED}Initialized a git repository.${NC}`);
|
|
178
|
+
} else {
|
|
179
|
+
console.log(
|
|
180
|
+
`${MUTED}Could not create the initial git commit — you can do it manually.${NC}`,
|
|
181
|
+
);
|
|
182
|
+
}
|
|
183
|
+
return initialized;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
async function init(targetArg, { skipInstall = false, skipGit = false } = {}) {
|
|
187
|
+
const template = await resolveTemplateDir();
|
|
188
|
+
if (!(await exists(path.join(template, "agent", "agent.ts")))) {
|
|
189
|
+
console.error(
|
|
190
|
+
`${RED}Could not find the instance template at ${template}.${NC}`,
|
|
191
|
+
);
|
|
192
|
+
console.error(
|
|
193
|
+
`${MUTED}Set OPENHACKER_TEMPLATE_DIR to the template directory.${NC}`,
|
|
194
|
+
);
|
|
195
|
+
process.exit(1);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
const dest = path.resolve(process.cwd(), targetArg ?? "openhacker");
|
|
199
|
+
if (await exists(dest)) {
|
|
200
|
+
console.error(`${RED}Destination already exists: ${dest}${NC}`);
|
|
201
|
+
process.exit(1);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
console.log(`\n${MUTED}Creating OpenHacker instance in ${NC}${dest}`);
|
|
205
|
+
await cp(template, dest, {
|
|
206
|
+
recursive: true,
|
|
207
|
+
filter: (src) => shouldCopyTemplatePath(src, template),
|
|
208
|
+
});
|
|
209
|
+
|
|
210
|
+
const pkgPath = path.join(dest, "package.json");
|
|
211
|
+
const pkg = JSON.parse(await readFile(pkgPath, "utf8"));
|
|
212
|
+
pkg.name = packageNameFor(dest);
|
|
213
|
+
pkg.private = true;
|
|
214
|
+
await writeFile(pkgPath, `${JSON.stringify(pkg, null, 2)}\n`);
|
|
215
|
+
|
|
216
|
+
// Write before git init so the initial commit doesn't include node_modules/.env.
|
|
217
|
+
if (!(await exists(path.join(dest, ".gitignore")))) {
|
|
218
|
+
await writeFile(path.join(dest, ".gitignore"), GITIGNORE);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
const installed = skipInstall ? false : await installDependencies(dest);
|
|
222
|
+
if (!skipGit) {
|
|
223
|
+
await initGitRepo(dest);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
console.log(`\n${ORANGE}✓${NC} OpenHacker instance ready.\n`);
|
|
227
|
+
console.log("Next steps:\n");
|
|
228
|
+
console.log(` cd ${path.relative(process.cwd(), dest) || "."}`);
|
|
229
|
+
if (skipInstall || !installed) {
|
|
230
|
+
console.log(" pnpm install");
|
|
231
|
+
}
|
|
232
|
+
console.log(" pnpm dlx vercel link # link a Vercel project for AI/LLM access");
|
|
233
|
+
console.log(" pnpm dev # run locally\n");
|
|
234
|
+
console.log(
|
|
235
|
+
`${MUTED}Deploy: push to a git repo and import it into Vercel (deploys as one project).`,
|
|
236
|
+
);
|
|
237
|
+
console.log(`${MUTED}See README.md for local model configuration.${NC}\n`);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
function usage() {
|
|
241
|
+
console.log("OpenHacker\n");
|
|
242
|
+
console.log("Usage:");
|
|
243
|
+
console.log(
|
|
244
|
+
" openhacker [dir] Scaffold a deployable OpenHacker instance",
|
|
245
|
+
);
|
|
246
|
+
console.log(" openhacker init [dir] Same as above");
|
|
247
|
+
console.log(" openhacker --help Show help");
|
|
248
|
+
console.log(" openhacker --version Show version\n");
|
|
249
|
+
console.log("Options:");
|
|
250
|
+
console.log(" --skip-install Don't run pnpm install");
|
|
251
|
+
console.log(" --skip-git Don't create a git repository\n");
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
async function version() {
|
|
255
|
+
const pkg = JSON.parse(
|
|
256
|
+
await readFile(path.resolve(here, "../package.json"), "utf8"),
|
|
257
|
+
);
|
|
258
|
+
console.log(pkg.version);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
export async function run(args = process.argv.slice(2)) {
|
|
262
|
+
const options = { skipInstall: false, skipGit: false };
|
|
263
|
+
const positionals = [];
|
|
264
|
+
|
|
265
|
+
for (const arg of args) {
|
|
266
|
+
switch (arg) {
|
|
267
|
+
case "--skip-install":
|
|
268
|
+
options.skipInstall = true;
|
|
269
|
+
break;
|
|
270
|
+
case "--skip-git":
|
|
271
|
+
options.skipGit = true;
|
|
272
|
+
break;
|
|
273
|
+
case "-h":
|
|
274
|
+
case "--help":
|
|
275
|
+
usage();
|
|
276
|
+
return;
|
|
277
|
+
case "-v":
|
|
278
|
+
case "--version":
|
|
279
|
+
await version();
|
|
280
|
+
return;
|
|
281
|
+
default:
|
|
282
|
+
if (arg.startsWith("-")) {
|
|
283
|
+
console.error(`${RED}Unknown option: ${arg}${NC}\n`);
|
|
284
|
+
usage();
|
|
285
|
+
process.exit(1);
|
|
286
|
+
}
|
|
287
|
+
positionals.push(arg);
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
const [command, target, ...rest] = positionals;
|
|
292
|
+
|
|
293
|
+
if (rest.length > 0) {
|
|
294
|
+
console.error(`${RED}Too many arguments.${NC}\n`);
|
|
295
|
+
usage();
|
|
296
|
+
process.exit(1);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
if (command === "init") {
|
|
300
|
+
await init(target, options);
|
|
301
|
+
return;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
await init(command, options);
|
|
305
|
+
}
|
package/src/cli.js
DELETED
|
@@ -1,276 +0,0 @@
|
|
|
1
|
-
import { spawnSync } from "node:child_process";
|
|
2
|
-
import { cp, readFile, stat, writeFile } from "node:fs/promises";
|
|
3
|
-
import path from "node:path";
|
|
4
|
-
import { fileURLToPath } from "node:url";
|
|
5
|
-
|
|
6
|
-
const ORANGE = "\x1b[38;5;214m";
|
|
7
|
-
const MUTED = "\x1b[0;2m";
|
|
8
|
-
const RED = "\x1b[0;31m";
|
|
9
|
-
const NC = "\x1b[0m";
|
|
10
|
-
|
|
11
|
-
const EXCLUDE = new Set([
|
|
12
|
-
".env",
|
|
13
|
-
".env.local",
|
|
14
|
-
"node_modules",
|
|
15
|
-
".eve",
|
|
16
|
-
".next",
|
|
17
|
-
".output",
|
|
18
|
-
".git",
|
|
19
|
-
".vercel",
|
|
20
|
-
".turbo",
|
|
21
|
-
]);
|
|
22
|
-
|
|
23
|
-
// Written into scaffolded projects directly rather than shipped as a template
|
|
24
|
-
// file, because npm renames a packaged `.gitignore` to `.npmignore` on publish.
|
|
25
|
-
const GITIGNORE = `# dependencies
|
|
26
|
-
node_modules
|
|
27
|
-
|
|
28
|
-
# next.js
|
|
29
|
-
.next
|
|
30
|
-
next-env.d.ts
|
|
31
|
-
|
|
32
|
-
# eve build artifacts
|
|
33
|
-
.eve
|
|
34
|
-
.output
|
|
35
|
-
|
|
36
|
-
# vercel / turbo
|
|
37
|
-
.vercel
|
|
38
|
-
.turbo
|
|
39
|
-
|
|
40
|
-
# typescript
|
|
41
|
-
tsconfig.tsbuildinfo
|
|
42
|
-
|
|
43
|
-
# env files (keep the example)
|
|
44
|
-
.env
|
|
45
|
-
.env.*
|
|
46
|
-
!.env.example
|
|
47
|
-
|
|
48
|
-
# misc
|
|
49
|
-
.DS_Store
|
|
50
|
-
*.log
|
|
51
|
-
`;
|
|
52
|
-
|
|
53
|
-
const here = path.dirname(fileURLToPath(import.meta.url));
|
|
54
|
-
|
|
55
|
-
async function exists(p) {
|
|
56
|
-
try {
|
|
57
|
-
await stat(p);
|
|
58
|
-
return true;
|
|
59
|
-
} catch {
|
|
60
|
-
return false;
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
async function resolveTemplateDir() {
|
|
65
|
-
const candidates = [];
|
|
66
|
-
|
|
67
|
-
if (process.env.OPENHACKER_TEMPLATE_DIR) {
|
|
68
|
-
candidates.push(path.resolve(process.env.OPENHACKER_TEMPLATE_DIR));
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
candidates.push(
|
|
72
|
-
// npm package layout: packages/openhacker/src -> packages/openhacker/templates/agent
|
|
73
|
-
path.resolve(here, "../templates/agent"),
|
|
74
|
-
// monorepo layout: packages/openhacker/src -> repo root -> apps/agent
|
|
75
|
-
path.resolve(here, "../../../apps/agent"),
|
|
76
|
-
);
|
|
77
|
-
|
|
78
|
-
for (const candidate of candidates) {
|
|
79
|
-
if (await exists(path.join(candidate, "agent", "agent.ts"))) {
|
|
80
|
-
return candidate;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
return candidates[0];
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
function packageNameFor(dest) {
|
|
88
|
-
return path.basename(dest).replace(/[^a-z0-9-]+/gi, "-").toLowerCase() || "openhacker";
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
function shouldCopyTemplatePath(src, root) {
|
|
92
|
-
const relative = path.relative(root, src);
|
|
93
|
-
const segments = relative.split(path.sep);
|
|
94
|
-
|
|
95
|
-
return (
|
|
96
|
-
!segments.some((seg) => EXCLUDE.has(seg)) &&
|
|
97
|
-
!relative.endsWith("next-env.d.ts") &&
|
|
98
|
-
!relative.endsWith("tsconfig.tsbuildinfo")
|
|
99
|
-
);
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
function runStep(command, args, cwd, { quiet = false } = {}) {
|
|
103
|
-
const result = spawnSync(command, args, {
|
|
104
|
-
cwd,
|
|
105
|
-
stdio: quiet ? "ignore" : "inherit",
|
|
106
|
-
shell: process.platform === "win32",
|
|
107
|
-
});
|
|
108
|
-
|
|
109
|
-
return !result.error && result.status === 0;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
function hasCommand(command) {
|
|
113
|
-
const probe = process.platform === "win32" ? "where" : "which";
|
|
114
|
-
const result = spawnSync(probe, [command], { stdio: "ignore", shell: process.platform === "win32" });
|
|
115
|
-
return !result.error && result.status === 0;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
function isInsideGitRepo(cwd) {
|
|
119
|
-
const result = spawnSync("git", ["rev-parse", "--is-inside-work-tree"], {
|
|
120
|
-
cwd,
|
|
121
|
-
stdio: "ignore",
|
|
122
|
-
shell: process.platform === "win32",
|
|
123
|
-
});
|
|
124
|
-
return !result.error && result.status === 0;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
async function installDependencies(dest) {
|
|
128
|
-
if (!hasCommand("pnpm")) {
|
|
129
|
-
console.log(`${MUTED}pnpm not found \u2014 skipping install. Run \`pnpm install\` manually.${NC}`);
|
|
130
|
-
return false;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
console.log(`\n${MUTED}Installing dependencies with pnpm\u2026${NC}`);
|
|
134
|
-
// --ignore-workspace keeps the install self-contained: without it, pnpm walks
|
|
135
|
-
// up to a parent pnpm-workspace.yaml (e.g. when scaffolding inside a monorepo)
|
|
136
|
-
// and installs that workspace instead of the new project's node_modules.
|
|
137
|
-
const ok = runStep("pnpm", ["install", "--ignore-workspace"], dest);
|
|
138
|
-
if (!ok) {
|
|
139
|
-
console.log(`${RED}pnpm install failed.${NC} ${MUTED}You can re-run it inside the project.${NC}`);
|
|
140
|
-
}
|
|
141
|
-
return ok;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
async function initGitRepo(dest) {
|
|
145
|
-
if (!hasCommand("git")) {
|
|
146
|
-
console.log(`${MUTED}git not found \u2014 skipping repository init.${NC}`);
|
|
147
|
-
return false;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
if (isInsideGitRepo(dest)) {
|
|
151
|
-
console.log(`${MUTED}Already inside a git repository \u2014 skipping git init.${NC}`);
|
|
152
|
-
return false;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
const initialized =
|
|
156
|
-
runStep("git", ["init"], dest, { quiet: true }) &&
|
|
157
|
-
runStep("git", ["add", "-A"], dest, { quiet: true }) &&
|
|
158
|
-
runStep("git", ["commit", "-m", "Initial commit from OpenHacker"], dest, { quiet: true });
|
|
159
|
-
|
|
160
|
-
if (initialized) {
|
|
161
|
-
console.log(`${MUTED}Initialized a git repository.${NC}`);
|
|
162
|
-
} else {
|
|
163
|
-
console.log(`${MUTED}Could not create the initial git commit \u2014 you can do it manually.${NC}`);
|
|
164
|
-
}
|
|
165
|
-
return initialized;
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
async function init(targetArg, { skipInstall = false, skipGit = false } = {}) {
|
|
169
|
-
const template = await resolveTemplateDir();
|
|
170
|
-
if (!(await exists(path.join(template, "agent", "agent.ts")))) {
|
|
171
|
-
console.error(`${RED}Could not find the instance template at ${template}.${NC}`);
|
|
172
|
-
console.error(`${MUTED}Set OPENHACKER_TEMPLATE_DIR to the template directory.${NC}`);
|
|
173
|
-
process.exit(1);
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
const dest = path.resolve(process.cwd(), targetArg ?? "openhacker");
|
|
177
|
-
if (await exists(dest)) {
|
|
178
|
-
console.error(`${RED}Destination already exists: ${dest}${NC}`);
|
|
179
|
-
process.exit(1);
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
console.log(`\n${MUTED}Creating OpenHacker instance in ${NC}${dest}`);
|
|
183
|
-
await cp(template, dest, {
|
|
184
|
-
recursive: true,
|
|
185
|
-
filter: (src) => shouldCopyTemplatePath(src, template),
|
|
186
|
-
});
|
|
187
|
-
|
|
188
|
-
const pkgPath = path.join(dest, "package.json");
|
|
189
|
-
const pkg = JSON.parse(await readFile(pkgPath, "utf8"));
|
|
190
|
-
pkg.name = packageNameFor(dest);
|
|
191
|
-
pkg.private = true;
|
|
192
|
-
await writeFile(pkgPath, `${JSON.stringify(pkg, null, 2)}\n`);
|
|
193
|
-
|
|
194
|
-
// Write before git init so the initial commit doesn't include node_modules/.env.
|
|
195
|
-
if (!(await exists(path.join(dest, ".gitignore")))) {
|
|
196
|
-
await writeFile(path.join(dest, ".gitignore"), GITIGNORE);
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
const installed = skipInstall ? false : await installDependencies(dest);
|
|
200
|
-
if (!skipGit) {
|
|
201
|
-
await initGitRepo(dest);
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
console.log(`\n${ORANGE}\u2713${NC} OpenHacker instance ready.\n`);
|
|
205
|
-
console.log("Next steps:\n");
|
|
206
|
-
console.log(` cd ${path.relative(process.cwd(), dest) || "."}`);
|
|
207
|
-
if (skipInstall || !installed) {
|
|
208
|
-
console.log(" pnpm install");
|
|
209
|
-
}
|
|
210
|
-
console.log(" pnpm dev # run locally\n");
|
|
211
|
-
console.log(`${MUTED}Deploy: push to a git repo and import it into Vercel (deploys as one project).`);
|
|
212
|
-
console.log(`Add a Vercel KV / Upstash Redis integration to persist findings. See README.md.${NC}\n`);
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
function usage() {
|
|
216
|
-
console.log("OpenHacker\n");
|
|
217
|
-
console.log("Usage:");
|
|
218
|
-
console.log(" openhacker [dir] Scaffold a deployable OpenHacker instance");
|
|
219
|
-
console.log(" openhacker init [dir] Same as above");
|
|
220
|
-
console.log(" openhacker --help Show help");
|
|
221
|
-
console.log(" openhacker --version Show version\n");
|
|
222
|
-
console.log("Options:");
|
|
223
|
-
console.log(" --skip-install Don't run pnpm install");
|
|
224
|
-
console.log(" --skip-git Don't create a git repository\n");
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
async function version() {
|
|
228
|
-
const pkg = JSON.parse(await readFile(path.resolve(here, "../package.json"), "utf8"));
|
|
229
|
-
console.log(pkg.version);
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
export async function run(args = process.argv.slice(2)) {
|
|
233
|
-
const options = { skipInstall: false, skipGit: false };
|
|
234
|
-
const positionals = [];
|
|
235
|
-
|
|
236
|
-
for (const arg of args) {
|
|
237
|
-
switch (arg) {
|
|
238
|
-
case "--skip-install":
|
|
239
|
-
options.skipInstall = true;
|
|
240
|
-
break;
|
|
241
|
-
case "--skip-git":
|
|
242
|
-
options.skipGit = true;
|
|
243
|
-
break;
|
|
244
|
-
case "-h":
|
|
245
|
-
case "--help":
|
|
246
|
-
usage();
|
|
247
|
-
return;
|
|
248
|
-
case "-v":
|
|
249
|
-
case "--version":
|
|
250
|
-
await version();
|
|
251
|
-
return;
|
|
252
|
-
default:
|
|
253
|
-
if (arg.startsWith("-")) {
|
|
254
|
-
console.error(`${RED}Unknown option: ${arg}${NC}\n`);
|
|
255
|
-
usage();
|
|
256
|
-
process.exit(1);
|
|
257
|
-
}
|
|
258
|
-
positionals.push(arg);
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
const [command, target, ...rest] = positionals;
|
|
263
|
-
|
|
264
|
-
if (rest.length > 0) {
|
|
265
|
-
console.error(`${RED}Too many arguments.${NC}\n`);
|
|
266
|
-
usage();
|
|
267
|
-
process.exit(1);
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
if (command === "init") {
|
|
271
|
-
await init(target, options);
|
|
272
|
-
return;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
await init(command, options);
|
|
276
|
-
}
|
package/src/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export const MESSAGE = "OpenHacker";
|