natureco-cli 2.23.29 → 2.23.30
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 +94 -11
- package/bin/natureco.js +402 -4
- package/package.json +1 -1
- package/src/commands/admin-rpc.js +219 -0
- package/src/commands/agent.js +89 -0
- package/src/commands/approvals.js +53 -0
- package/src/commands/backup.js +124 -0
- package/src/commands/bonjour.js +167 -0
- package/src/commands/capability.js +64 -0
- package/src/commands/clickclack.js +130 -0
- package/src/commands/commitments.js +32 -0
- package/src/commands/completion.js +76 -0
- package/src/commands/configure.js +93 -0
- package/src/commands/crestodian.js +92 -0
- package/src/commands/daemon.js +60 -0
- package/src/commands/device-pair.js +248 -0
- package/src/commands/devices.js +110 -0
- package/src/commands/directory.js +47 -0
- package/src/commands/dns.js +58 -0
- package/src/commands/docs.js +43 -0
- package/src/commands/exec-policy.js +71 -0
- package/src/commands/gateway-server.js +1155 -24
- package/src/commands/health.js +18 -0
- package/src/commands/imessage.js +128 -14
- package/src/commands/infer.js +73 -0
- package/src/commands/irc.js +64 -15
- package/src/commands/mattermost.js +114 -12
- package/src/commands/memory-cmd.js +134 -1
- package/src/commands/message.js +9 -3
- package/src/commands/migrate.js +213 -2
- package/src/commands/node.js +98 -0
- package/src/commands/nodes.js +106 -0
- package/src/commands/oc-path.js +200 -0
- package/src/commands/onboard.js +70 -0
- package/src/commands/open-prose.js +67 -0
- package/src/commands/policy.js +176 -0
- package/src/commands/proxy.js +155 -0
- package/src/commands/qr.js +28 -0
- package/src/commands/sandbox.js +125 -0
- package/src/commands/secrets.js +118 -0
- package/src/commands/setup.js +113 -7
- package/src/commands/signal.js +447 -18
- package/src/commands/sms.js +123 -19
- package/src/commands/system.js +53 -0
- package/src/commands/terminal.js +21 -0
- package/src/commands/thread-ownership.js +157 -0
- package/src/commands/transcripts.js +72 -0
- package/src/commands/voice.js +82 -0
- package/src/commands/vydra.js +98 -0
- package/src/commands/workboard.js +207 -0
- package/src/tools/audio_understanding.js +154 -0
- package/src/tools/browser.js +112 -0
- package/src/tools/canvas.js +104 -0
- package/src/tools/document_extract.js +84 -0
- package/src/tools/duckduckgo.js +54 -0
- package/src/tools/exa_search.js +66 -0
- package/src/tools/firecrawl.js +104 -0
- package/src/tools/image_generation.js +99 -0
- package/src/tools/llm_task.js +118 -0
- package/src/tools/media_understanding.js +128 -0
- package/src/tools/music_generation.js +113 -0
- package/src/tools/parallel_search.js +77 -0
- package/src/tools/phone_control.js +80 -0
- package/src/tools/phone_control_enhanced.js +184 -0
- package/src/tools/searxng.js +61 -0
- package/src/tools/speech_to_text.js +135 -0
- package/src/tools/text_to_speech.js +105 -0
- package/src/tools/thread_ownership.js +88 -0
- package/src/tools/video_generation.js +72 -0
- package/src/tools/web_readability.js +104 -0
- package/src/utils/memory.js +200 -0
package/README.md
CHANGED
|
@@ -57,13 +57,18 @@ natureco code
|
|
|
57
57
|
| Komut | Açıklama |
|
|
58
58
|
|-------|----------|
|
|
59
59
|
| `natureco chat` | AI sohbet başlat (varsayılan bot) |
|
|
60
|
-
| `natureco chat "Bot Adı"` | Belirli bot ile sohbet |
|
|
61
60
|
| `natureco chat --resume` | Son oturumu devam ettir |
|
|
62
61
|
| `natureco code` | Code agent — dosya oku, yaz, komut çalıştır |
|
|
63
|
-
| `natureco code src/app.js` | Belirli dosyaya odaklanarak code agent başlat |
|
|
64
62
|
| `natureco ask "soru"` | Tek seferlik soru |
|
|
65
63
|
| `natureco run script.md` | Markdown script çalıştır |
|
|
66
64
|
| `natureco bots` | Bot listesi |
|
|
65
|
+
| `natureco agent run <task>` | One-shot agent görevi |
|
|
66
|
+
| `natureco agent abort <id>` | Agent görevi durdur |
|
|
67
|
+
| `natureco agent logs <id>` | Agent loglarını göster |
|
|
68
|
+
| `natureco commitments list` | Eylem taahhütlerini listele |
|
|
69
|
+
| `natureco commitments add <text>` | Taahhüt ekle |
|
|
70
|
+
| `natureco infer models` | Modelleri algıla |
|
|
71
|
+
| `natureco infer capabilities` | Yetenekleri sorgula |
|
|
67
72
|
|
|
68
73
|
**Chat içi komutlar:**
|
|
69
74
|
|
|
@@ -97,9 +102,13 @@ natureco code
|
|
|
97
102
|
| `natureco config list` | Tüm ayarları göster |
|
|
98
103
|
| `natureco config set key val` | Ayar değiştir |
|
|
99
104
|
| `natureco config get key` | Ayar oku |
|
|
105
|
+
| `natureco configure` | Interaktif yapılandırma sihirbazı |
|
|
106
|
+
| `natureco init` | Proje başlatma (.natureco dizini) |
|
|
100
107
|
| `natureco doctor` | Sistem sağlık kontrolü |
|
|
101
108
|
| `natureco doctor --fix` | Sorunları otomatik düzelt |
|
|
102
109
|
| `natureco update` | Güncelleme kontrol |
|
|
110
|
+
| `natureco completion bash` | Bash completion oluştur |
|
|
111
|
+
| `natureco completion powershell` | PowerShell completion oluştur |
|
|
103
112
|
|
|
104
113
|
### 🔌 Entegrasyonlar
|
|
105
114
|
|
|
@@ -109,10 +118,14 @@ natureco code
|
|
|
109
118
|
| `natureco discord connect` | Discord bot bağla |
|
|
110
119
|
| `natureco slack connect` | Slack workspace bağla |
|
|
111
120
|
| `natureco whatsapp connect` | WhatsApp QR ile bağla |
|
|
112
|
-
| `natureco
|
|
113
|
-
| `natureco
|
|
114
|
-
| `natureco
|
|
115
|
-
| `natureco
|
|
121
|
+
| `natureco signal connect` | Signal bağla |
|
|
122
|
+
| `natureco irc connect` | IRC bağla |
|
|
123
|
+
| `natureco mattermost connect` | Mattermost bağla |
|
|
124
|
+
| `natureco imessage connect` | iMessage bağla |
|
|
125
|
+
| `natureco sms connect` | SMS (Twilio) bağla |
|
|
126
|
+
| `natureco webhooks connect` | Webhook ekle |
|
|
127
|
+
| `natureco gateway start` | WebSocket gateway başlat |
|
|
128
|
+
| `natureco gateway stop` | Gateway durdur |
|
|
116
129
|
| `natureco gateway status` | Gateway durumu |
|
|
117
130
|
|
|
118
131
|
### 🛠️ Geliştirici Araçları
|
|
@@ -122,12 +135,8 @@ natureco code
|
|
|
122
135
|
| `natureco git review` | Staged değişiklikleri incele |
|
|
123
136
|
| `natureco git commit` | AI ile commit mesajı oluştur |
|
|
124
137
|
| `natureco skills list` | Skill listesi |
|
|
125
|
-
| `natureco skills search <q>` | ClawHub'da skill ara |
|
|
126
|
-
| `natureco skills browse` | Popüler skill'leri gözat |
|
|
127
138
|
| `natureco skills install slug` | Skill kur |
|
|
128
|
-
| `natureco skills install clawhub:slug` | ClawHub'dan skill kur |
|
|
129
139
|
| `natureco skills remove slug` | Skill kaldır |
|
|
130
|
-
| `natureco skills create <ad>` | Yeni skill şablonu oluştur |
|
|
131
140
|
| `natureco mcp list` | MCP sunucuları |
|
|
132
141
|
| `natureco mcp add` | MCP sunucu ekle |
|
|
133
142
|
| `natureco hooks create type` | Hook oluştur |
|
|
@@ -135,8 +144,10 @@ natureco code
|
|
|
135
144
|
| `natureco cron add` | Zamanlanmış görev ekle |
|
|
136
145
|
| `natureco ultrareview file.js` | Detaylı kod inceleme |
|
|
137
146
|
| `natureco migrate --from openclaw` | OpenClaw'dan taşı |
|
|
147
|
+
| `natureco transcripts list` | Transcript listele |
|
|
148
|
+
| `natureco transcripts show <id>` | Transcript detayı |
|
|
138
149
|
|
|
139
|
-
### 📊 Yönetim
|
|
150
|
+
### 📊 Yönetim & Sistem
|
|
140
151
|
|
|
141
152
|
| Komut | Açıklama |
|
|
142
153
|
|-------|----------|
|
|
@@ -144,11 +155,83 @@ natureco code
|
|
|
144
155
|
| `natureco memory status` | Hafıza durumu |
|
|
145
156
|
| `natureco logs` | Gateway logları |
|
|
146
157
|
| `natureco status` | Sistem durumu |
|
|
158
|
+
| `natureco system status` | Detaylı sistem durumu |
|
|
159
|
+
| `natureco system heartbeat` | Sistem heartbeat |
|
|
160
|
+
| `natureco system presence` | Presence durumu |
|
|
161
|
+
| `natureco health` | Servis sağlık kontrolü |
|
|
147
162
|
| `natureco agents list` | Agent listesi |
|
|
148
163
|
| `natureco plugins list` | Plugin listesi |
|
|
149
164
|
| `natureco security audit` | Güvenlik denetimi |
|
|
150
165
|
| `natureco reset` | Sıfırlama |
|
|
151
166
|
| `natureco sessions list` | Oturum listesi |
|
|
167
|
+
| `natureco backup create` | Yedek oluştur |
|
|
168
|
+
| `natureco backup list` | Yedekleri listele |
|
|
169
|
+
| `natureco backup restore <id>` | Yedekten geri yükle |
|
|
170
|
+
| `natureco secrets list` | Gizli değerleri listele |
|
|
171
|
+
| `natureco secrets set <key> <value>` | Gizli değer ekle |
|
|
172
|
+
| `natureco approvals list` | Onay politikasını göster |
|
|
173
|
+
| `natureco approvals allow <command>` | Komuta onay ver |
|
|
174
|
+
| `natureco workboard show` | Görev panosunu göster |
|
|
175
|
+
| `natureco workboard add <task>` | Görev ekle |
|
|
176
|
+
|
|
177
|
+
### 🛰️ Ağ & Cihaz
|
|
178
|
+
|
|
179
|
+
| Komut | Açıklama |
|
|
180
|
+
|-------|----------|
|
|
181
|
+
| `natureco bonjour scan` | Ağ keşfi — LAN'da servis tara |
|
|
182
|
+
| `natureco bonjour discover` | Servisleri keşfet |
|
|
183
|
+
| `natureco dns resolve <host>` | DNS ile host çözümle |
|
|
184
|
+
| `natureco dns discover` | Ağdaki servisleri bul |
|
|
185
|
+
| `natureco directory query <query>` | Dizin sorgulama |
|
|
186
|
+
| `natureco policy check` | Workspace uyumluluk kontrolü |
|
|
187
|
+
| `natureco voice status` | Ses yapılandırması |
|
|
188
|
+
| `natureco voice providers` | TTS sağlayıcılarını listele |
|
|
189
|
+
| `natureco admin-rpc start` | HTTP admin RPC başlat |
|
|
190
|
+
| `natureco admin-rpc call <method>` | RPC metodu çağır |
|
|
191
|
+
| `natureco oc-path resolve <uri>` | nc:// URI çözümle |
|
|
192
|
+
| `natureco devices pair` | Cihaz eşleştir |
|
|
193
|
+
| `natureco devices list` | Eşleşmiş cihazları listele |
|
|
194
|
+
| `natureco device-pair list` | Eşleşme isteklerini göster |
|
|
195
|
+
| `natureco qr show` | QR kod göster |
|
|
196
|
+
| `natureco qr verify <code>` | QR kodu doğrula |
|
|
197
|
+
| `natureco onboard` | Interaktif onboarding sihirbazı |
|
|
198
|
+
| `natureco clickclack status` | Bildirim kanalı durumu |
|
|
199
|
+
| `natureco thread-ownership list` | Thread sahipliğini göster |
|
|
200
|
+
|
|
201
|
+
### 🔧 Altyapı
|
|
202
|
+
|
|
203
|
+
| Komut | Açıklama |
|
|
204
|
+
|-------|----------|
|
|
205
|
+
| `natureco daemon status` | Gateway daemon durumu |
|
|
206
|
+
| `natureco daemon start` | Daemon başlat |
|
|
207
|
+
| `natureco node status` | Node host durumu |
|
|
208
|
+
| `natureco node start` | Node host başlat (HTTP health endpoint) |
|
|
209
|
+
| `natureco node info` | Detaylı node bilgisi |
|
|
210
|
+
| `natureco nodes list` | Node network listesi |
|
|
211
|
+
| `natureco nodes pair <url>` | Node ekle |
|
|
212
|
+
| `natureco proxy start [port]` | Debug proxy başlat |
|
|
213
|
+
| `natureco proxy start 9090 --forward http://...` | Proxy ile yönlendirme |
|
|
214
|
+
| `natureco proxy capture` | Yakalanan istekleri göster |
|
|
215
|
+
| `natureco sandbox create <name>` | İzole çalışma dizini oluştur |
|
|
216
|
+
| `natureco sandbox exec <name> <command>` | Sandbox'ta komut çalıştır |
|
|
217
|
+
| `natureco capability list` | Yetenekleri listele |
|
|
218
|
+
| `natureco capability infer <provider>` | Sağlayıcı yeteneklerini sorgula |
|
|
219
|
+
|
|
220
|
+
### 📦 Medya & İçerik
|
|
221
|
+
|
|
222
|
+
| Komut | Açıklama |
|
|
223
|
+
|-------|----------|
|
|
224
|
+
| `natureco open-prose list` | Prose skills bundle bilgisi |
|
|
225
|
+
| `natureco vydra status` | Vydra medya sağlayıcı durumu |
|
|
226
|
+
| `natureco docs search <query>` | Dokümantasyon ara |
|
|
227
|
+
| `natureco docs open <topic>` | Dokümanı aç |
|
|
228
|
+
|
|
229
|
+
### 🔗 OpenClaw Uyumlu Takma Adlar
|
|
230
|
+
|
|
231
|
+
| Takma Ad | Asıl Komut |
|
|
232
|
+
|----------|-----------|
|
|
233
|
+
| `natureco acp` | `natureco code` |
|
|
234
|
+
| `natureco exec-policy` | `natureco policy` |
|
|
152
235
|
|
|
153
236
|
---
|
|
154
237
|
|
package/bin/natureco.js
CHANGED
|
@@ -19,6 +19,44 @@ const mattermost = require('../src/commands/mattermost');
|
|
|
19
19
|
const imessage = require('../src/commands/imessage');
|
|
20
20
|
const sms = require('../src/commands/sms');
|
|
21
21
|
const webhooks = require('../src/commands/webhooks');
|
|
22
|
+
const bonjour = require('../src/commands/bonjour');
|
|
23
|
+
const policy = require('../src/commands/policy');
|
|
24
|
+
const voice = require('../src/commands/voice');
|
|
25
|
+
const clickclack = require('../src/commands/clickclack');
|
|
26
|
+
const adminRpc = require('../src/commands/admin-rpc');
|
|
27
|
+
const ocPath = require('../src/commands/oc-path');
|
|
28
|
+
const workboard = require('../src/commands/workboard');
|
|
29
|
+
const threadOwnership = require('../src/commands/thread-ownership');
|
|
30
|
+
const devicePair = require('../src/commands/device-pair');
|
|
31
|
+
const openProse = require('../src/commands/open-prose');
|
|
32
|
+
const vydra = require('../src/commands/vydra');
|
|
33
|
+
// OpenClaw uyumlu komutlar
|
|
34
|
+
const agent = require('../src/commands/agent');
|
|
35
|
+
const approvals = require('../src/commands/approvals');
|
|
36
|
+
const backup = require('../src/commands/backup');
|
|
37
|
+
const capability = require('../src/commands/capability');
|
|
38
|
+
const commitments = require('../src/commands/commitments');
|
|
39
|
+
const completion = require('../src/commands/completion');
|
|
40
|
+
const configure = require('../src/commands/configure');
|
|
41
|
+
const crestodian = require('../src/commands/crestodian');
|
|
42
|
+
const daemon = require('../src/commands/daemon');
|
|
43
|
+
const devices = require('../src/commands/devices');
|
|
44
|
+
const directory = require('../src/commands/directory');
|
|
45
|
+
const dns = require('../src/commands/dns');
|
|
46
|
+
const docs = require('../src/commands/docs');
|
|
47
|
+
const execPolicy = require('../src/commands/exec-policy');
|
|
48
|
+
const health = require('../src/commands/health');
|
|
49
|
+
const infer = require('../src/commands/infer');
|
|
50
|
+
const node = require('../src/commands/node');
|
|
51
|
+
const nodes = require('../src/commands/nodes');
|
|
52
|
+
const onboard = require('../src/commands/onboard');
|
|
53
|
+
const proxy = require('../src/commands/proxy');
|
|
54
|
+
const qr = require('../src/commands/qr');
|
|
55
|
+
const sandbox = require('../src/commands/sandbox');
|
|
56
|
+
const secrets = require('../src/commands/secrets');
|
|
57
|
+
const system = require('../src/commands/system');
|
|
58
|
+
const terminal = require('../src/commands/terminal');
|
|
59
|
+
const transcripts = require('../src/commands/transcripts');
|
|
22
60
|
|
|
23
61
|
const program = new Command();
|
|
24
62
|
|
|
@@ -34,14 +72,20 @@ ${chalk.yellow('🤖 AI & Chat')}
|
|
|
34
72
|
${chalk.cyan('ask')} Tek soru sor
|
|
35
73
|
${chalk.cyan('run')} Markdown script çalıştır
|
|
36
74
|
${chalk.cyan('bots')} Bot listesi
|
|
75
|
+
${chalk.cyan('agent')} One-shot agent task (run|abort|tail|logs)
|
|
76
|
+
${chalk.cyan('commitments')} Eylem taahhütlerini yönet
|
|
77
|
+
${chalk.cyan('infer')} Yetenek/algılama sorgula (models|media|capabilities)
|
|
37
78
|
|
|
38
79
|
${chalk.yellow('⚙️ Kurulum & Ayarlar')}
|
|
39
80
|
${chalk.cyan('setup')} İlk kurulum sihirbazı
|
|
40
81
|
${chalk.cyan('login')} API key ile giriş
|
|
41
82
|
${chalk.cyan('logout')} Çıkış
|
|
42
83
|
${chalk.cyan('config')} Ayarları yönet
|
|
84
|
+
${chalk.cyan('configure')} Interaktif yapılandırma
|
|
43
85
|
${chalk.cyan('doctor')} Sistem sağlık kontrolü
|
|
44
86
|
${chalk.cyan('update')} Güncelleme kontrol
|
|
87
|
+
${chalk.cyan('init')} Proje başlatma
|
|
88
|
+
${chalk.cyan('completion')} Shell completion (bash|zsh|fish|powershell)
|
|
45
89
|
|
|
46
90
|
${chalk.yellow('🔌 Entegrasyonlar')}
|
|
47
91
|
${chalk.cyan('telegram')} Telegram bağlantısı
|
|
@@ -55,8 +99,9 @@ ${chalk.yellow('🔌 Entegrasyonlar')}
|
|
|
55
99
|
${chalk.cyan('sms')} SMS (Twilio) bağlantısı
|
|
56
100
|
${chalk.cyan('webhooks')} Webhook yönetimi
|
|
57
101
|
${chalk.cyan('gateway')} WebSocket gateway
|
|
102
|
+
${chalk.cyan('gateway-server')} Gateway daemon (start|stop|status)
|
|
58
103
|
|
|
59
|
-
${chalk.yellow('
|
|
104
|
+
${chalk.yellow('💻 Geliştirici Araçları')}
|
|
60
105
|
${chalk.cyan('git')} Git entegrasyonu
|
|
61
106
|
${chalk.cyan('skills')} Skill yönetimi
|
|
62
107
|
${chalk.cyan('mcp')} MCP sunucuları
|
|
@@ -64,8 +109,9 @@ ${chalk.yellow('🛠️ Geliştirici Araçları')}
|
|
|
64
109
|
${chalk.cyan('cron')} Zamanlanmış görevler
|
|
65
110
|
${chalk.cyan('sessions')} Oturum yönetimi
|
|
66
111
|
${chalk.cyan('ultrareview')} Detaylı kod inceleme
|
|
112
|
+
${chalk.cyan('transcripts')} Transcript yönetimi (list|show|delete)
|
|
67
113
|
|
|
68
|
-
${chalk.yellow('📊 Yönetim')}
|
|
114
|
+
${chalk.yellow('📊 Yönetim & Sistem')}
|
|
69
115
|
${chalk.cyan('dashboard')} Web kontrol paneli
|
|
70
116
|
${chalk.cyan('memory')} Hafıza yönetimi
|
|
71
117
|
${chalk.cyan('logs')} Gateway logları
|
|
@@ -74,12 +120,53 @@ ${chalk.yellow('📊 Yönetim')}
|
|
|
74
120
|
${chalk.cyan('plugins')} Plugin yönetimi
|
|
75
121
|
${chalk.cyan('security')} Güvenlik denetimi
|
|
76
122
|
${chalk.cyan('reset')} Sıfırlama
|
|
123
|
+
${chalk.cyan('system')} Sistem durumu/heartbeat/presence (status|heartbeat|presence)
|
|
124
|
+
${chalk.cyan('health')} Servis sağlık kontrolü
|
|
125
|
+
${chalk.cyan('backup')} Yedekleme (create|list|restore|verify)
|
|
126
|
+
${chalk.cyan('secrets')} Gizli değer yönetimi (list|set|get|audit)
|
|
127
|
+
${chalk.cyan('approvals')} Exec onay politikası (list|allow|deny|status)
|
|
128
|
+
${chalk.cyan('exec-policy')} Exec politika yönetimi
|
|
129
|
+
${chalk.cyan('workboard')} Görev/pano yönetimi
|
|
130
|
+
|
|
131
|
+
${chalk.yellow('🛰️ Ağ & Cihaz')}
|
|
132
|
+
${chalk.cyan('bonjour')} Ağ keşfi ve servis tarama
|
|
133
|
+
${chalk.cyan('dns')} Ağ keşfi — DNS (discover|resolve)
|
|
134
|
+
${chalk.cyan('directory')} Dizin sorgulama (query)
|
|
135
|
+
${chalk.cyan('policy')} Workspace uyumluluk politikası
|
|
136
|
+
${chalk.cyan('voice')} Sesli sohbet yapılandırması
|
|
137
|
+
${chalk.cyan('clickclack')} Bildirim/beep kanalı
|
|
138
|
+
${chalk.cyan('admin-rpc')} HTTP admin RPC endpoint
|
|
139
|
+
${chalk.cyan('oc-path')} nc:// URI path handler
|
|
140
|
+
${chalk.cyan('thread-ownership')} Slack thread koordinasyonu
|
|
141
|
+
${chalk.cyan('device-pair')} Cihaz eşleştirme (QR kod)
|
|
142
|
+
${chalk.cyan('devices')} Cihaz yönetimi (pair|unpair|list|token)
|
|
143
|
+
${chalk.cyan('qr')} QR kod ile eşleştirme
|
|
144
|
+
${chalk.cyan('onboard')} Interaktif onboarding sihirbazı
|
|
145
|
+
|
|
146
|
+
${chalk.yellow('🔧 Altyapı')}
|
|
147
|
+
${chalk.cyan('daemon')} Gateway daemon (status|start|stop|restart)
|
|
148
|
+
${chalk.cyan('node')} Node host (status|start|stop|info)
|
|
149
|
+
${chalk.cyan('nodes')} Node network yönetimi (list|pair|approve|reject|remove|rename)
|
|
150
|
+
${chalk.cyan('proxy')} Debug proxy (status|start|stop)
|
|
151
|
+
${chalk.cyan('sandbox')} Sandbox container yönetimi (list|create|destroy)
|
|
152
|
+
${chalk.cyan('capability')} Yetenek sorgulama (list|infer)
|
|
153
|
+
|
|
154
|
+
${chalk.yellow('📦 Medya & İçerik')}
|
|
155
|
+
${chalk.cyan('open-prose')} Prose skills bundle
|
|
156
|
+
${chalk.cyan('vydra')} Vydra medya sağlayıcı
|
|
157
|
+
${chalk.cyan('docs')} Dokümantasyon arama (search|open)
|
|
158
|
+
|
|
159
|
+
${chalk.yellow('🔗 Takma Adlar (OpenClaw uyumlu)')}
|
|
160
|
+
${chalk.cyan('acp')} = code ${chalk.cyan('exec-policy')} = policy
|
|
161
|
+
${chalk.cyan('dns')} = bonjour ${chalk.cyan('devices')} = device-pair
|
|
77
162
|
|
|
78
163
|
${chalk.yellow('Örnekler:')}
|
|
79
164
|
${chalk.gray('$ natureco setup')} İlk kurulum
|
|
80
165
|
${chalk.gray('$ natureco chat')} Sohbet başlat
|
|
81
166
|
${chalk.gray('$ natureco code')} Code agent
|
|
82
167
|
${chalk.gray('$ natureco doctor')} Sistem kontrolü
|
|
168
|
+
${chalk.gray('$ natureco agent run "dosya oku"')} One-shot agent
|
|
169
|
+
${chalk.gray('$ natureco completion bash')} Shell completion
|
|
83
170
|
`);
|
|
84
171
|
|
|
85
172
|
program
|
|
@@ -174,8 +261,8 @@ program
|
|
|
174
261
|
|
|
175
262
|
program
|
|
176
263
|
.command('migrate')
|
|
177
|
-
.description('Migrate from other CLI tools')
|
|
178
|
-
.option('--from <source>', 'Source CLI (openclaw)')
|
|
264
|
+
.description('Migrate from other CLI tools (openclaw, claude-code, hermes)')
|
|
265
|
+
.option('--from <source>', 'Source CLI (openclaw, claude-code, hermes)', 'openclaw')
|
|
179
266
|
.option('--openclaw-dir <path>', 'OpenClaw directory path (default: ~/.openclaw)')
|
|
180
267
|
.action((options) => {
|
|
181
268
|
const migrateCmd = require('../src/commands/migrate');
|
|
@@ -390,6 +477,98 @@ program
|
|
|
390
477
|
channelsCmd([action, ...(params || [])]);
|
|
391
478
|
});
|
|
392
479
|
|
|
480
|
+
program
|
|
481
|
+
.command('bonjour [action]')
|
|
482
|
+
.description('Network discovery (scan|discover|status) — find NatureCo services on LAN')
|
|
483
|
+
.action((action) => {
|
|
484
|
+
const bonjourCmd = require('../src/commands/bonjour');
|
|
485
|
+
const args = process.argv.slice(3);
|
|
486
|
+
bonjourCmd(args);
|
|
487
|
+
});
|
|
488
|
+
|
|
489
|
+
program
|
|
490
|
+
.command('policy [action]')
|
|
491
|
+
.description('Workspace policy checks (check|set|list|remove)')
|
|
492
|
+
.action((action) => {
|
|
493
|
+
const policyCmd = require('../src/commands/policy');
|
|
494
|
+
const args = process.argv.slice(3);
|
|
495
|
+
policyCmd(args);
|
|
496
|
+
});
|
|
497
|
+
|
|
498
|
+
program
|
|
499
|
+
.command('voice [action]')
|
|
500
|
+
.description('Voice configuration (status|providers|set) — manage TTS voice settings')
|
|
501
|
+
.action((action) => {
|
|
502
|
+
const voiceCmd = require('../src/commands/voice');
|
|
503
|
+
const args = process.argv.slice(3);
|
|
504
|
+
voiceCmd(args);
|
|
505
|
+
});
|
|
506
|
+
|
|
507
|
+
program
|
|
508
|
+
.command('clickclack [action]')
|
|
509
|
+
.description('ClickClack notification channel (status|test|enable|disable|listen|notify)')
|
|
510
|
+
.action((action) => {
|
|
511
|
+
const clickclackCmd = require('../src/commands/clickclack');
|
|
512
|
+
const args = process.argv.slice(3);
|
|
513
|
+
clickclackCmd(args);
|
|
514
|
+
});
|
|
515
|
+
|
|
516
|
+
program
|
|
517
|
+
.command('admin-rpc [action]')
|
|
518
|
+
.description('Admin HTTP RPC server (status|start|stop|call|methods)')
|
|
519
|
+
.action((action) => {
|
|
520
|
+
const args = process.argv.slice(3);
|
|
521
|
+
adminRpc(args);
|
|
522
|
+
});
|
|
523
|
+
|
|
524
|
+
program
|
|
525
|
+
.command('oc-path [action]')
|
|
526
|
+
.description('nc:// URI path handler (resolve|list|cat|ls)')
|
|
527
|
+
.action((action) => {
|
|
528
|
+
const args = process.argv.slice(3);
|
|
529
|
+
ocPath(args);
|
|
530
|
+
});
|
|
531
|
+
|
|
532
|
+
program
|
|
533
|
+
.command('workboard [action]')
|
|
534
|
+
.description('Work board (show|add|move|remove|clear|columns|export|import)')
|
|
535
|
+
.action((action) => {
|
|
536
|
+
const args = process.argv.slice(3);
|
|
537
|
+
workboard(args);
|
|
538
|
+
});
|
|
539
|
+
|
|
540
|
+
program
|
|
541
|
+
.command('thread-ownership [action]')
|
|
542
|
+
.description('Thread ownership (status|list|assign|release|check|agent)')
|
|
543
|
+
.action((action) => {
|
|
544
|
+
const args = process.argv.slice(3);
|
|
545
|
+
threadOwnership(args);
|
|
546
|
+
});
|
|
547
|
+
|
|
548
|
+
program
|
|
549
|
+
.command('device-pair [action]')
|
|
550
|
+
.description('Device pairing (list|request|approve|reject|remove|pairing-code|verify)')
|
|
551
|
+
.action((action) => {
|
|
552
|
+
const args = process.argv.slice(3);
|
|
553
|
+
devicePair(args);
|
|
554
|
+
});
|
|
555
|
+
|
|
556
|
+
program
|
|
557
|
+
.command('open-prose [action]')
|
|
558
|
+
.description('OpenProse skills bundle (list|info)')
|
|
559
|
+
.action((action) => {
|
|
560
|
+
const args = process.argv.slice(3);
|
|
561
|
+
openProse(args);
|
|
562
|
+
});
|
|
563
|
+
|
|
564
|
+
program
|
|
565
|
+
.command('vydra [action]')
|
|
566
|
+
.description('Vydra media provider (status|configure|test)')
|
|
567
|
+
.action((action) => {
|
|
568
|
+
const args = process.argv.slice(3);
|
|
569
|
+
vydra(args);
|
|
570
|
+
});
|
|
571
|
+
|
|
393
572
|
program
|
|
394
573
|
.command('models [action] [params...]')
|
|
395
574
|
.description('Manage AI models (list|set|scan|aliases|fallbacks)')
|
|
@@ -483,6 +662,225 @@ program
|
|
|
483
662
|
uninstallCmd(process.argv.slice(3));
|
|
484
663
|
});
|
|
485
664
|
|
|
665
|
+
// === OpenClaw uyumlu komutlar ===
|
|
666
|
+
|
|
667
|
+
program
|
|
668
|
+
.command('agent <action>')
|
|
669
|
+
.description('One-shot agent task (run|abort|tail|logs)')
|
|
670
|
+
.action((action) => {
|
|
671
|
+
const args = process.argv.slice(3);
|
|
672
|
+
agent([action, ...args]);
|
|
673
|
+
});
|
|
674
|
+
|
|
675
|
+
program
|
|
676
|
+
.command('approvals <action>')
|
|
677
|
+
.description('Exec approval policy (list|allow|deny|status)')
|
|
678
|
+
.action((action) => {
|
|
679
|
+
const args = process.argv.slice(3);
|
|
680
|
+
approvals([action, ...args]);
|
|
681
|
+
});
|
|
682
|
+
|
|
683
|
+
program
|
|
684
|
+
.command('backup <action>')
|
|
685
|
+
.description('Backup management (create|list|restore|verify)')
|
|
686
|
+
.action((action) => {
|
|
687
|
+
const args = process.argv.slice(3);
|
|
688
|
+
backup([action, ...args]);
|
|
689
|
+
});
|
|
690
|
+
|
|
691
|
+
program
|
|
692
|
+
.command('capability [action]')
|
|
693
|
+
.description('Query agent capabilities (list|infer)')
|
|
694
|
+
.action((action) => {
|
|
695
|
+
const args = process.argv.slice(3);
|
|
696
|
+
capability(args);
|
|
697
|
+
});
|
|
698
|
+
|
|
699
|
+
program
|
|
700
|
+
.command('commitments <action>')
|
|
701
|
+
.description('Manage action commitments (list|add|check|resolve|summary|pending|done)')
|
|
702
|
+
.action((action) => {
|
|
703
|
+
const args = process.argv.slice(3);
|
|
704
|
+
commitments([action, ...args]);
|
|
705
|
+
});
|
|
706
|
+
|
|
707
|
+
program
|
|
708
|
+
.command('completion <shell>')
|
|
709
|
+
.description('Generate shell completion script (bash|zsh|fish|powershell)')
|
|
710
|
+
.action((shell) => {
|
|
711
|
+
completion(shell);
|
|
712
|
+
});
|
|
713
|
+
|
|
714
|
+
program
|
|
715
|
+
.command('configure')
|
|
716
|
+
.description('Interactive configuration wizard')
|
|
717
|
+
.action(() => {
|
|
718
|
+
configure(process.argv.slice(3));
|
|
719
|
+
});
|
|
720
|
+
|
|
721
|
+
program
|
|
722
|
+
.command('crestodian [action]')
|
|
723
|
+
.description('Crestodian repair assistant (repair|analyze|plan)')
|
|
724
|
+
.action((action) => {
|
|
725
|
+
const args = process.argv.slice(3);
|
|
726
|
+
crestodian(args);
|
|
727
|
+
});
|
|
728
|
+
|
|
729
|
+
program
|
|
730
|
+
.command('daemon <action>')
|
|
731
|
+
.description('Gateway daemon management (status|start|stop|restart)')
|
|
732
|
+
.action((action) => {
|
|
733
|
+
const args = process.argv.slice(3);
|
|
734
|
+
daemon([action, ...args]);
|
|
735
|
+
});
|
|
736
|
+
|
|
737
|
+
program
|
|
738
|
+
.command('devices <action>')
|
|
739
|
+
.description('Device management (pair|unpair|list|token)')
|
|
740
|
+
.option('--id <id>', 'Device ID')
|
|
741
|
+
.option('--name <name>', 'Device name')
|
|
742
|
+
.action((action, options) => {
|
|
743
|
+
const args = process.argv.slice(3);
|
|
744
|
+
devices(args);
|
|
745
|
+
});
|
|
746
|
+
|
|
747
|
+
program
|
|
748
|
+
.command('directory <action>')
|
|
749
|
+
.description('Directory query (query|search)')
|
|
750
|
+
.action((action) => {
|
|
751
|
+
const args = process.argv.slice(3);
|
|
752
|
+
directory(args);
|
|
753
|
+
});
|
|
754
|
+
|
|
755
|
+
program
|
|
756
|
+
.command('dns <action>')
|
|
757
|
+
.description('Network DNS discovery (discover|resolve)')
|
|
758
|
+
.action((action) => {
|
|
759
|
+
const args = process.argv.slice(3);
|
|
760
|
+
dns(args);
|
|
761
|
+
});
|
|
762
|
+
|
|
763
|
+
program
|
|
764
|
+
.command('docs <action>')
|
|
765
|
+
.description('Documentation search (search|open)')
|
|
766
|
+
.action((action) => {
|
|
767
|
+
const args = process.argv.slice(3);
|
|
768
|
+
docs(args);
|
|
769
|
+
});
|
|
770
|
+
|
|
771
|
+
program
|
|
772
|
+
.command('exec-policy <action>')
|
|
773
|
+
.description('Exec policy management (list|check|set|remove)')
|
|
774
|
+
.action((action) => {
|
|
775
|
+
const args = process.argv.slice(3);
|
|
776
|
+
execPolicy(args);
|
|
777
|
+
});
|
|
778
|
+
|
|
779
|
+
program
|
|
780
|
+
.command('health [action]')
|
|
781
|
+
.description('Service health check')
|
|
782
|
+
.action((action) => {
|
|
783
|
+
const args = process.argv.slice(3);
|
|
784
|
+
health(args);
|
|
785
|
+
});
|
|
786
|
+
|
|
787
|
+
program
|
|
788
|
+
.command('infer <action>')
|
|
789
|
+
.description('Infer capabilities/models/media (models|media|capabilities)')
|
|
790
|
+
.action((action) => {
|
|
791
|
+
const args = process.argv.slice(3);
|
|
792
|
+
infer([action, ...args]);
|
|
793
|
+
});
|
|
794
|
+
|
|
795
|
+
program
|
|
796
|
+
.command('node <action>')
|
|
797
|
+
.description('Node host management (status|start|stop|info)')
|
|
798
|
+
.action((action) => {
|
|
799
|
+
const args = process.argv.slice(3);
|
|
800
|
+
node([action, ...args]);
|
|
801
|
+
});
|
|
802
|
+
|
|
803
|
+
program
|
|
804
|
+
.command('nodes <action>')
|
|
805
|
+
.description('Node network management (list|pair|approve|reject|remove|rename)')
|
|
806
|
+
.action((action) => {
|
|
807
|
+
const args = process.argv.slice(3);
|
|
808
|
+
nodes([action, ...args]);
|
|
809
|
+
});
|
|
810
|
+
|
|
811
|
+
program
|
|
812
|
+
.command('onboard')
|
|
813
|
+
.description('Interactive onboarding wizard')
|
|
814
|
+
.action(() => {
|
|
815
|
+
onboard(process.argv.slice(3));
|
|
816
|
+
});
|
|
817
|
+
|
|
818
|
+
program
|
|
819
|
+
.command('proxy <action>')
|
|
820
|
+
.description('Debug proxy server (status|start|stop)')
|
|
821
|
+
.action((action) => {
|
|
822
|
+
const args = process.argv.slice(3);
|
|
823
|
+
proxy([action, ...args]);
|
|
824
|
+
});
|
|
825
|
+
|
|
826
|
+
program
|
|
827
|
+
.command('qr [action]')
|
|
828
|
+
.description('QR code pairing (show|generate|verify)')
|
|
829
|
+
.action((action) => {
|
|
830
|
+
const args = process.argv.slice(3);
|
|
831
|
+
qr(args);
|
|
832
|
+
});
|
|
833
|
+
|
|
834
|
+
program
|
|
835
|
+
.command('sandbox <action>')
|
|
836
|
+
.description('Sandbox container management (list|create|destroy)')
|
|
837
|
+
.action((action) => {
|
|
838
|
+
const args = process.argv.slice(3);
|
|
839
|
+
sandbox([action, ...args]);
|
|
840
|
+
});
|
|
841
|
+
|
|
842
|
+
program
|
|
843
|
+
.command('secrets [action]')
|
|
844
|
+
.description('Secret value management (list|set|get|audit)')
|
|
845
|
+
.action((action) => {
|
|
846
|
+
const args = process.argv.slice(3);
|
|
847
|
+
secrets(args);
|
|
848
|
+
});
|
|
849
|
+
|
|
850
|
+
program
|
|
851
|
+
.command('system <action>')
|
|
852
|
+
.description('System status/heartbeat/presence (status|heartbeat|presence)')
|
|
853
|
+
.action((action) => {
|
|
854
|
+
const args = process.argv.slice(3);
|
|
855
|
+
system([action, ...args]);
|
|
856
|
+
});
|
|
857
|
+
|
|
858
|
+
program
|
|
859
|
+
.command('terminal <action>')
|
|
860
|
+
.description('Terminal session management (exec|connect|disconnect|list)')
|
|
861
|
+
.action((action) => {
|
|
862
|
+
const args = process.argv.slice(3);
|
|
863
|
+
terminal([action, ...args]);
|
|
864
|
+
});
|
|
865
|
+
|
|
866
|
+
program
|
|
867
|
+
.command('transcripts [action]')
|
|
868
|
+
.description('Transcript management (list|show|delete)')
|
|
869
|
+
.action((action) => {
|
|
870
|
+
const args = process.argv.slice(3);
|
|
871
|
+
transcripts(args);
|
|
872
|
+
});
|
|
873
|
+
|
|
874
|
+
// === OpenClaw uyumlu alias komutlar ===
|
|
875
|
+
|
|
876
|
+
program
|
|
877
|
+
.command('acp [file]')
|
|
878
|
+
.description('Alias for code command')
|
|
879
|
+
.action((file) => {
|
|
880
|
+
const codeCmd = require('../src/commands/code');
|
|
881
|
+
codeCmd(file, { dir: process.cwd() });
|
|
882
|
+
});
|
|
883
|
+
|
|
486
884
|
program
|
|
487
885
|
.command('help')
|
|
488
886
|
.description('Show help information')
|