@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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. 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
- omaikit init "Add auth to my API"
17
- omaikit plan "Add JWT auth"
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
- ### Development
29
+ ### Configuration
29
30
 
30
- ```bash
31
- npm run build --workspaces
32
- npm run test
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`.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@omaikit/cli",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "description": "CLI interface for Omaikit - multi-agent development toolkit",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",