ai-spec-dev 0.30.0 → 0.30.1
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/cli/index.ts +1 -11
- package/dist/cli/index.js +536 -646
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +536 -646
- package/dist/cli/index.mjs.map +1 -1
- package/package.json +1 -1
- package/cli/welcome.ts +0 -151
package/cli/index.ts
CHANGED
|
@@ -52,7 +52,6 @@ import {
|
|
|
52
52
|
GLOBAL_CONSTITUTION_FILE,
|
|
53
53
|
} from "../core/global-constitution";
|
|
54
54
|
import { getSavedKey, saveKey, clearAllKeys, clearKey, KEY_STORE_FILE } from "../core/key-store";
|
|
55
|
-
import { printWelcome } from "./welcome";
|
|
56
55
|
import {
|
|
57
56
|
globalConstitutionSystemPrompt,
|
|
58
57
|
buildGlobalConstitutionPrompt,
|
|
@@ -2231,13 +2230,4 @@ program
|
|
|
2231
2230
|
}
|
|
2232
2231
|
});
|
|
2233
2232
|
|
|
2234
|
-
|
|
2235
|
-
if (process.argv.length <= 2) {
|
|
2236
|
-
(async () => {
|
|
2237
|
-
const currentDir = process.cwd();
|
|
2238
|
-
const config = await loadConfig(currentDir);
|
|
2239
|
-
await printWelcome(currentDir, config);
|
|
2240
|
-
})();
|
|
2241
|
-
} else {
|
|
2242
|
-
program.parse();
|
|
2243
|
-
}
|
|
2233
|
+
program.parse();
|