agents-templated 1.2.1 → 1.2.2

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 CHANGED
@@ -25,44 +25,58 @@ Agents Templated scaffolds your project with:
25
25
 
26
26
  ## 🚀 Quick Start
27
27
 
28
- ### 1. Install (choose one method)
28
+ ### 1. Run the Interactive Wizard (Recommended)
29
29
 
30
30
  ```bash
31
- # Using npx (no installation needed)
32
- npx agents-templated@latest init --preset=nextjs
31
+ # Using npx (no installation needed) - RECOMMENDED
32
+ npx agents-templated@latest wizard
33
33
 
34
- # Or install globally
34
+ # Or install globally first
35
35
  npm install -g agents-templated
36
- agents-templated init --preset=nextjs
37
-
38
- # Or use the interactive wizard
39
- npx agents-templated@latest wizard
36
+ agents-templated wizard
40
37
  ```
41
38
 
42
- ### 2. Choose Your Preset
39
+ **Or use a preset for fast setup:**
43
40
 
44
41
  ```bash
45
- npx agents-templated init --preset=nextjs # Next.js full-stack
46
- npx agents-templated init --preset=express-api # Express.js REST API
47
- npx agents-templated init --preset=django-react # Django + React
48
- npx agents-templated init --preset=fastapi # FastAPI backend
49
- npx agents-templated init --preset=go-api # Go API server
42
+ # Initialize with a specific preset
43
+ npx agents-templated@latest init --preset=nextjs # Next.js
44
+ npx agents-templated@latest init --preset=express-api # Express
45
+ npx agents-templated@latest init --preset=django-react # Django
46
+ npx agents-templated@latest init --preset=fastapi # FastAPI
47
+ npx agents-templated@latest init --preset=go-api # Go
48
+
49
+ # Or install all components without a preset
50
+ npx agents-templated@latest init --all
50
51
  ```
51
52
 
52
- ### 3. Install Your Tech Stack
53
+ ### 2. Install Your Tech Stack
54
+
55
+ After initializing, install your chosen framework:
56
+
57
+ ### 2. Install Your Tech Stack
58
+
59
+ After initializing, install your chosen framework:
53
60
 
54
61
  ```bash
55
- # Example: Next.js
56
- npm install next react react-dom typescript
62
+ # Frontend
63
+ npm install next react react-dom # Next.js
64
+ npm install vue nuxt # Nuxt
65
+ npm install @angular/core @angular/cli # Angular
57
66
 
58
- # Example: Django
59
- pip install django djangorestframework python-dotenv
67
+ # Backend
68
+ npm install express typescript zod # Express
69
+ pip install django djangorestframework # Django
70
+ pip install fastapi uvicorn pydantic # FastAPI
71
+ go mod init your-project # Go
60
72
 
61
- # Example: Express API
62
- npm install express typescript zod prisma
73
+ # Database
74
+ npm install prisma @prisma/client # Prisma ORM
75
+ pip install sqlalchemy alembic # SQLAlchemy
76
+ npm install mongoose # Mongoose (MongoDB)
63
77
  ```
64
78
 
65
- ### 4. Start Coding with AI
79
+ ### 3. Start Coding with AI
66
80
 
67
81
  Your AI assistant will auto-load the configurations and follow enterprise patterns automatically!
68
82
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agents-templated",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Technology-agnostic development template with multi-AI agent support (Cursor, Copilot, VSCode, Gemini), security-first patterns, and comprehensive testing guidelines",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -25,44 +25,54 @@ Agents Templated scaffolds your project with:
25
25
 
26
26
  ## 🚀 Quick Start
27
27
 
28
- ### 1. Install (choose one method)
28
+ ### 1. Run the Interactive Wizard (Recommended)
29
29
 
30
30
  ```bash
31
- # Using npx (no installation needed)
32
- npx agents-templated@latest init --preset=nextjs
31
+ # Using npx (no installation needed) - RECOMMENDED
32
+ npx agents-templated@latest wizard
33
33
 
34
- # Or install globally
34
+ # Or install globally first
35
35
  npm install -g agents-templated
36
- agents-templated init --preset=nextjs
37
-
38
- # Or use the interactive wizard
39
- npx agents-templated@latest wizard
36
+ agents-templated wizard
40
37
  ```
41
38
 
42
- ### 2. Choose Your Preset
39
+ **Or use a preset for fast setup:**
43
40
 
44
41
  ```bash
45
- npx agents-templated init --preset=nextjs # Next.js full-stack
46
- npx agents-templated init --preset=express-api # Express.js REST API
47
- npx agents-templated init --preset=django-react # Django + React
48
- npx agents-templated init --preset=fastapi # FastAPI backend
49
- npx agents-templated init --preset=go-api # Go API server
42
+ # Initialize with a specific preset
43
+ npx agents-templated@latest init --preset=nextjs # Next.js
44
+ npx agents-templated@latest init --preset=express-api # Express
45
+ npx agents-templated@latest init --preset=django-react # Django
46
+ npx agents-templated@latest init --preset=fastapi # FastAPI
47
+ npx agents-templated@latest init --preset=go-api # Go
48
+
49
+ # Or install all components without a preset
50
+ npx agents-templated@latest init --all
50
51
  ```
51
52
 
52
- ### 3. Install Your Tech Stack
53
+ ### 2. Install Your Tech Stack
54
+
55
+ After initializing, install your chosen framework:
53
56
 
54
57
  ```bash
55
- # Example: Next.js
56
- npm install next react react-dom typescript
58
+ # Frontend
59
+ npm install next react react-dom # Next.js
60
+ npm install vue nuxt # Nuxt
61
+ npm install @angular/core @angular/cli # Angular
57
62
 
58
- # Example: Django
59
- pip install django djangorestframework python-dotenv
63
+ # Backend
64
+ npm install express typescript zod # Express
65
+ pip install django djangorestframework # Django
66
+ pip install fastapi uvicorn pydantic # FastAPI
67
+ go mod init your-project # Go
60
68
 
61
- # Example: Express API
62
- npm install express typescript zod prisma
69
+ # Database
70
+ npm install prisma @prisma/client # Prisma ORM
71
+ pip install sqlalchemy alembic # SQLAlchemy
72
+ npm install mongoose # Mongoose (MongoDB)
63
73
  ```
64
74
 
65
- ### 4. Start Coding with AI
75
+ ### 3. Start Coding with AI
66
76
 
67
77
  Your AI assistant will auto-load the configurations and follow enterprise patterns automatically!
68
78