natureco-cli 2.23.28 → 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.
Files changed (96) hide show
  1. package/README.md +94 -11
  2. package/bin/natureco.js +470 -10
  3. package/package.json +10 -6
  4. package/src/commands/admin-rpc.js +219 -0
  5. package/src/commands/agent.js +89 -0
  6. package/src/commands/approvals.js +53 -0
  7. package/src/commands/backup.js +124 -0
  8. package/src/commands/bonjour.js +167 -0
  9. package/src/commands/capability.js +64 -0
  10. package/src/commands/channels.js +94 -4
  11. package/src/commands/chat.js +11 -25
  12. package/src/commands/clickclack.js +130 -0
  13. package/src/commands/commitments.js +32 -0
  14. package/src/commands/completion.js +76 -0
  15. package/src/commands/config.js +111 -68
  16. package/src/commands/configure.js +93 -0
  17. package/src/commands/crestodian.js +92 -0
  18. package/src/commands/daemon.js +60 -0
  19. package/src/commands/device-pair.js +248 -0
  20. package/src/commands/devices.js +110 -0
  21. package/src/commands/directory.js +47 -0
  22. package/src/commands/dns.js +58 -0
  23. package/src/commands/docs.js +43 -0
  24. package/src/commands/doctor.js +121 -16
  25. package/src/commands/exec-policy.js +71 -0
  26. package/src/commands/gateway-server.js +1175 -30
  27. package/src/commands/gateway.js +11 -20
  28. package/src/commands/health.js +18 -0
  29. package/src/commands/help.js +6 -0
  30. package/src/commands/imessage.js +169 -0
  31. package/src/commands/infer.js +73 -0
  32. package/src/commands/irc.js +119 -0
  33. package/src/commands/mattermost.js +164 -0
  34. package/src/commands/memory-cmd.js +134 -1
  35. package/src/commands/message.js +30 -4
  36. package/src/commands/migrate.js +213 -2
  37. package/src/commands/models.js +584 -216
  38. package/src/commands/node.js +98 -0
  39. package/src/commands/nodes.js +106 -0
  40. package/src/commands/oc-path.js +200 -0
  41. package/src/commands/onboard.js +70 -0
  42. package/src/commands/open-prose.js +67 -0
  43. package/src/commands/plugins.js +415 -172
  44. package/src/commands/policy.js +176 -0
  45. package/src/commands/proxy.js +155 -0
  46. package/src/commands/qr.js +28 -0
  47. package/src/commands/sandbox.js +125 -0
  48. package/src/commands/secrets.js +118 -0
  49. package/src/commands/security.js +149 -1
  50. package/src/commands/setup.js +114 -10
  51. package/src/commands/signal.js +495 -0
  52. package/src/commands/skills.js +20 -29
  53. package/src/commands/sms.js +168 -0
  54. package/src/commands/system.js +53 -0
  55. package/src/commands/tasks.js +328 -79
  56. package/src/commands/terminal.js +21 -0
  57. package/src/commands/thread-ownership.js +157 -0
  58. package/src/commands/transcripts.js +72 -0
  59. package/src/commands/voice.js +82 -0
  60. package/src/commands/vydra.js +98 -0
  61. package/src/commands/webhooks.js +79 -0
  62. package/src/commands/whatsapp.js +7 -21
  63. package/src/commands/workboard.js +207 -0
  64. package/src/tools/audio_understanding.js +154 -0
  65. package/src/tools/bash.js +63 -29
  66. package/src/tools/browser.js +112 -0
  67. package/src/tools/canvas.js +104 -0
  68. package/src/tools/document_extract.js +84 -0
  69. package/src/tools/duckduckgo.js +54 -0
  70. package/src/tools/exa_search.js +66 -0
  71. package/src/tools/firecrawl.js +104 -0
  72. package/src/tools/image_generation.js +99 -0
  73. package/src/tools/llm_task.js +118 -0
  74. package/src/tools/media_understanding.js +128 -0
  75. package/src/tools/music_generation.js +113 -0
  76. package/src/tools/parallel_search.js +77 -0
  77. package/src/tools/phone_control.js +80 -0
  78. package/src/tools/phone_control_enhanced.js +184 -0
  79. package/src/tools/searxng.js +61 -0
  80. package/src/tools/speech_to_text.js +135 -0
  81. package/src/tools/text_to_speech.js +105 -0
  82. package/src/tools/thread_ownership.js +88 -0
  83. package/src/tools/video_generation.js +72 -0
  84. package/src/tools/web_readability.js +104 -0
  85. package/src/utils/api.js +3 -20
  86. package/src/utils/approvals.js +297 -0
  87. package/src/utils/background.js +223 -66
  88. package/src/utils/baileys.js +21 -0
  89. package/src/utils/config.js +141 -10
  90. package/src/utils/errors.js +148 -0
  91. package/src/utils/inquirer-wrapper.js +1 -2
  92. package/src/utils/memory.js +200 -0
  93. package/src/utils/path-utils.js +13 -13
  94. package/src/utils/plugin-registry.js +238 -0
  95. package/src/utils/secrets.js +177 -0
  96. package/src/utils/skills.js +10 -23
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 whatsapp status` | Bağlantı durumu |
113
- | `natureco whatsapp allow <numara>` | İzin listesine ekle |
114
- | `natureco gateway start` | Gateway'i arka planda başlat |
115
- | `natureco gateway stop` | Gateway'i durdur |
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