@ooneex/cli 0.17.0 → 1.0.0
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 +12 -20
- package/dist/index.js +890 -1091
- package/dist/index.js.map +20 -20
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @ooneex/cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Interactive CLI toolkit for scaffolding Ooneex projects, modules, controllers, services, repositories, and more with customizable code generation templates.
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|

|
|
@@ -16,16 +16,22 @@ A powerful command-line interface for scaffolding Ooneex applications, modules,
|
|
|
16
16
|
|
|
17
17
|
✅ **Service Generation** - Create service classes with dependency injection
|
|
18
18
|
|
|
19
|
-
✅ **Entity Generation** - Generate
|
|
19
|
+
✅ **Entity & Repository Generation** - Generate entities and repository classes
|
|
20
20
|
|
|
21
|
-
✅ **
|
|
21
|
+
✅ **Middleware Generation** - Scaffold HTTP and WebSocket middleware classes
|
|
22
22
|
|
|
23
|
-
✅ **Interactive Prompts** - User-friendly prompts
|
|
23
|
+
✅ **Interactive Prompts** - User-friendly prompts with input validation constraints
|
|
24
24
|
|
|
25
25
|
✅ **Docker Support** - Generate Docker configuration files
|
|
26
26
|
|
|
27
27
|
✅ **Migration & Seeds** - Create database migrations and seed files
|
|
28
28
|
|
|
29
|
+
✅ **AI & Vector Database** - Generate AI service integrations and vector database configurations
|
|
30
|
+
|
|
31
|
+
✅ **Claude Skill Generation** - Scaffold Claude AI skill templates
|
|
32
|
+
|
|
33
|
+
✅ **Comprehensive Templates** - 20+ code generation commands covering cron, logger, mailer, storage, analytics, cache, permissions, pub/sub, and more
|
|
34
|
+
|
|
29
35
|
## Installation
|
|
30
36
|
|
|
31
37
|
### Bun (Global)
|
|
@@ -38,21 +44,6 @@ bun add -g @ooneex/cli
|
|
|
38
44
|
bun add -D @ooneex/cli
|
|
39
45
|
```
|
|
40
46
|
|
|
41
|
-
### pnpm
|
|
42
|
-
```bash
|
|
43
|
-
pnpm add -D @ooneex/cli
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
### Yarn
|
|
47
|
-
```bash
|
|
48
|
-
yarn add -D @ooneex/cli
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
### npm
|
|
52
|
-
```bash
|
|
53
|
-
npm install -D @ooneex/cli
|
|
54
|
-
```
|
|
55
|
-
|
|
56
47
|
## Usage
|
|
57
48
|
|
|
58
49
|
### Creating a New Application
|
|
@@ -165,7 +156,8 @@ Scaffolds complete CRUD operations including:
|
|
|
165
156
|
| `make:repository` | Generate repository class |
|
|
166
157
|
| `make:seed` | Generate database seeder |
|
|
167
158
|
| `make:storage` | Generate storage service |
|
|
168
|
-
| `make:
|
|
159
|
+
| `make:vector-database` | Generate vector database configuration |
|
|
160
|
+
| `make:claude-skill` | Generate Claude AI skill template |
|
|
169
161
|
|
|
170
162
|
## API Reference
|
|
171
163
|
|