@ooneex/cli 1.31.0 → 1.32.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 +6 -6
- package/dist/index.js +89689 -3275
- package/dist/index.js.map +44 -29
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -49,7 +49,7 @@ bun add -D @ooneex/cli
|
|
|
49
49
|
### Creating a New Application
|
|
50
50
|
|
|
51
51
|
```bash
|
|
52
|
-
ooneex
|
|
52
|
+
ooneex app:create
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
This command will interactively prompt you for:
|
|
@@ -67,7 +67,7 @@ The generated application includes:
|
|
|
67
67
|
### Generating a Module
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
ooneex
|
|
70
|
+
ooneex module:create
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
Creates a new feature module with:
|
|
@@ -140,14 +140,14 @@ Installs Zsh completions for the `oo` and `ooneex` commands with context-aware o
|
|
|
140
140
|
| `make:logger` | Generate a new logger class |
|
|
141
141
|
| `make:mailer` | Generate a new mailer class |
|
|
142
142
|
| `make:middleware` | Generate a new middleware class |
|
|
143
|
-
| `
|
|
143
|
+
| `migration:create` | Generate a new migration file |
|
|
144
144
|
| `make:permission` | Generate a new permission class |
|
|
145
145
|
| `make:pubsub` | Generate a new PubSub event class |
|
|
146
146
|
| `make:repository` | Generate a new repository class |
|
|
147
|
-
| `
|
|
147
|
+
| `seed:create` | Generate a new seed file |
|
|
148
148
|
| `make:storage` | Generate a new storage class |
|
|
149
149
|
| `make:vector-database` | Generate a new vector database class |
|
|
150
|
-
| `
|
|
150
|
+
| `claude:skill:create` | Generate Claude skills from templates |
|
|
151
151
|
|
|
152
152
|
## API Reference
|
|
153
153
|
|
|
@@ -274,7 +274,7 @@ if (command) {
|
|
|
274
274
|
|
|
275
275
|
### Generated Application Structure
|
|
276
276
|
|
|
277
|
-
When running `
|
|
277
|
+
When running `app:create`, the following structure is created:
|
|
278
278
|
|
|
279
279
|
```
|
|
280
280
|
my-app/
|