@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nometria-ai/nom",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "description": "Deploy any project to any cloud from your terminal. One command, zero config.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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}\n`);
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
  }