@genspark/cli 1.0.6 → 1.0.8

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 (34) hide show
  1. package/README.md +114 -5
  2. package/dist/index.js +176 -5
  3. package/dist/index.js.map +1 -1
  4. package/docs/skills.md +38 -0
  5. package/package.json +3 -1
  6. package/skills/gsk-aidrive/SKILL.md +53 -0
  7. package/skills/gsk-analyze-media/SKILL.md +42 -0
  8. package/skills/gsk-audio-generation/SKILL.md +52 -0
  9. package/skills/gsk-audio-transcribe/SKILL.md +42 -0
  10. package/skills/gsk-calendar-create/SKILL.md +42 -0
  11. package/skills/gsk-calendar-list/SKILL.md +36 -0
  12. package/skills/gsk-crawler/SKILL.md +39 -0
  13. package/skills/gsk-create-task/SKILL.md +42 -0
  14. package/skills/gsk-email-list/SKILL.md +38 -0
  15. package/skills/gsk-email-read/SKILL.md +34 -0
  16. package/skills/gsk-email-search/SKILL.md +39 -0
  17. package/skills/gsk-email-send/SKILL.md +41 -0
  18. package/skills/gsk-get-service-url/SKILL.md +39 -0
  19. package/skills/gsk-image-generation/SKILL.md +48 -0
  20. package/skills/gsk-image-search/SKILL.md +36 -0
  21. package/skills/gsk-meeting-get/SKILL.md +34 -0
  22. package/skills/gsk-meeting-list/SKILL.md +34 -0
  23. package/skills/gsk-meeting-search/SKILL.md +39 -0
  24. package/skills/gsk-phone-call/SKILL.md +41 -0
  25. package/skills/gsk-shared/SKILL.md +177 -0
  26. package/skills/gsk-social-instagram/SKILL.md +42 -0
  27. package/skills/gsk-social-reddit/SKILL.md +41 -0
  28. package/skills/gsk-social-twitter/SKILL.md +43 -0
  29. package/skills/gsk-stock-price/SKILL.md +35 -0
  30. package/skills/gsk-summarize-large-document/SKILL.md +41 -0
  31. package/skills/gsk-understand-images/SKILL.md +41 -0
  32. package/skills/gsk-video-generation/SKILL.md +53 -0
  33. package/skills/gsk-vm-email-send/SKILL.md +39 -0
  34. package/skills/gsk-web-search/SKILL.md +35 -0
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: gsk-web-search
3
+ version: 1.0.0
4
+ description: Search the web. Returns search results with titles, snippets, and URLs.
5
+ metadata:
6
+ category: general
7
+ requires:
8
+ bins:
9
+ - gsk
10
+ cliHelp: gsk search --help
11
+ ---
12
+
13
+ # gsk-web-search
14
+
15
+ **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
+
17
+ Search the web. Returns search results with titles, snippets, and URLs.
18
+
19
+ ## Usage
20
+
21
+ ```bash
22
+ gsk search [options]
23
+ ```
24
+
25
+ **Aliases:** `web_search`, `search`
26
+
27
+ ## Flags
28
+
29
+ | Flag | Required | Description |
30
+ |------|----------|-------------|
31
+ | `<q>` (positional) | Yes | User's search query (string) |
32
+
33
+ ## See Also
34
+
35
+ - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags