@agentrhq/webcmd 0.4.1 → 0.4.3

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 (74) hide show
  1. package/README.md +3 -0
  2. package/cli-manifest.json +955 -96
  3. package/clis/_shared/site-auth.js +0 -1
  4. package/clis/_shared/site-auth.test.js +0 -1
  5. package/clis/amazon-in/auth.js +44 -0
  6. package/clis/amazon-in/checkout-status.js +54 -0
  7. package/clis/amazon-in/checkout.js +478 -0
  8. package/clis/amazon-in/parsers.js +252 -0
  9. package/clis/amazon-in/parsers.test.js +230 -0
  10. package/clis/amazon-in/product.js +72 -0
  11. package/clis/amazon-in/search.js +76 -0
  12. package/clis/amazon-in/shared.js +40 -0
  13. package/clis/amazon-in/wishlist.js +98 -0
  14. package/clis/blinkit/checkout.js +0 -1
  15. package/clis/blinkit/place-order.js +0 -1
  16. package/clis/chatgpt/model.js +2 -2
  17. package/clis/chatgpt/model.test.js +7 -1
  18. package/clis/chatgpt/utils.js +8 -0
  19. package/clis/chatgpt/utils.test.js +92 -1
  20. package/clis/district/checkout.js +0 -1
  21. package/clis/district/seats.js +0 -1
  22. package/clis/district/set-location.js +0 -1
  23. package/clis/district/showtimes.js +0 -1
  24. package/clis/google/images.js +456 -0
  25. package/clis/google/images.test.js +375 -0
  26. package/clis/instagram/user.js +5 -13
  27. package/clis/instagram/user.test.js +66 -0
  28. package/clis/mercury/check-login.js +0 -1
  29. package/clis/mercury/reimbursement-draft.js +0 -1
  30. package/clis/practo/book-confirm.js +0 -1
  31. package/clis/practo/cancel.js +0 -1
  32. package/clis/trip/attraction.js +74 -0
  33. package/clis/trip/car.js +74 -0
  34. package/clis/trip/deals.js +61 -0
  35. package/clis/trip/flight-round.js +88 -0
  36. package/clis/trip/flight.js +83 -0
  37. package/clis/trip/hotel-search.js +80 -0
  38. package/clis/trip/hotel.js +54 -0
  39. package/clis/trip/package.js +93 -0
  40. package/clis/trip/search.js +43 -0
  41. package/clis/trip/tour.js +84 -0
  42. package/clis/trip/train.js +76 -0
  43. package/clis/trip/transfer.js +82 -0
  44. package/clis/trip/trip.test.js +1420 -0
  45. package/clis/trip/utils.js +911 -0
  46. package/dist/src/build-manifest.js +0 -1
  47. package/dist/src/build-manifest.test.js +4 -0
  48. package/dist/src/cli.js +7 -7
  49. package/dist/src/cli.test.js +26 -10
  50. package/dist/src/command-presentation.js +1 -1
  51. package/dist/src/command-presentation.test.js +3 -0
  52. package/dist/src/command-surface.js +1 -1
  53. package/dist/src/command-surface.test.js +4 -0
  54. package/dist/src/commands/auth.js +0 -2
  55. package/dist/src/commands/auth.test.js +0 -2
  56. package/dist/src/discovery.js +0 -1
  57. package/dist/src/execution.js +3 -3
  58. package/dist/src/execution.test.js +68 -15
  59. package/dist/src/hosted/browser-args.js +2 -2
  60. package/dist/src/hosted/browser-args.test.js +10 -0
  61. package/dist/src/hosted/client.d.ts +8 -10
  62. package/dist/src/hosted/client.js +26 -34
  63. package/dist/src/hosted/client.test.js +79 -24
  64. package/dist/src/hosted/runner.js +7 -35
  65. package/dist/src/hosted/runner.test.js +27 -51
  66. package/dist/src/hosted/types.d.ts +1 -5
  67. package/dist/src/manifest-types.d.ts +0 -2
  68. package/dist/src/registry.d.ts +0 -2
  69. package/dist/src/registry.js +0 -1
  70. package/dist/src/root-command-surface.js +10 -2
  71. package/hosted-contract.json +2627 -1535
  72. package/package.json +2 -2
  73. package/skills/webcmd-browser/SKILL.md +2 -1
  74. package/skills/webcmd-usage/SKILL.md +1 -1
package/README.md CHANGED
@@ -108,7 +108,10 @@ Webcmd Cloud can run supported commands and browser sessions on hosted infrastru
108
108
 
109
109
  | Plugin | Description | Author |
110
110
  | --- | --- | --- |
111
+ | [`bmwblog`](./plugins/bmwblog/) | BMWBLOG article discovery commands for Webcmd | [WebCMD Agent](https://github.com/agentrhq) |
111
112
  | [`skyscanner`](./plugins/skyscanner/) | Skyscanner flight search commands for Webcmd | [Rishabh](https://github.com/rishabhraj36) |
113
+ | [`techcrunch`](./plugins/techcrunch/) | Search and read TechCrunch stories from its public API | [WebCMD Agent](https://github.com/agentrhq) |
114
+ | [`ycombinator`](./plugins/ycombinator/) | Read-only Y Combinator startup directory commands for WebCMD | [WebCMD Agent](https://github.com/agentrhq) |
112
115
  <!-- webcmd-community-plugins:end -->
113
116
 
114
117
  ## Contributing