@omaikit/cli 0.1.4 → 0.1.5
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 +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Command-line interface for Omaikit. This package orchestrates planning, code gen
|
|
|
5
5
|
### Features
|
|
6
6
|
|
|
7
7
|
- `omaikit init` to generate `.omaikit/context.json`
|
|
8
|
-
- `omaikit plan` to create structured plans
|
|
8
|
+
- `omaikit plan` to create structured plans into `.omaikit/plans/` and `.omaikit/tasks/`
|
|
9
9
|
- `omaikit code` to generate code into the project root
|
|
10
10
|
- `omaikit test` to generate tests into `.omaikit/tests`
|
|
11
11
|
|
|
@@ -13,8 +13,9 @@ Command-line interface for Omaikit. This package orchestrates planning, code gen
|
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
npm install -g @omaikit/cli
|
|
16
|
-
|
|
17
|
-
omaikit
|
|
16
|
+
cd my-project
|
|
17
|
+
omaikit init "Build a REST API with Express and MongoDB"
|
|
18
|
+
omaikit plan "Create a user authentication system"
|
|
18
19
|
omaikit code
|
|
19
20
|
omaikit test
|
|
20
21
|
```
|
|
@@ -25,9 +26,8 @@ omaikit test
|
|
|
25
26
|
- Tests: `.omaikit/tests/`
|
|
26
27
|
- Generated code: project root
|
|
27
28
|
|
|
28
|
-
###
|
|
29
|
+
### Configuration
|
|
29
30
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
```
|
|
31
|
+
The CLI uses OPENAI_API_KEY from environment variables for API access. Ensure you have it set before running commands.
|
|
32
|
+
|
|
33
|
+
It'll ask for the OPENAI_API_KEY configuration during `omaikit init`.
|