feat(projects): add interactive AI app scaffold skill

This commit is contained in:
2026-09-04 20:36:28 +08:00
parent 336e0bb0ca
commit 959b6333b5
40 changed files with 2647 additions and 65 deletions

View File

@@ -80,6 +80,12 @@ function handle(command) {
writeRecord(response(command, { counts }));
return;
}
if (command.type === 'environment') {
writeRecord(response(command, {
makeloreNodeExecutable: process.env.MAKELORE_NODE_EXECUTABLE ?? null,
}));
return;
}
if (command.type === 'stderr_secret') {
const secret = process.env.FAKE_PI_SECRET ?? 'missing-secret';
process.stderr.write(`${'diagnostic '.repeat(50)}\n`);