natureco-cli 1.0.14 → 1.0.16
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 +17 -0
- package/bin/natureco.js +42 -0
- package/package.json +1 -1
- package/src/commands/dashboard.js +687 -0
- package/src/commands/discord.js +159 -0
- package/src/commands/doctor.js +362 -0
- package/src/commands/setup.js +259 -0
- package/src/commands/slack.js +164 -0
- package/src/commands/whatsapp.js +190 -0
package/README.md
CHANGED
|
@@ -4,10 +4,27 @@
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
### Hızlı Kurulum
|
|
8
|
+
|
|
9
|
+
**Mac/Linux:**
|
|
10
|
+
```bash
|
|
11
|
+
curl -fsSL https://natureco.me/install.sh | bash
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**Windows (PowerShell):**
|
|
15
|
+
```powershell
|
|
16
|
+
iwr -useb https://natureco.me/install.ps1 | iex
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Manuel Kurulum
|
|
20
|
+
|
|
7
21
|
```bash
|
|
8
22
|
npm install -g natureco-cli
|
|
9
23
|
```
|
|
10
24
|
|
|
25
|
+
**Gereksinimler:**
|
|
26
|
+
- Node.js 18+ (native fetch için gerekli)
|
|
27
|
+
|
|
11
28
|
## Quick Start
|
|
12
29
|
|
|
13
30
|
```bash
|
package/bin/natureco.js
CHANGED
|
@@ -160,6 +160,48 @@ program
|
|
|
160
160
|
ultrareviewCmd(file);
|
|
161
161
|
});
|
|
162
162
|
|
|
163
|
+
program
|
|
164
|
+
.command('discord <action>')
|
|
165
|
+
.description('Discord integration (connect|disconnect|status)')
|
|
166
|
+
.action((action) => {
|
|
167
|
+
const discordCmd = require('../src/commands/discord');
|
|
168
|
+
discordCmd(action);
|
|
169
|
+
});
|
|
170
|
+
|
|
171
|
+
program
|
|
172
|
+
.command('slack <action>')
|
|
173
|
+
.description('Slack integration (connect|disconnect|status)')
|
|
174
|
+
.action((action) => {
|
|
175
|
+
const slackCmd = require('../src/commands/slack');
|
|
176
|
+
slackCmd(action);
|
|
177
|
+
});
|
|
178
|
+
|
|
179
|
+
program
|
|
180
|
+
.command('whatsapp <action>')
|
|
181
|
+
.description('WhatsApp integration (connect|disconnect|status)')
|
|
182
|
+
.action((action) => {
|
|
183
|
+
const whatsappCmd = require('../src/commands/whatsapp');
|
|
184
|
+
whatsappCmd(action);
|
|
185
|
+
});
|
|
186
|
+
|
|
187
|
+
program
|
|
188
|
+
.command('dashboard [action]')
|
|
189
|
+
.description('Web Control UI (start|stop|status)')
|
|
190
|
+
.action((action) => {
|
|
191
|
+
const dashboardCmd = require('../src/commands/dashboard');
|
|
192
|
+
dashboardCmd(action);
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
program
|
|
196
|
+
.command('doctor')
|
|
197
|
+
.description('System diagnostics and health check')
|
|
198
|
+
.option('--fix', 'Automatically fix issues')
|
|
199
|
+
.action((options) => {
|
|
200
|
+
const doctorCmd = require('../src/commands/doctor');
|
|
201
|
+
const args = process.argv.slice(3);
|
|
202
|
+
doctorCmd(args);
|
|
203
|
+
});
|
|
204
|
+
|
|
163
205
|
program
|
|
164
206
|
.command('help')
|
|
165
207
|
.description('Show help information')
|