@nometria-ai/nom 0.2.7 → 0.2.8
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/package.json +1 -1
- package/src/commands/init.js +6 -3
package/package.json
CHANGED
package/src/commands/init.js
CHANGED
|
@@ -88,10 +88,13 @@ export async function init(flags) {
|
|
|
88
88
|
const configPath = join(dir, CONFIG_FILE);
|
|
89
89
|
writeFileSync(configPath, JSON.stringify(config, null, 2) + '\n');
|
|
90
90
|
|
|
91
|
-
console.log(`\n Created ${CONFIG_FILE}
|
|
91
|
+
console.log(`\n Created ${CONFIG_FILE}`);
|
|
92
|
+
|
|
93
|
+
// Auto-generate AI tool configs
|
|
94
|
+
const { setup } = await import('./setup.js');
|
|
95
|
+
await setup({ yes: true });
|
|
92
96
|
|
|
93
97
|
console.log(` Next steps:`);
|
|
94
98
|
console.log(` 1. Run nom login to authenticate`);
|
|
95
|
-
console.log(` 2. Run nom deploy to deploy`);
|
|
96
|
-
console.log(` 3. Run nom setup to generate AI tool configs (optional)\n`);
|
|
99
|
+
console.log(` 2. Run nom deploy to deploy\n`);
|
|
97
100
|
}
|