@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.
- package/README.md +114 -5
- package/dist/index.js +176 -5
- package/dist/index.js.map +1 -1
- package/docs/skills.md +38 -0
- package/package.json +3 -1
- package/skills/gsk-aidrive/SKILL.md +53 -0
- package/skills/gsk-analyze-media/SKILL.md +42 -0
- package/skills/gsk-audio-generation/SKILL.md +52 -0
- package/skills/gsk-audio-transcribe/SKILL.md +42 -0
- package/skills/gsk-calendar-create/SKILL.md +42 -0
- package/skills/gsk-calendar-list/SKILL.md +36 -0
- package/skills/gsk-crawler/SKILL.md +39 -0
- package/skills/gsk-create-task/SKILL.md +42 -0
- package/skills/gsk-email-list/SKILL.md +38 -0
- package/skills/gsk-email-read/SKILL.md +34 -0
- package/skills/gsk-email-search/SKILL.md +39 -0
- package/skills/gsk-email-send/SKILL.md +41 -0
- package/skills/gsk-get-service-url/SKILL.md +39 -0
- package/skills/gsk-image-generation/SKILL.md +48 -0
- package/skills/gsk-image-search/SKILL.md +36 -0
- package/skills/gsk-meeting-get/SKILL.md +34 -0
- package/skills/gsk-meeting-list/SKILL.md +34 -0
- package/skills/gsk-meeting-search/SKILL.md +39 -0
- package/skills/gsk-phone-call/SKILL.md +41 -0
- package/skills/gsk-shared/SKILL.md +177 -0
- package/skills/gsk-social-instagram/SKILL.md +42 -0
- package/skills/gsk-social-reddit/SKILL.md +41 -0
- package/skills/gsk-social-twitter/SKILL.md +43 -0
- package/skills/gsk-stock-price/SKILL.md +35 -0
- package/skills/gsk-summarize-large-document/SKILL.md +41 -0
- package/skills/gsk-understand-images/SKILL.md +41 -0
- package/skills/gsk-video-generation/SKILL.md +53 -0
- package/skills/gsk-vm-email-send/SKILL.md +39 -0
- 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
|