@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @ooneex/cli
2
2
 
3
- A powerful command-line interface for scaffolding Ooneex applications, modules, controllers, services, and more. This package provides an interactive CLI tool with code generation capabilities to accelerate development workflows.
3
+ Interactive CLI toolkit for scaffolding Ooneex projects, modules, controllers, services, repositories, and more with customizable code generation templates.
4
4
 
5
5
  ![Bun](https://img.shields.io/badge/Bun-Compatible-orange?style=flat-square&logo=bun)
6
6
  ![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue?style=flat-square&logo=typescript)
@@ -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 TypeORM entities with common fields
19
+ ✅ **Entity & Repository Generation** - Generate entities and repository classes
20
20
 
21
- ✅ **CRUD Generation** - Scaffold complete CRUD operations in one command
21
+ ✅ **Middleware Generation** - Scaffold HTTP and WebSocket middleware classes
22
22
 
23
- ✅ **Interactive Prompts** - User-friendly prompts for customization
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:translation` | Generate translation files |
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