@seeka-labs/cli-apps 3.8.1 → 3.8.2
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 +13 -13
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ npm install -g @seeka-labs/cli-apps
|
|
|
12
12
|
yarn global add @seeka-labs/cli-apps
|
|
13
13
|
|
|
14
14
|
# Or run directly with npx
|
|
15
|
-
npx @seeka-labs/cli-apps
|
|
15
|
+
npx @seeka-labs/cli-apps@latest
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
## Quick Start
|
|
@@ -20,7 +20,7 @@ npx @seeka-labs/cli-apps
|
|
|
20
20
|
The fastest way to get started is to run the CLI without any arguments to enter **interactive mode**:
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npx @seeka-labs/cli-apps
|
|
23
|
+
npx @seeka-labs/cli-apps@latest
|
|
24
24
|
```
|
|
25
25
|
|
|
26
26
|
This will guide you through the setup process with prompts for all required information.
|
|
@@ -35,13 +35,13 @@ Creates a new Seeka app with the specified template and configuration.
|
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
# Interactive mode (recommended for first-time users)
|
|
38
|
-
npx @seeka-labs/cli-apps
|
|
38
|
+
npx @seeka-labs/cli-apps@latest
|
|
39
39
|
|
|
40
40
|
# Using command-line arguments
|
|
41
|
-
npx @seeka-labs/cli-apps init <org> <name> [options]
|
|
41
|
+
npx @seeka-labs/cli-apps@latest init <org> <name> [options]
|
|
42
42
|
|
|
43
43
|
# Using a configuration file
|
|
44
|
-
npx @seeka-labs/cli-apps init <config-file.json>
|
|
44
|
+
npx @seeka-labs/cli-apps@latest init <config-file.json>
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
#### Arguments
|
|
@@ -71,27 +71,27 @@ npx @seeka-labs/cli-apps init <config-file.json>
|
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
# Create a new Azure Function app
|
|
74
|
-
npx @seeka-labs/cli-apps init my-org my-app \
|
|
74
|
+
npx @seeka-labs/cli-apps@latest init my-org my-app \
|
|
75
75
|
--template azure-function \
|
|
76
76
|
--developer "My Company" \
|
|
77
77
|
--email "dev@mycompany.com"
|
|
78
78
|
|
|
79
79
|
# Create app with environment variables
|
|
80
|
-
npx @seeka-labs/cli-apps init my-org my-app \
|
|
80
|
+
npx @seeka-labs/cli-apps@latest init my-org my-app \
|
|
81
81
|
--template azure-function \
|
|
82
82
|
--developer "My Company" \
|
|
83
83
|
--email "dev@mycompany.com" \
|
|
84
84
|
--env "SEEKA_APP_ID=your-app-id" "SEEKA_APP_SECRET=your-secret"
|
|
85
85
|
|
|
86
86
|
# Create app without installing dependencies
|
|
87
|
-
npx @seeka-labs/cli-apps init my-org my-app \
|
|
87
|
+
npx @seeka-labs/cli-apps@latest init my-org my-app \
|
|
88
88
|
--template azure-function \
|
|
89
89
|
--developer "My Company" \
|
|
90
90
|
--email "dev@mycompany.com" \
|
|
91
91
|
--noDependencies
|
|
92
92
|
|
|
93
93
|
# Create app from a configuration file
|
|
94
|
-
npx @seeka-labs/cli-apps init ./my-app-config.json
|
|
94
|
+
npx @seeka-labs/cli-apps@latest init ./my-app-config.json
|
|
95
95
|
```
|
|
96
96
|
|
|
97
97
|
---
|
|
@@ -104,10 +104,10 @@ Installs AI context files to help AI assistants understand your Seeka app struct
|
|
|
104
104
|
|
|
105
105
|
```bash
|
|
106
106
|
# Install AI context to current directory
|
|
107
|
-
npx @seeka-labs/cli-apps ai context
|
|
107
|
+
npx @seeka-labs/cli-apps@latest ai context
|
|
108
108
|
|
|
109
109
|
# Install AI context to a specific directory
|
|
110
|
-
npx @seeka-labs/cli-apps ai context --target /path/to/project
|
|
110
|
+
npx @seeka-labs/cli-apps@latest ai context --target /path/to/project
|
|
111
111
|
```
|
|
112
112
|
|
|
113
113
|
#### Options
|
|
@@ -151,7 +151,7 @@ npx @seeka-labs/cli-apps ai context --target /path/to/project
|
|
|
151
151
|
When you run the CLI without any arguments, it enters interactive mode:
|
|
152
152
|
|
|
153
153
|
```bash
|
|
154
|
-
npx @seeka-labs/cli-apps
|
|
154
|
+
npx @seeka-labs/cli-apps@latest
|
|
155
155
|
```
|
|
156
156
|
|
|
157
157
|
### Available Actions
|
|
@@ -198,7 +198,7 @@ You can use a JSON configuration file instead of command-line arguments:
|
|
|
198
198
|
Then run:
|
|
199
199
|
|
|
200
200
|
```bash
|
|
201
|
-
npx @seeka-labs/cli-apps init ./my-config.json
|
|
201
|
+
npx @seeka-labs/cli-apps@latest init ./my-config.json
|
|
202
202
|
```
|
|
203
203
|
|
|
204
204
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seeka-labs/cli-apps",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Seeka - Apps CLI",
|
|
6
6
|
"author": "SEEKA <platform@seeka.co>",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"ts-jest": "^29",
|
|
66
66
|
"typescript": "^5"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "af02a0413272e165016fcaab2e3b35579abaec9b"
|
|
69
69
|
}
|