natureco-cli 5.6.25 → 5.6.26

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/bin/natureco.js +6 -6
  2. package/package.json +1 -1
package/bin/natureco.js CHANGED
@@ -421,12 +421,12 @@ program
421
421
  });
422
422
 
423
423
  program
424
- .command('imessage <action>')
425
- .description('iMessage integration (connect|disconnect|status)')
426
- .action((action) => {
427
- const imessageCmd = require('../src/commands/imessage');
428
- imessageCmd(action);
429
- });
424
+ .command('imessage <action> [recipient] [message]')
425
+ .description('iMessage integration (connect|disconnect|status|probe|send)')
426
+ .action((action, recipient, message) => {
427
+ const imessageCmd = require('../src/commands/imessage');
428
+ imessageCmd(action, recipient, message);
429
+ });
430
430
 
431
431
  program
432
432
  .command('sms <action>')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natureco-cli",
3
- "version": "5.6.25",
3
+ "version": "5.6.26",
4
4
  "description": "OpenClaw'dan daha güvenli, daha hızlı, daha ucuz AI agent CLI. Multi-agent, self-evolving skills, audit log, maliyet optimizasyonu ve NatureCo platform-native.",
5
5
  "bin": {
6
6
  "natureco": "bin/natureco.js"