zerostart-cli 0.0.44 → 0.0.45
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 +18 -13
- package/out/cli.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -25,25 +25,29 @@ npm install -g zerostart-cli
|
|
|
25
25
|
|
|
26
26
|
---
|
|
27
27
|
|
|
28
|
+
## ✨ Features
|
|
29
|
+
|
|
30
|
+
- **🆕 AI Architect**: Build custom projects from a single sentence prompt.
|
|
31
|
+
- **🚀 One-Command Setup**: Scaffold, initialize Git, and deploy in seconds.
|
|
32
|
+
- **📦 Pre-built Templates**: React, Next.js, Express, C++, Java, Python, and more.
|
|
33
|
+
- **🐙 GitHub Integration**: Auto-create repositories and push with human-style commits.
|
|
34
|
+
- **🌐 Instant Deployment**: Vercel and Netlify support built-in.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
28
38
|
## ⚡ Quick Start
|
|
29
39
|
|
|
40
|
+
### 1. The Standard Way
|
|
30
41
|
```bash
|
|
31
42
|
zerostart
|
|
32
43
|
```
|
|
44
|
+
Follow the interactive wizard to set up your project.
|
|
33
45
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
| Step | What Happens |
|
|
41
|
-
| :--- | :--- |
|
|
42
|
-
| 🎯 Pick a category | Web Dev or Competitive Programming |
|
|
43
|
-
| 🔤 Pick a language | React, TypeScript, HTML/CSS, C++, Java, Python |
|
|
44
|
-
| 📝 Name your project | Enter any project name |
|
|
45
|
-
| 🐙 GitHub integration | Optionally create a repo and push with real commits |
|
|
46
|
-
| 🚀 Deploy or run locally | Deploy to Vercel instantly, or get `cd` instructions |
|
|
46
|
+
### 2. The AI Way (New!) ✨
|
|
47
|
+
```bash
|
|
48
|
+
zerostart ai "a simple blog with react and express"
|
|
49
|
+
```
|
|
50
|
+
Tell the AI what you want, and it will architect the entire project for you.
|
|
47
51
|
|
|
48
52
|
---
|
|
49
53
|
|
|
@@ -54,6 +58,7 @@ That's it. Follow the interactive wizard to set up your project, push to GitHub,
|
|
|
54
58
|
| Command | Description |
|
|
55
59
|
| :--- | :--- |
|
|
56
60
|
| `zerostart` | Launch the full interactive wizard |
|
|
61
|
+
| `zerostart ai [prompt]` | **AI Architect**: Build a project from a description |
|
|
57
62
|
| `zerostart init [name]` | Start a new project (with optional name) |
|
|
58
63
|
| `zerostart deploy` | Deploy the current project (Vercel / Netlify) |
|
|
59
64
|
| `zerostart git` | Initialize Git + optionally push to GitHub |
|
package/out/cli.js
CHANGED
|
@@ -180,7 +180,7 @@ async function initializeProject(name, language, type, options) {
|
|
|
180
180
|
program
|
|
181
181
|
.name('zerostart')
|
|
182
182
|
.description('Create and deploy a complete project with one command')
|
|
183
|
-
.version('0.0.
|
|
183
|
+
.version('0.0.45');
|
|
184
184
|
// zerostart init [project-name]
|
|
185
185
|
program
|
|
186
186
|
.command('init [project-name]')
|
|
@@ -518,7 +518,7 @@ program
|
|
|
518
518
|
return;
|
|
519
519
|
}
|
|
520
520
|
const latestVersion = stdout.trim();
|
|
521
|
-
const currentVersion = '0.0.
|
|
521
|
+
const currentVersion = '0.0.45';
|
|
522
522
|
if (latestVersion === currentVersion) {
|
|
523
523
|
spinner.succeed(chalk_1.default.green('You are using the latest version!'));
|
|
524
524
|
}
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"zerostart": "./out/cli.js"
|
|
6
6
|
},
|
|
7
7
|
"description": "Create and deploy a complete project with one command.",
|
|
8
|
-
"version": "0.0.
|
|
8
|
+
"version": "0.0.45",
|
|
9
9
|
"engines": {
|
|
10
10
|
"vscode": "^1.85.0"
|
|
11
11
|
},
|
|
@@ -49,4 +49,4 @@
|
|
|
49
49
|
"openai": "^6.25.0",
|
|
50
50
|
"ora": "^5.4.1"
|
|
51
51
|
}
|
|
52
|
-
}
|
|
52
|
+
}
|