@genspark/cli 1.0.11 → 1.0.12

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/docs/skills.md +22 -11
  2. package/package.json +1 -1
  3. package/skills/gsk-audio-generation/SKILL.md +1 -1
  4. package/skills/gsk-audio-processing/SKILL.md +47 -0
  5. package/skills/gsk-batch-crawl-url-and-answer/SKILL.md +37 -0
  6. package/skills/gsk-claw-share-link/SKILL.md +39 -0
  7. package/skills/gsk-github/SKILL.md +52 -0
  8. package/skills/gsk-gmail/SKILL.md +70 -0
  9. package/skills/gsk-google-calendar/SKILL.md +50 -0
  10. package/skills/gsk-google-contacts/SKILL.md +51 -0
  11. package/skills/gsk-google-docs/SKILL.md +40 -0
  12. package/skills/gsk-google-drive/SKILL.md +47 -0
  13. package/skills/gsk-google-sheets/SKILL.md +45 -0
  14. package/skills/gsk-meeting/SKILL.md +43 -0
  15. package/skills/gsk-microsoft-teams/SKILL.md +53 -0
  16. package/skills/gsk-notion/SKILL.md +39 -0
  17. package/skills/gsk-onedrive/SKILL.md +44 -0
  18. package/skills/gsk-outlook-calendar/SKILL.md +53 -0
  19. package/skills/gsk-outlook-contacts/SKILL.md +36 -0
  20. package/skills/gsk-outlook-email/SKILL.md +82 -0
  21. package/skills/gsk-shared/SKILL.md +1 -1
  22. package/skills/gsk-sharepoint/SKILL.md +51 -0
  23. package/skills/gsk-slack/SKILL.md +46 -0
  24. package/skills/gsk-video-generation/SKILL.md +4 -3
  25. package/skills/gsk-voice-cloning/SKILL.md +42 -0
  26. package/skills/gsk-calendar-create/SKILL.md +0 -42
  27. package/skills/gsk-calendar-list/SKILL.md +0 -36
  28. package/skills/gsk-email-list/SKILL.md +0 -38
  29. package/skills/gsk-email-read/SKILL.md +0 -36
  30. package/skills/gsk-email-search/SKILL.md +0 -39
  31. package/skills/gsk-email-send/SKILL.md +0 -64
  32. package/skills/gsk-meeting-get/SKILL.md +0 -34
  33. package/skills/gsk-meeting-list/SKILL.md +0 -34
  34. package/skills/gsk-meeting-search/SKILL.md +0 -39
@@ -1,36 +0,0 @@
1
- ---
2
- name: gsk-calendar-list
3
- version: 1.0.0
4
- description: List upcoming calendar events from Google Calendar or Outlook.
5
- metadata:
6
- category: calendar
7
- requires:
8
- bins:
9
- - gsk
10
- cliHelp: gsk calendar list --help
11
- ---
12
-
13
- # gsk-calendar-list
14
-
15
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
-
17
- List upcoming calendar events from Google Calendar or Outlook.
18
-
19
- ## Usage
20
-
21
- ```bash
22
- gsk calendar list [options]
23
- ```
24
-
25
- ## Flags
26
-
27
- | Flag | Required | Description |
28
- |------|----------|-------------|
29
- | `--filter_query` | No | Filter events by text (e.g. event title keywords). (string) |
30
- | `--time_min` | No | Start of time range in ISO 8601 format. Default: now. (string) |
31
- | `--time_max` | No | End of time range in ISO 8601 format. Default: 7 days from now. (string) |
32
- | `-a`, `--from_account` | No | Calendar account to use if multiple accounts are connected. (string) |
33
-
34
- ## See Also
35
-
36
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
@@ -1,38 +0,0 @@
1
- ---
2
- name: gsk-email-list
3
- version: 1.0.0
4
- description: List emails from a folder (inbox, sent, drafts, etc.).
5
- metadata:
6
- category: email
7
- requires:
8
- bins:
9
- - gsk
10
- cliHelp: gsk email list --help
11
- ---
12
-
13
- # gsk-email-list
14
-
15
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
-
17
- List emails from a folder (inbox, sent, drafts, etc.).
18
-
19
- ## Usage
20
-
21
- ```bash
22
- gsk email list [options]
23
- ```
24
-
25
- ## Flags
26
-
27
- | Flag | Required | Description |
28
- |------|----------|-------------|
29
- | `<folder>` (positional) | No | Folder to list (inbox, sent, drafts, spam, trash). Default: inbox. (string) |
30
- | `-n`, `--limit` | No | Maximum number of emails to return. Default: 20. (integer) |
31
- | `--after_date` | No | Return emails after this date (YYYY-MM-DD). (string) |
32
- | `--before_date` | No | Return emails before this date (YYYY-MM-DD). (string) |
33
- | `--unread_only` | No | Set to true to return only unread emails. Default: false. (boolean) |
34
- | `-a`, `--from_account` | No | Email account to use if multiple accounts are connected. (string) |
35
-
36
- ## See Also
37
-
38
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
@@ -1,36 +0,0 @@
1
- ---
2
- name: gsk-email-read
3
- version: 1.0.0
4
- description: Read a specific email by its ID.
5
- metadata:
6
- category: email
7
- requires:
8
- bins:
9
- - gsk
10
- cliHelp: gsk email read --help
11
- ---
12
-
13
- # gsk-email-read
14
-
15
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
-
17
- Read a specific email by its ID.
18
-
19
- ## Usage
20
-
21
- ```bash
22
- gsk email read [options]
23
- ```
24
-
25
- ## Flags
26
-
27
- | Flag | Required | Description |
28
- |------|----------|-------------|
29
- | `<id>` (positional) | Yes | The email ID to read. (string) |
30
- | `-a`, `--from_account` | No | Email account to use if multiple accounts are connected. (string) |
31
- | `--download_attachments` | No | Whether to download attachments from the email to AIDrive. Default: false. (boolean) |
32
- | `--aidrive_path` | No | Path in AIDrive where attachments should be saved. Default: /email_attachments/ (string) |
33
-
34
- ## See Also
35
-
36
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
@@ -1,39 +0,0 @@
1
- ---
2
- name: gsk-email-search
3
- version: 1.0.0
4
- description: Search emails using a query string. Works with Gmail (GQL) and Outlook
5
- (KQL) accounts.
6
- metadata:
7
- category: email
8
- requires:
9
- bins:
10
- - gsk
11
- cliHelp: gsk email search --help
12
- ---
13
-
14
- # gsk-email-search
15
-
16
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
17
-
18
- Search emails using a query string. Works with Gmail (GQL) and Outlook (KQL) accounts.
19
-
20
- ## Usage
21
-
22
- ```bash
23
- gsk email search [options]
24
- ```
25
-
26
- ## Flags
27
-
28
- | Flag | Required | Description |
29
- |------|----------|-------------|
30
- | `<query>` (positional) | Yes | Search query. Gmail: GQL (e.g. 'from:boss subject:report'). Outlook: KQL. (string) |
31
- | `--folder` | No | Restrict search to folder (inbox, sent, drafts, spam, trash). (string) |
32
- | `-n`, `--limit` | No | Maximum number of results to return. Default: 20. (integer) |
33
- | `--after_date` | No | Return emails after this date (YYYY-MM-DD). (string) |
34
- | `--before_date` | No | Return emails before this date (YYYY-MM-DD). (string) |
35
- | `-a`, `--from_account` | No | Email account to use if multiple accounts are connected. (string) |
36
-
37
- ## See Also
38
-
39
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
@@ -1,64 +0,0 @@
1
- ---
2
- name: gsk-email-send
3
- version: 1.1.0
4
- description: Send and forward email messages via Gmail or Outlook.
5
- metadata:
6
- category: email
7
- requires:
8
- bins:
9
- - gsk
10
- cliHelp: gsk email send --help
11
- ---
12
-
13
- # gsk-email-send
14
-
15
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
-
17
- Send or forward email messages via Gmail or Outlook.
18
-
19
- ## Send
20
-
21
- Send a new email message.
22
-
23
- ```bash
24
- gsk email send [options]
25
- ```
26
-
27
- ### Flags
28
-
29
- | Flag | Required | Description |
30
- |------|----------|-------------|
31
- | `--to` | Yes | Recipient email address(es), comma-separated. (string) |
32
- | `--subject` | Yes | Email subject line. (string) |
33
- | `--body` | Yes | Email body content. (string) |
34
- | `--cc` | No | CC recipient(s), comma-separated. (string) |
35
- | `--bcc` | No | BCC recipient(s), comma-separated. (string) |
36
- | `--content_type` | No | Content type: text/plain or text/html. Default: text/plain. (string) |
37
- | `-a`, `--from_account` | No | Sender email account to use if multiple accounts are connected. (string) |
38
-
39
- ## Forward
40
-
41
- Forward an existing email to new recipients. The original email content and attachments are included.
42
-
43
- ```bash
44
- gsk email forward <message_id> [options]
45
- ```
46
-
47
- ### Flags
48
-
49
- | Flag | Required | Description |
50
- |------|----------|-------------|
51
- | `<message_id>` (positional) | Yes | The email message ID to forward. (string) |
52
- | `--to` | Yes | Recipient email address(es) to forward to, comma-separated. (string) |
53
- | `--cc` | No | CC recipient(s), comma-separated. (string) |
54
- | `--bcc` | No | BCC recipient(s), comma-separated. (string) |
55
- | `--body` | No | Additional message to include above the forwarded content. (string) |
56
- | `--content_type` | No | Content type: text/plain or text/html. Default: text/html. (string) |
57
- | `--include_attachments` | No | Whether to include original attachments. Default: true. (boolean) |
58
- | `-a`, `--from_account` | No | Sender email account to use if multiple accounts are connected. (string) |
59
-
60
- > **CAUTION:** Both commands perform write/send operations. Double-check parameters before executing.
61
-
62
- ## See Also
63
-
64
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
@@ -1,34 +0,0 @@
1
- ---
2
- name: gsk-meeting-get
3
- version: 1.0.0
4
- description: Get details of a specific meeting note.
5
- metadata:
6
- category: meeting
7
- requires:
8
- bins:
9
- - gsk
10
- cliHelp: gsk meeting get --help
11
- ---
12
-
13
- # gsk-meeting-get
14
-
15
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
-
17
- Get details of a specific meeting note.
18
-
19
- ## Usage
20
-
21
- ```bash
22
- gsk meeting get [options]
23
- ```
24
-
25
- ## Flags
26
-
27
- | Flag | Required | Description |
28
- |------|----------|-------------|
29
- | `<task_id>` (positional) | Yes | The ID of the meeting note to retrieve. (string) |
30
- | `-d`, `--detail_level` | No | Level of detail to return. 'summary' = title + status + summary + user notes (default, saves tokens). 'full' = summary + complete transcription text. 'segments' = summary + segments with speaker labels. (string, one of: summary, full, segments) |
31
-
32
- ## See Also
33
-
34
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
@@ -1,34 +0,0 @@
1
- ---
2
- name: gsk-meeting-list
3
- version: 1.0.0
4
- description: List meeting notes ordered by creation date.
5
- metadata:
6
- category: meeting
7
- requires:
8
- bins:
9
- - gsk
10
- cliHelp: gsk meeting list --help
11
- ---
12
-
13
- # gsk-meeting-list
14
-
15
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
-
17
- List meeting notes ordered by creation date.
18
-
19
- ## Usage
20
-
21
- ```bash
22
- gsk meeting list [options]
23
- ```
24
-
25
- ## Flags
26
-
27
- | Flag | Required | Description |
28
- |------|----------|-------------|
29
- | `-n`, `--page_size` | No | Number of results per page. Default: 20. Max: 50. (integer) |
30
- | `--continuation_token` | No | Token for fetching the next page of results. Returned from a previous list call. (string) |
31
-
32
- ## See Also
33
-
34
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
@@ -1,39 +0,0 @@
1
- ---
2
- name: gsk-meeting-search
3
- version: 1.0.0
4
- description: Search meeting notes by keyword using full-text search.
5
- metadata:
6
- category: meeting
7
- requires:
8
- bins:
9
- - gsk
10
- cliHelp: gsk meeting search --help
11
- ---
12
-
13
- # gsk-meeting-search
14
-
15
- **PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
16
-
17
- Search meeting notes by keyword using full-text search.
18
-
19
- ## Usage
20
-
21
- ```bash
22
- gsk meeting search [options]
23
- ```
24
-
25
- ## Flags
26
-
27
- | Flag | Required | Description |
28
- |------|----------|-------------|
29
- | `<keyword>` (positional) | Yes | Search term to find in meeting notes. (string) |
30
- | `--date_from` | No | Filter meetings after this date (ISO format: YYYY-MM-DD). (string) |
31
- | `--date_to` | No | Filter meetings before this date (ISO format: YYYY-MM-DD). (string) |
32
- | `--meeting_source` | No | Filter by calendar source. (string, one of: google, outlook) |
33
- | `-n`, `--page_size` | No | Number of results per page. Default: 20. Max: 50. (integer) |
34
- | `-s`, `--sort_by` | No | Sort order. 'relevance' for best match first, 'created_at' for newest first (default). (string, one of: created_at, relevance) |
35
- | `--page` | No | Page number (0-indexed). Use with has_more to paginate results. Default: 0. (integer) |
36
-
37
- ## See Also
38
-
39
- - [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags