@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.
- package/docs/skills.md +22 -11
- package/package.json +1 -1
- package/skills/gsk-audio-generation/SKILL.md +1 -1
- package/skills/gsk-audio-processing/SKILL.md +47 -0
- package/skills/gsk-batch-crawl-url-and-answer/SKILL.md +37 -0
- package/skills/gsk-claw-share-link/SKILL.md +39 -0
- package/skills/gsk-github/SKILL.md +52 -0
- package/skills/gsk-gmail/SKILL.md +70 -0
- package/skills/gsk-google-calendar/SKILL.md +50 -0
- package/skills/gsk-google-contacts/SKILL.md +51 -0
- package/skills/gsk-google-docs/SKILL.md +40 -0
- package/skills/gsk-google-drive/SKILL.md +47 -0
- package/skills/gsk-google-sheets/SKILL.md +45 -0
- package/skills/gsk-meeting/SKILL.md +43 -0
- package/skills/gsk-microsoft-teams/SKILL.md +53 -0
- package/skills/gsk-notion/SKILL.md +39 -0
- package/skills/gsk-onedrive/SKILL.md +44 -0
- package/skills/gsk-outlook-calendar/SKILL.md +53 -0
- package/skills/gsk-outlook-contacts/SKILL.md +36 -0
- package/skills/gsk-outlook-email/SKILL.md +82 -0
- package/skills/gsk-shared/SKILL.md +1 -1
- package/skills/gsk-sharepoint/SKILL.md +51 -0
- package/skills/gsk-slack/SKILL.md +46 -0
- package/skills/gsk-video-generation/SKILL.md +4 -3
- package/skills/gsk-voice-cloning/SKILL.md +42 -0
- package/skills/gsk-calendar-create/SKILL.md +0 -42
- package/skills/gsk-calendar-list/SKILL.md +0 -36
- package/skills/gsk-email-list/SKILL.md +0 -38
- package/skills/gsk-email-read/SKILL.md +0 -36
- package/skills/gsk-email-search/SKILL.md +0 -39
- package/skills/gsk-email-send/SKILL.md +0 -64
- package/skills/gsk-meeting-get/SKILL.md +0 -34
- package/skills/gsk-meeting-list/SKILL.md +0 -34
- package/skills/gsk-meeting-search/SKILL.md +0 -39
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-meeting
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'Meeting notes operations. Actions: list, search, get.'
|
|
5
|
+
metadata:
|
|
6
|
+
category: general
|
|
7
|
+
requires:
|
|
8
|
+
bins:
|
|
9
|
+
- gsk
|
|
10
|
+
cliHelp: gsk meeting --help
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# gsk-meeting
|
|
14
|
+
|
|
15
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
16
|
+
|
|
17
|
+
Meeting notes operations. Actions: list, search, get.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gsk meeting [options]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Flags
|
|
26
|
+
|
|
27
|
+
| Flag | Required | Description |
|
|
28
|
+
|------|----------|-------------|
|
|
29
|
+
| `<action>` (positional) | Yes | Action to perform. 'list': List meeting notes by creation date; 'search': Search meeting notes by keyword; 'get': Get details of a specific meeting note (string, one of: list, search, get) |
|
|
30
|
+
| `--page_size` | No | [list] Number of results per page. Default: 20. Max: 50. \| [search] Number of results per page. Default: 20. Max: 50. (integer) |
|
|
31
|
+
| `--continuation_token` | No | [list] Token for fetching the next page of results. Returned from a previous list call. (string) |
|
|
32
|
+
| `--keyword` | No | [search] Search term to find in meeting notes. (string) |
|
|
33
|
+
| `--date_from` | No | [search] Filter meetings after this date (ISO format: YYYY-MM-DD). (string) |
|
|
34
|
+
| `--date_to` | No | [search] Filter meetings before this date (ISO format: YYYY-MM-DD). (string) |
|
|
35
|
+
| `--meeting_source` | No | [search] Filter by calendar source. (string, one of: google, outlook) |
|
|
36
|
+
| `--sort_by` | No | [search] Sort order. 'relevance' for best match first, 'created_at' for newest first (default). (string, one of: created_at, relevance) |
|
|
37
|
+
| `--page` | No | [search] Page number (0-indexed). Use with has_more to paginate results. Default: 0. (integer) |
|
|
38
|
+
| `--task_id` | No | [get] The ID of the meeting note to retrieve. (string) |
|
|
39
|
+
| `--detail_level` | No | [get] 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) |
|
|
40
|
+
|
|
41
|
+
## See Also
|
|
42
|
+
|
|
43
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-microsoft-teams
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'Microsoft Teams operations. Actions: send, list_channels, list_chats,
|
|
5
|
+
list_teams, search, search_users, create_chat.'
|
|
6
|
+
metadata:
|
|
7
|
+
category: general
|
|
8
|
+
requires:
|
|
9
|
+
bins:
|
|
10
|
+
- gsk
|
|
11
|
+
cliHelp: gsk teams --help
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# gsk-microsoft-teams
|
|
15
|
+
|
|
16
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
17
|
+
|
|
18
|
+
Microsoft Teams operations. Actions: send, list_channels, list_chats, list_teams, search, search_users, create_chat.
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
gsk teams [options]
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Aliases:** `teams`
|
|
27
|
+
|
|
28
|
+
## Flags
|
|
29
|
+
|
|
30
|
+
| Flag | Required | Description |
|
|
31
|
+
|------|----------|-------------|
|
|
32
|
+
| `<action>` (positional) | Yes | Action to perform. 'send': Send a message in Teams; 'list_channels': List channels in a team; 'list_chats': List recent chats; 'list_teams': List teams the user belongs to; 'search': Search messages; 'search_users': Search for users; 'create_chat': Create a new chat (string, one of: send, list_channels, list_chats, list_teams, search, search_users, create_chat) |
|
|
33
|
+
| `--content` | No | [send] The message content to send. Supports HTML formatting including clickable links. Use <a href='URL'>text</a> for links, <b>text</b> for bold, <i>text</i> for italic, <br> for line breaks, and other standard HTML tags. (string) |
|
|
34
|
+
| `--chat_id` | No | [send] Optional chat ID to send the message to. If not specified or set to 'self', sends to yourself as a DM. Use chat IDs from microsoft_teams_search_messages results. (string) |
|
|
35
|
+
| `--channel_type` | No | [send] Type of channel: 'teams_chat' for 1:1 or group chats, 'teams_channel' for team channels. Default: 'teams_chat' (string, one of: teams_chat, teams_channel) |
|
|
36
|
+
| `--team_id` | No | [send] Required if channel_type is 'teams_channel'. The team ID where the channel belongs. \| [list_channels] The ID of the team to list channels for. (string) |
|
|
37
|
+
| `--channel_id` | No | [send] Required if channel_type is 'teams_channel'. The channel ID within the team. (string) |
|
|
38
|
+
| `--importance` | No | [send] Message importance level that controls notification behavior. 'normal': Regular message, no special notification (default). 'high': Triggers notification without special emphasis. 'urgent': Triggers immediate notification with sound and alert. Default: 'normal' (string, one of: normal, high, urgent) |
|
|
39
|
+
| `--notify` | No | [send] Whether to force notification by @mentioning yourself in the message. When true, adds a self-mention to ensure notification is triggered. Useful when sending reminders to yourself. Default: true (boolean) |
|
|
40
|
+
| `--mention_user_ids` | No | [send] List of user IDs (GUIDs) to @mention in the message. Use search_users to find user IDs first. The message content should include {mention_N} placeholders where N is the index (0-based), e.g., '{mention_0} thank you' will @mention the first user in the list. (array) |
|
|
41
|
+
| `--mention_user_names` | No | [send] Display names for mentioned users, in same order as mention_user_ids. If not provided, will use user IDs as display names. (array) |
|
|
42
|
+
| `--topic` | No | [list_chats] Search for chats by topic/name (case-insensitive partial match). Use this to find a specific group chat by its name. Example: 'WorkflowTest' to find a chat with that topic. \| [create_chat] Topic/name for the group chat. Required for group chats (2+ members), ignored for 1:1 chats. (string) |
|
|
43
|
+
| `--chat_type` | No | [list_chats] Filter by chat type. 'oneOnOne' for 1:1 chats, 'group' for group chats, 'meeting' for meeting chats, 'all' for all types. Default: 'all' (string, one of: oneOnOne, group, meeting, all) |
|
|
44
|
+
| `--count` | No | [list_chats] Maximum number of chats to return. Default: 50 \| [list_teams] Maximum number of teams to return. Default: 50 \| [search] The maximum number of messages to return. Default is 100. \| [search_users] Maximum number of users to return. Default: 10 (integer) |
|
|
45
|
+
| `--query` | No | [search] The search query using KQL (Keyword Query Language). **Query Behavior**: • Spaces = AND: 'project meeting' finds messages with BOTH terms • OR operator: 'project OR meeting' finds messages with EITHER term • KQL modifiers: 'from:john', 'hasAttachment:true', 'sent>2024-01-01', 'IsRead:false' • Examples: 'urgent project', 'bug OR issue', 'from:alice budget', 'hasAttachment:true report' \| [search_users] Search query - can be a name, email, or partial match. Example: 'John', 'john@company.com', 'Smith' (string) |
|
|
46
|
+
| `--unread_only` | No | [search] Set to true to search for unread messages only. Default is false. (boolean) |
|
|
47
|
+
| `--question` | No | [search] A specific question to answer based on the search results. (string) |
|
|
48
|
+
| `--include_chat_id` | No | [search_users] If true, also return the chat_id for existing 1:1 chats with each user. This allows direct messaging without create_chat. Default: true (boolean) |
|
|
49
|
+
| `--member_emails` | No | [create_chat] List of email addresses of users to add to the chat. One email for 1:1 chat, multiple for group chat. (array) |
|
|
50
|
+
|
|
51
|
+
## See Also
|
|
52
|
+
|
|
53
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-notion
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'Notion page operations. Actions: search, read, create.'
|
|
5
|
+
metadata:
|
|
6
|
+
category: general
|
|
7
|
+
requires:
|
|
8
|
+
bins:
|
|
9
|
+
- gsk
|
|
10
|
+
cliHelp: gsk notion --help
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# gsk-notion
|
|
14
|
+
|
|
15
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
16
|
+
|
|
17
|
+
Notion page operations. Actions: search, read, create.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gsk notion [options]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Flags
|
|
26
|
+
|
|
27
|
+
| Flag | Required | Description |
|
|
28
|
+
|------|----------|-------------|
|
|
29
|
+
| `<action>` (positional) | Yes | Action to perform. 'search': Search pages and databases; 'read': Read content from a page; 'create': Create a new page (string, one of: search, read, create) |
|
|
30
|
+
| `--query` | No | [search] Query to search for in Notion pages. (string) |
|
|
31
|
+
| `--page_id` | No | [read] The ID of the Notion page to read and summarize. (string) |
|
|
32
|
+
| `--title` | No | [create] The title of the new page. (string) |
|
|
33
|
+
| `--content` | No | [create] The content of the page in markdown format. Supports headings, lists, code blocks, links, etc. (string) |
|
|
34
|
+
| `--parent_id` | No | [create] The ID of the parent page or database where the new page will be created. Use notion_search to find available pages/databases first. (string) |
|
|
35
|
+
| `--parent_type` | No | [create] The type of parent: 'page_id' for creating under a page, 'database_id' for creating in a database. Default is 'page_id'. (string, one of: page_id, database_id) |
|
|
36
|
+
|
|
37
|
+
## See Also
|
|
38
|
+
|
|
39
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-onedrive
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'OneDrive file operations. Actions: list, search, read.'
|
|
5
|
+
metadata:
|
|
6
|
+
category: general
|
|
7
|
+
requires:
|
|
8
|
+
bins:
|
|
9
|
+
- gsk
|
|
10
|
+
cliHelp: gsk onedrive --help
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# gsk-onedrive
|
|
14
|
+
|
|
15
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
16
|
+
|
|
17
|
+
OneDrive file operations. Actions: list, search, read.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gsk onedrive [options]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Flags
|
|
26
|
+
|
|
27
|
+
| Flag | Required | Description |
|
|
28
|
+
|------|----------|-------------|
|
|
29
|
+
| `<action>` (positional) | Yes | Action to perform. 'list': List files in a folder; 'search': Search files; 'read': Read and extract content from a file (string, one of: list, search, read) |
|
|
30
|
+
| `--onedrive_url` | No | [list] A OneDrive URL to list files from. Can be a sharing link, folder link, or any OneDrive URL. (string) |
|
|
31
|
+
| `--folder_id` | No | [list] The folder item ID to list contents of. Get folder IDs from previous onedrive_list_files or onedrive_search results. (string) |
|
|
32
|
+
| `--folder_path` | No | [list] The folder path relative to OneDrive root. Example: 'Documents/Projects' to list files in that subfolder. (string) |
|
|
33
|
+
| `--limit` | No | [list] Maximum number of items to return (1-200). Default: 50 (integer) |
|
|
34
|
+
| `--query` | No | [search] The search query string. **Query Behavior**: • Spaces = AND: 'project report' finds files with BOTH terms • OR operator: 'project OR report' finds files with EITHER term • Empty string: '*' lists all files • Wildcards: 'report*' finds files starting with 'report' • Examples: 'budget.xlsx', 'meeting OR conference', '*.pdf', 'project 2024' (string) |
|
|
35
|
+
| `--file_id` | No | [read] The ID of the file OR the OneDrive/SharePoint URL to read from OneDrive or SharePoint. Can be either a file ID (like '01W56PINYRO3...') or a full OneDrive/SharePoint URL (like 'https://domain-my.sharepoint.com/personal/user/Documents/file.pdf' or SharePoint driveItem IDs). For Teams attachments, use the 'file_id' value from Teams search results onedrive_file_params. (string) |
|
|
36
|
+
| `--question` | No | [read] The question to answer about the file content. (string) |
|
|
37
|
+
|
|
38
|
+
## Local File Support
|
|
39
|
+
|
|
40
|
+
Parameters that accept URLs (`--onedrive_url`) also accept local file paths. The CLI automatically uploads local files before sending to the API.
|
|
41
|
+
|
|
42
|
+
## See Also
|
|
43
|
+
|
|
44
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-outlook-calendar
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'Outlook Calendar operations. Actions: list, create, delete.'
|
|
5
|
+
metadata:
|
|
6
|
+
category: general
|
|
7
|
+
requires:
|
|
8
|
+
bins:
|
|
9
|
+
- gsk
|
|
10
|
+
cliHelp: gsk outlook_calendar --help
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# gsk-outlook-calendar
|
|
14
|
+
|
|
15
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
16
|
+
|
|
17
|
+
Outlook Calendar operations. Actions: list, create, delete.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gsk outlook_calendar [options]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Flags
|
|
26
|
+
|
|
27
|
+
| Flag | Required | Description |
|
|
28
|
+
|------|----------|-------------|
|
|
29
|
+
| `<action>` (positional) | Yes | Action to perform. 'list': List upcoming calendar events; 'create': Create a new calendar event; 'delete': Delete a calendar event (string, one of: list, create, delete) |
|
|
30
|
+
| `--filter_query` | No | [list] Text to filter calendar events by subject. Empty for listing all events in the time range. (string) |
|
|
31
|
+
| `--time_min` | No | [list] Optional. Start time for the calendar view (ISO 8601 timestamp). Defaults to 30 days ago. (string) |
|
|
32
|
+
| `--time_max` | No | [list] Optional. End time for the calendar view (ISO 8601 timestamp). Defaults to 60 days from now. (string) |
|
|
33
|
+
| `--from_account` | No | [list] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [delete] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. (string) |
|
|
34
|
+
| `--summary` | No | [create] The title of the event (string) |
|
|
35
|
+
| `--location` | No | [create] The location of the event (string) |
|
|
36
|
+
| `--description` | No | [create] Description or details of the event. Supports restricted HTML formatting (safe subset rendered via Vue v-html): <a>, <b>, <strong>, <i>, <em>, <u>, <br>, <p>, <ul>, <ol>, <li>, <span>, <img>. Use for links, bold, italics, lists, line breaks, images. (string) |
|
|
37
|
+
| `--time_zone` | No | [create] Time zone for the event (e.g., 'GMT-07:00') (string) |
|
|
38
|
+
| `--time_zone_name` | No | [create] Time zone name for the event (e.g., 'America/Los_Angeles') (string) |
|
|
39
|
+
| `--start_time` | No | [create] Start time of the event in ISO 8601 format, must include correct timezone offset (e.g., 'yyyy-mm-ddThh:mm:ss+hh:mm') (string) |
|
|
40
|
+
| `--end_time` | No | [create] End time of the event in ISO 8601 format, must include correct timezone offset (e.g., 'yyyy-mm-ddThh:mm:ss-hh:mm') (string) |
|
|
41
|
+
| `--attendees` | No | [create] List of email addresses of attendees (array) |
|
|
42
|
+
| `--calendar_id` | No | [create] The calendar identifier. Use 'primary' for the user's primary calendar or provide a specific calendar email address (string) |
|
|
43
|
+
| `--event_id` | No | [create] The event identifier. If the request is to modify an existing event, provide the event_id of the event to be modified. If the request is to create a new event, leave this field empty. \| [delete] The Outlook Calendar event ID to delete (string) |
|
|
44
|
+
| `--recurrence` | No | [create] Recurrence pattern for the event (object) |
|
|
45
|
+
| `--send_notifications` | No | [create] Whether to send email notifications to attendees (boolean) |
|
|
46
|
+
| `--importance` | No | [create] Event importance (low, normal, high) (string) |
|
|
47
|
+
| `--sensitivity` | No | [create] Event sensitivity (normal, personal, private, confidential) (string) |
|
|
48
|
+
| `--show_as` | No | [create] Show as status (free, tentative, busy, oof, workingElsewhere, unknown) (string) |
|
|
49
|
+
| `--delete_series` | No | [delete] If true and the event is recurring, delete the entire series. If false, only delete the single instance. Default is false. (boolean, default: `False`) |
|
|
50
|
+
|
|
51
|
+
## See Also
|
|
52
|
+
|
|
53
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-outlook-contacts
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'Outlook Contacts operations. Actions: search.'
|
|
5
|
+
metadata:
|
|
6
|
+
category: general
|
|
7
|
+
requires:
|
|
8
|
+
bins:
|
|
9
|
+
- gsk
|
|
10
|
+
cliHelp: gsk outlook_contacts --help
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# gsk-outlook-contacts
|
|
14
|
+
|
|
15
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
16
|
+
|
|
17
|
+
Outlook Contacts operations. Actions: search.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gsk outlook_contacts [options]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Flags
|
|
26
|
+
|
|
27
|
+
| Flag | Required | Description |
|
|
28
|
+
|------|----------|-------------|
|
|
29
|
+
| `<action>` (positional) | Yes | Action to perform. 'search': Search Outlook contacts (string, one of: search) |
|
|
30
|
+
| `--query` | No | [search] Search query to find contacts. Searches across names, email addresses, phone numbers, and notes. (string) |
|
|
31
|
+
| `--limit` | No | [search] Maximum number of results to return (1-100). Default: 20 (integer) |
|
|
32
|
+
| `--account_id` | No | [search] Optional. The Outlook account ID to search (e.g., 'outlook-user@example.com'). If not provided, uses the default Outlook account. (string) |
|
|
33
|
+
|
|
34
|
+
## See Also
|
|
35
|
+
|
|
36
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-outlook-email
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'Outlook Email operations. Actions: search, read, send, reply, reply_draft,
|
|
5
|
+
forward, delete, archive, move, mark_as_read, add_category, remove_category, get_attachment,
|
|
6
|
+
group_list, group_search, group_read, group_reply.'
|
|
7
|
+
metadata:
|
|
8
|
+
category: general
|
|
9
|
+
requires:
|
|
10
|
+
bins:
|
|
11
|
+
- gsk
|
|
12
|
+
cliHelp: gsk outlook --help
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# gsk-outlook-email
|
|
16
|
+
|
|
17
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
18
|
+
|
|
19
|
+
Outlook Email operations. Actions: search, read, send, reply, reply_draft, forward, delete, archive, move, mark_as_read, add_category, remove_category, get_attachment, group_list, group_search, group_read, group_reply.
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
gsk outlook [options]
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Aliases:** `outlook`
|
|
28
|
+
|
|
29
|
+
## Flags
|
|
30
|
+
|
|
31
|
+
| Flag | Required | Description |
|
|
32
|
+
|------|----------|-------------|
|
|
33
|
+
| `<action>` (positional) | Yes | Action to perform. 'search': Search emails by query; 'read': Read a specific email by ID; 'send': Compose and send an email; 'reply': Reply to an existing email; 'reply_draft': Create a reply draft without sending; 'forward': Forward an email to new recipients; 'delete': Delete an email; 'archive': Archive an email; 'move': Move an email to a different folder; 'mark_as_read': Mark an email as read or unread; 'add_category': Add a category to an email; 'remove_category': Remove a category from an email; 'get_attachment': Download an email attachment; 'group_list': List Microsoft 365 groups; 'group_search': Search group emails; 'group_read': Read a group email; 'group_reply': Reply to a group email (string, one of: search, read, send, reply, reply_draft, forward, delete, archive, move, mark_as_read, add_category, remove_category, get_attachment, group_list, group_search, group_read, group_reply) |
|
|
34
|
+
| `--queryString` | No | [search] The search query using KQL (Keyword Query Language). Examples:\n- Simple: 'project meeting'\n- From Sender: 'from:boss@example.com'\n- With Subject: 'subject:"Weekly Report"'\n- Unread Emails: 'isRead=false'\n- Has Attachments: 'hasAttachments=true'\n- Cc Recipient: 'cc:user@example.com'\n- Important: 'importance:high'\n- Complex: 'from:admin@co.com AND (subject:urgent OR body:critical)'\nNote: Use after_date/before_date params for date filtering (recommended), or use KQL syntax like 'received:2024-06-01..2024-06-30' in queryString. (string) |
|
|
35
|
+
| `--after_date` | No | [search] Filter emails received on or after this date (inclusive). Format: YYYY-MM-DD (e.g., '2024-01-01'). Works for both enterprise and personal accounts. (string) |
|
|
36
|
+
| `--before_date` | No | [search] Filter emails received before this date (exclusive). Format: YYYY-MM-DD (e.g., '2024-01-31'). Works for both enterprise and personal accounts. (string) |
|
|
37
|
+
| `--size` | No | [search] The number of results to return per page (default: 25, max: 1000). \| [group_search] The maximum number of results to return per group per page (default: 25). (integer, default: `25`) |
|
|
38
|
+
| `--from_offset` | No | [search] The starting offset for pagination (used to get the next page of results). (integer, default: `0`) |
|
|
39
|
+
| `--auto_paginate` | No | [search] If true, automatically fetches multiple pages until reaching max_total_results (default: 500). Returns ALL emails matching the query. \| [group_search] If true, automatically fetches multiple pages from each group until reaching max_total_results (default: 500). Returns ALL emails matching the query. (boolean) |
|
|
40
|
+
| `--max_total_results` | No | [search] Maximum total results to fetch when auto_paginate is true. Default: 500, Maximum: 500. \| [group_search] Maximum total results to fetch across all groups when auto_paginate is true. Default: 500, Maximum: 500. (integer) |
|
|
41
|
+
| `--folder` | No | [search] The mail folder to search in. Options:\n- 'inbox': Inbox folder (default)\n- 'junkemail' or 'spam': Junk/Spam folder\n- 'deleteditems' or 'trash': Deleted Items folder\n- 'drafts': Drafts folder\n- 'sentitems' or 'sent': Sent Items folder\n- 'archive': Archive folder\n- 'all': Search across all folders (uses Search API) (string) |
|
|
42
|
+
| `--search_mode` | No | [search] Search mode to use:\n- 'auto' (default): Automatically choose best method\n- 'kql': Use Microsoft Search API with full KQL syntax (enterprise only, supports 'isread:false from:john subject:meeting')\n- 'filter': Use $filter for property filtering (supports 'isRead eq false', works with folder parameter) (string, one of: auto, kql, filter) |
|
|
43
|
+
| `--from_account` | No | [search] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [read] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [send] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [reply] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [reply_draft] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [forward] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [delete] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [archive] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [move] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [mark_as_read] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [add_category] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [remove_category] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [get_attachment] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [group_list] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [group_search] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [group_read] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. \| [group_reply] Optional: Email address of the Outlook account to use. Use this when the user has multiple Outlook accounts connected. If not specified, uses the default Outlook account. (string) |
|
|
44
|
+
| `--id` | No | [read] The ID of the email to retrieve and read (string) |
|
|
45
|
+
| `--title` | No | [read] The title of the email to retrieve and read \| [group_read] The title of the email thread to retrieve. (string) |
|
|
46
|
+
| `--question` | No | [read] Question to answer guiding how to process the email content \| [group_read] Question to answer guiding how to process the email content (string) |
|
|
47
|
+
| `--download_attachments` | No | [read] Whether need to download attachments from the email to analysis (boolean) |
|
|
48
|
+
| `--aidrive_path` | No | [read] Path in AIDrive where attachments should be saved. Default is /outlook_attachments/ \| [get_attachment] The path in AIDrive to save the attachment. Default: /outlook_attachments/ (string) |
|
|
49
|
+
| `--to` | No | [send] A list of email addresses for primary recipients. At least one recipient is required. \| [reply] Optional: A list of email addresses for primary recipients. If not provided, defaults to the original sender. By default (reply_all=true), all original recipients are included in CC. \| [reply_draft] Optional: A list of email addresses for primary recipients. If not provided, defaults to the original sender. By default (reply_all), all original recipients are included in CC. \| [forward] A list of email addresses for primary recipients to forward the email to. \| [group_reply] Optional list of recipient email addresses to add as new participants. These recipients will be notified about the reply. (array) |
|
|
50
|
+
| `--subject` | No | [send] The email subject line. (string) |
|
|
51
|
+
| `--body` | No | [send] The email body content. **IMPORTANT**: The format MUST match the content_type parameter: - If content_type='text': Use plain text - If content_type='html': Use HTML format with tags like <h1>, <p>, <ul>, etc. **Note**: Email clients DO NOT support Markdown. Convert Markdown to HTML if needed. \| [reply] The reply message body. **IMPORTANT**: The format MUST match the content_type parameter: - If content_type='text': Use plain text - If content_type='html': Use HTML format with tags like <h1>, <p>, <ul>, etc. **Note**: Email clients DO NOT support Markdown. Convert Markdown to HTML if needed. \| [reply_draft] The reply content in HTML format. Use HTML tags for formatting (e.g., <br>, <b>, <i>). \| [forward] Optional: Additional message to include above the forwarded content. This is your personal note to recipients. (string) |
|
|
52
|
+
| `--cc` | No | [send] Optional: A list of email addresses for CC recipients. \| [reply] Optional: A list of email addresses for CC recipients. If not provided and 'reply_all' is true (default), includes original CC and TO recipients. If 'reply_all' is false, no CC recipients are added. \| [reply_draft] Optional: A list of email addresses for CC recipients. If not provided and 'reply_type' is 'reply_all' (default), includes original CC and TO recipients. If 'reply_type' is 'reply', no CC recipients are added. \| [forward] Optional: A list of email addresses for CC recipients. (array) |
|
|
53
|
+
| `--bcc` | No | [send] Optional: A list of email addresses for BCC recipients. \| [reply] Optional: A list of email addresses for BCC recipients. \| [reply_draft] Optional: A list of email addresses for BCC recipients. \| [forward] Optional: A list of email addresses for BCC recipients. (array) |
|
|
54
|
+
| `--from_mailbox` | No | [send] Optional: The email address to send from (e.g., team@company.com). If not specified, the email will be sent from the current user's mailbox. Requires 'Mail.Send.Shared' permission for shared/group mailboxes. \| [reply] Optional: The email address to send the reply from (e.g., team@genspark.ai). If not specified, the reply will be sent from the current user's mailbox. Requires 'Mail.Send.Shared' permission for shared/group mailboxes. \| [reply_draft] Optional: The email address to create the draft from (e.g., team@genspark.ai). If not specified, the draft will be created in the current user's mailbox. Requires 'Mail.Send.Shared' permission for shared/group mailboxes. \| [forward] Optional: The email address to send from (e.g., team@genspark.ai). If not specified, forwards from the current user's mailbox. Requires 'Mail.Send.Shared' permission for shared/group mailboxes. (string) |
|
|
55
|
+
| `--content_type` | No | [send] Content type of the body. Default: text/html (recommended) **CRITICAL**: body field format MUST match this parameter: - 'text/plain': body should be plain text - 'text/html': body MUST be valid HTML (not Markdown) Always convert Markdown to HTML before passing to this tool. \| [reply] Content type of the reply body. Default: text/html (recommended) **CRITICAL**: body field format MUST match this parameter: - 'text/plain': body should be plain text - 'text/html': body MUST be valid HTML (not Markdown) Always convert Markdown to HTML before passing to this tool. \| [forward] Content type of the body. Default: text/html \| [group_reply] The format of the content. Use 'text/plain' for plain text or 'text/html' for HTML content. Default is 'text/plain'. (string, one of: text/plain, text/html) |
|
|
56
|
+
| `--skip_confirmation` | No | [send] If true, skip user confirmation and send immediately. Default is false (require confirmation before sending). \| [reply] If true, skip user confirmation and send immediately. Default is false (require confirmation before sending). \| [forward] If true, skip user confirmation and send immediately. Default is false (require confirmation before sending). \| [delete] If true, skip user confirmation and delete immediately. Default is false (require confirmation before deleting). \| [move] If true, skip user confirmation and move immediately. Default is false (require confirmation before moving). (boolean, default: `False`) |
|
|
57
|
+
| `--auto_skip_confirmation` | No | [send] Set to true ONLY if the workflow step has [AUTO_SKIP_CONFIRMATION] marker. This indicates the node is configured to always skip confirmation. \| [reply] Set to true ONLY if the workflow step has [AUTO_SKIP_CONFIRMATION] marker. This indicates the node is configured to always skip confirmation. \| [forward] Set to true ONLY if the workflow step has [AUTO_SKIP_CONFIRMATION] marker. This indicates the node is configured to always skip confirmation. \| [delete] Set to true ONLY if the workflow step has [AUTO_SKIP_CONFIRMATION] marker. This indicates the node is configured to always skip confirmation. \| [move] Set to true ONLY if the workflow step has [AUTO_SKIP_CONFIRMATION] marker. This indicates the node is configured to always skip confirmation. (boolean, default: `False`) |
|
|
58
|
+
| `--message_id` | No | [reply] The Outlook message ID to reply to. \| [forward] The Outlook message ID to forward. \| [delete] The Outlook message ID to delete \| [archive] The Outlook message ID to archive \| [move] The Outlook message ID to move \| [mark_as_read] (Deprecated, use message_ids) A single Outlook message ID to mark \| [add_category] The Outlook message ID to add category to \| [remove_category] The Outlook message ID to remove category from \| [get_attachment] The Outlook message ID containing the attachment (string) |
|
|
59
|
+
| `--reply_all` | No | [reply] Optional: If true (default), reply to all original recipients (TO and CC). If false, reply only to the original sender. (boolean, default: `True`) |
|
|
60
|
+
| `--include_original` | No | [reply] Optional: Whether to include the original email content as a quote in the reply. Defaults to true. \| [reply_draft] Optional: Whether to include the original email content as a quote in the draft. Defaults to true. (boolean, default: `True`) |
|
|
61
|
+
| `--original_email_id` | No | [reply_draft] The ID of the original email to reply to. Required to create a proper reply draft with quoted content. (string) |
|
|
62
|
+
| `--reply_type` | No | [reply_draft] Type of reply: 'reply' sends only to the original sender, 'reply_all' sends to all recipients of the original email. Default: 'reply_all'. Used to determine default recipients if 'to'/'cc' are not provided. (string, one of: reply, reply_all) |
|
|
63
|
+
| `--include_attachments` | No | [forward] Whether to include original email attachments in the forward. Default: true (boolean, default: `True`) |
|
|
64
|
+
| `--permanent` | No | [delete] Whether to permanently delete the message. Default: false (move to Deleted Items) (boolean) |
|
|
65
|
+
| `--folder_name` | No | [move] The target folder name. Can be a well-known folder (inbox, drafts, sentitems, deleteditems, archive, junkemail, outbox) or a custom folder name. Custom folders will be created if they don't exist. (string) |
|
|
66
|
+
| `--create_if_not_exists` | No | [move] Whether to create the folder if it doesn't exist. Default: true (boolean) |
|
|
67
|
+
| `--message_ids` | No | [mark_as_read] The Outlook message ID(s) to mark. Can be a single ID string or an array of IDs. |
|
|
68
|
+
| `--is_read` | No | [mark_as_read] Set to true to mark as read, false to mark as unread. Default: true (boolean) |
|
|
69
|
+
| `--category_name` | No | [add_category] The category name to add. Common categories include: Red category, Orange category, Yellow category, Green category, Blue category, Purple category \| [remove_category] The category name to remove (string) |
|
|
70
|
+
| `--filename` | No | [get_attachment] The filename of the attachment to retrieve. Use '*' to get all attachments. (string) |
|
|
71
|
+
| `--save_to_aidrive` | No | [get_attachment] Whether to save the attachment to AIDrive. Default: true (boolean) |
|
|
72
|
+
| `--name_filter` | No | [group_list] Optional filter to search for groups by name or email. If provided, only groups matching this filter will be returned. (string) |
|
|
73
|
+
| `--group_id` | No | [group_search] The ID of a specific group to search within. If provided, group_name_filter is ignored. \| [group_read] The ID of the group. \| [group_reply] The ID of the M365 group. Available from trigger data as 'group_id' or 'emails[0].group_id'. (string) |
|
|
74
|
+
| `--group_name_filter` | No | [group_search] A search term to find groups by name (e.g., 'Marketing'). Used if group_id is not provided. (string) |
|
|
75
|
+
| `--query` | No | [group_search] The search query for email subjects. Use an empty string to get recent emails. (string) |
|
|
76
|
+
| `--thread_id` | No | [group_read] The ID of the email thread to retrieve. This is often the same as the conversationId. \| [group_reply] The ID of the email thread to reply to. Available from trigger data as 'thread_id' or 'emails[0].thread_id'. (string) |
|
|
77
|
+
| `--conversation_id` | No | [group_reply] The ID of the conversation. Available from trigger data as 'conversation_id' or 'emails[0].conversation_id'. (string) |
|
|
78
|
+
| `--content` | No | [group_reply] The reply content. Can be plain text or HTML. This will be posted as a new message in the group conversation. (string) |
|
|
79
|
+
|
|
80
|
+
## See Also
|
|
81
|
+
|
|
82
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -42,7 +42,7 @@ gsk me
|
|
|
42
42
|
| `--base-url <url>` | `GSK_BASE_URL` | `https://www.genspark.ai` | API base URL |
|
|
43
43
|
| `--project-id <id>` | `GSK_PROJECT_ID` | — | Project ID for access control |
|
|
44
44
|
| `--debug` | — | `false` | Enable debug output |
|
|
45
|
-
| `--timeout <ms>` | — | `
|
|
45
|
+
| `--timeout <ms>` | — | `1800000` | Request timeout (30 min default) |
|
|
46
46
|
| `--output <format>` | — | `json` | Output format: `json` or `text` |
|
|
47
47
|
| `--refresh` | — | — | Force refresh cached tool schemas |
|
|
48
48
|
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-sharepoint
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'SharePoint site and file operations. Actions: list, search, read_content,
|
|
5
|
+
read_file.'
|
|
6
|
+
metadata:
|
|
7
|
+
category: general
|
|
8
|
+
requires:
|
|
9
|
+
bins:
|
|
10
|
+
- gsk
|
|
11
|
+
cliHelp: gsk sharepoint --help
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# gsk-sharepoint
|
|
15
|
+
|
|
16
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
17
|
+
|
|
18
|
+
SharePoint site and file operations. Actions: list, search, read_content, read_file.
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
gsk sharepoint [options]
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
## Flags
|
|
27
|
+
|
|
28
|
+
| Flag | Required | Description |
|
|
29
|
+
|------|----------|-------------|
|
|
30
|
+
| `<action>` (positional) | Yes | Action to perform. 'list': List files in a site or library; 'search': Search across sites; 'read_content': Read content from a list item or page; 'read_file': Read and extract content from a file (string, one of: list, search, read_content, read_file) |
|
|
31
|
+
| `--sharepoint_url` | No | [list] A SharePoint URL to list files from. Can be a site URL, document library URL (AllItems.aspx), or a folder URL. Example: 'https://company.sharepoint.com/sites/TeamSite/Shared Documents/Forms/AllItems.aspx' (string) |
|
|
32
|
+
| `--site_id` | No | [list] The SharePoint site ID. Use this to list the default document library of a specific site. Get site IDs from sharepoint_search results. \| [read_content] Site ID from SharePoint search results siteInfo. Required for listItem content type. (string) |
|
|
33
|
+
| `--drive_id` | No | [list] The document library (drive) ID. Use this to list files in a specific document library. (string) |
|
|
34
|
+
| `--folder_id` | No | [list] The folder item ID within a drive. Use this with drive_id to navigate into subfolders. Get folder IDs from previous sharepoint_list_files results. (string) |
|
|
35
|
+
| `--limit` | No | [list] Maximum number of items to return (1-200). Default: 50 (integer) |
|
|
36
|
+
| `--query` | No | [search] The search query string using KQL syntax. **Query Behavior**: • Spaces = AND: 'project report' finds items with BOTH terms • OR operator: 'project OR report' finds items with EITHER term • Empty string: '*' returns all items • Mixed language: automatically optimized (e.g., '项目 project' → '项目 OR project') • Examples: 'budget 2024', 'meeting OR conference', 'from:john project', 'hasAttachment:true report' (string) |
|
|
37
|
+
| `--entity_types` | No | [search] Types of SharePoint content to search. Defaults to all types. (array, default: `['site', 'listItem', 'list', 'driveItem']`) |
|
|
38
|
+
| `--content_id` | No | [read_content] The ID of the SharePoint content to read. Can be a site ID, page ID, list ID, list item ID from SharePoint search results, or a SharePoint URL for direct file access. For Teams attachments, use the 'content_id' value from Teams search results onedrive_file_params. (string) |
|
|
39
|
+
| `--content_type` | No | [read_content] The type of SharePoint content to read. Use 'driveItem' for SharePoint files, 'listItem' for SharePoint pages/list items. (string, one of: site, page, list, listItem, driveItem) |
|
|
40
|
+
| `--question` | No | [read_content] The question to answer about the SharePoint content. \| [read_file] The question to answer about the file content. (string) |
|
|
41
|
+
| `--list_id` | No | [read_content] List ID from SharePoint search results siteInfo. Required for listItem content type. (string) |
|
|
42
|
+
| `--list_item_id` | No | [read_content] List item ID from SharePoint search results siteInfo. Required for listItem content type. (string) |
|
|
43
|
+
| `--file_id` | No | [read_file] The ID of the file OR the SharePoint URL to read from Microsoft OneDrive/SharePoint/Teams. Can be either a file ID (like '01W56PINYRO3...') or a full SharePoint URL (like 'https://domain.sharepoint.com/...'). (string) |
|
|
44
|
+
|
|
45
|
+
## Local File Support
|
|
46
|
+
|
|
47
|
+
Parameters that accept URLs (`--sharepoint_url`) also accept local file paths. The CLI automatically uploads local files before sending to the API.
|
|
48
|
+
|
|
49
|
+
## See Also
|
|
50
|
+
|
|
51
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-slack
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: 'Slack messaging operations. Actions: send, search, lookup.'
|
|
5
|
+
metadata:
|
|
6
|
+
category: general
|
|
7
|
+
requires:
|
|
8
|
+
bins:
|
|
9
|
+
- gsk
|
|
10
|
+
cliHelp: gsk slack --help
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# gsk-slack
|
|
14
|
+
|
|
15
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
16
|
+
|
|
17
|
+
Slack messaging operations. Actions: send, search, lookup.
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
gsk slack [options]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Flags
|
|
26
|
+
|
|
27
|
+
| Flag | Required | Description |
|
|
28
|
+
|------|----------|-------------|
|
|
29
|
+
| `<action>` (positional) | Yes | Action to perform. 'send': Send a message to a channel or user; 'search': Search messages by keyword; 'lookup': Look up users, channels, or groups (string, one of: send, search, lookup) |
|
|
30
|
+
| `--message` | No | [send] The message content to send. Supports Slack markdown formatting. (string) |
|
|
31
|
+
| `--recipient` | No | [send] Optional recipient: 'self' (default), channel ID (e.g., 'C01234567'), or user ID (e.g., 'U01234567'). If not specified, sends to yourself. (string) |
|
|
32
|
+
| `--title` | No | [send] Optional title for the message. If provided, creates a rich formatted message with a header. (string) |
|
|
33
|
+
| `--fields` | No | [send] Optional array of field objects with 'title' and 'value' keys to create a structured message layout. (array) |
|
|
34
|
+
| `--thread_ts` | No | [send] Optional thread timestamp to reply in a thread. (string) |
|
|
35
|
+
| `--query` | No | [search] The search query. You can use modifiers like 'in:#channel', 'from:@user', 'has:link', 'before:yyyy-mm-dd'. (string) |
|
|
36
|
+
| `--count` | No | [search] The maximum number of messages to return. Default is 100. (integer) |
|
|
37
|
+
| `--sort` | No | [search] Sort order of results. 'score' for relevance or 'timestamp' for time. Default is 'score'. (string) |
|
|
38
|
+
| `--question` | No | [search] A specific question to answer based on the search results. (string) |
|
|
39
|
+
| `--lookup_type` | No | [lookup] What to look up: 'users' for team members, 'channels' for channels/conversations, 'all' for both. (string, one of: users, channels, all) |
|
|
40
|
+
| `--search_query` | No | [lookup] Optional search query to filter results by name. Case-insensitive partial match on name, display name, or real name. (string) |
|
|
41
|
+
| `--include_bots` | No | [lookup] Whether to include bot users in results. Default: false (boolean) |
|
|
42
|
+
| `--limit` | No | [lookup] Maximum number of results to return. Default: 50 (integer) |
|
|
43
|
+
|
|
44
|
+
## See Also
|
|
45
|
+
|
|
46
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -31,18 +31,19 @@ gsk video [options]
|
|
|
31
31
|
|------|----------|-------------|
|
|
32
32
|
| `<query>` (positional) | Yes | Detailed description of the video to generate. duration is recommended to be 5 ~ 10 seconds. For image-to-image transitions (user provides start and end frames) e.g., 'A timelapse of a flower blooming in a garden'. (string) |
|
|
33
33
|
| `--file_name` | No | The name of the video to generate. (string, null) |
|
|
34
|
-
| `-m`, `--model` | Yes | The model to use for video generation. kling/v3: Latest Kling V3 with audio. Pro/Standard quality modes. Supported ratios: 16:9, 9:16, 1:1. Duration: 3-15s. gemini/veo3.1: Gemini Veo 3.1 - Latest version with enhanced quality and features. Supports text-to-video and image-to-video generation with improved quality. Duration: 8s. Supported ratios: 16:9, 9:16. Supports fast_mode (faster generation) and hd_mode (1080p quality). gemini/veo3.1/reference-to-video: Gemini Veo 3.1 Reference-to-Video mode. Generate video using multiple reference images to guide the generation. Requires 1+ reference images. Duration: 8s. Supported ratios: 16:9, 9:16. Supports fast_mode and hd_mode options. gemini/veo3.1/first-last-frame-to-video: Veo 3.1 First-Last Frame mode. Generate video by specifying first and last frames for precise transitions. Requires exactly 2 images. Duration: 8s. Supported ratios: 16:9, 9:16. Supports fast_mode and hd_mode options.minimax/hailuo-2.3/standard: MiniMax Hailuo-2.3 Standard model for high-quality video generation. Supports both text-to-video and image-to-video generation with improved quality. Supports first & last frame control for precise video transitions. Fast generation (about 4min one video), cost-effective option. Supported ratios: 16:9, 9:16. Duration: 6s,
|
|
34
|
+
| `-m`, `--model` | Yes | The model to use for video generation. kling/v3: Latest Kling V3 with audio. Pro/Standard quality modes. Supported ratios: 16:9, 9:16, 1:1. Duration: 3-15s. gemini/veo3.1: Gemini Veo 3.1 - Latest version with enhanced quality and features. Supports text-to-video and image-to-video generation with improved quality. Duration: 8s. Supported ratios: 16:9, 9:16. Supports fast_mode (faster generation) and hd_mode (1080p quality). gemini/veo3.1/reference-to-video: Gemini Veo 3.1 Reference-to-Video mode. Generate video using multiple reference images to guide the generation. Requires 1+ reference images. Duration: 8s. Supported ratios: 16:9, 9:16. Supports fast_mode and hd_mode options. gemini/veo3.1/first-last-frame-to-video: Veo 3.1 First-Last Frame mode. Generate video by specifying first and last frames for precise transitions. Requires exactly 2 images. Duration: 8s. Supported ratios: 16:9, 9:16. Supports fast_mode and hd_mode options.minimax/hailuo-2.3/standard: MiniMax Hailuo-2.3 Standard model for high-quality video generation. Supports both text-to-video and image-to-video generation with improved quality. Supports first & last frame control for precise video transitions. Fast generation (about 4min one video), cost-effective option. Supported ratios: 16:9, 9:16. Duration: 6s, 10s wan/v2.7: Wan v2.7 with enhanced motion smoothness and scene fidelity. Supports text-to-video, image-to-video, reference-to-video, and edit-video. Ratios: 16:9, 9:16, 1:1. Duration: 5s. Resolution: 480p, 720p wan/v2.6: Wan model with 1080p support and audio integration. Supports text-to-video, image-to-video, and reference-to-video. Supported ratios: 16:9, 9:16, 1:1, 4:3, 3:4. Duration: 5s, 10s, 15s vidu/q3: Vidu Q3 model with enhanced quality and audio generation. Supports both text-to-video and image-to-video generation. Supported ratios: 16:9, 9:16, 4:3, 3:4, 1:1. Duration: 1-16s. Resolution: 720p, 1080prunway/gen4_turbo: A model for generate video with high quality, fast.Supported ratios: 5:3, 3:5. Only support i2v. Duration: 5s, 10sofficial/pixverse/v5: A model for generate video with high quality, fast.fast(30s one video) but expensive. Supported ratios: 16:9, 9:16, 4:3, 1:1, 3:4. Duration: 5s, 8sAdditional features: 1. Generating smooth video transitions between two specified keyframes (start and end frames). pixverse/v6: PixVerse V6 latest model with lifelike motion, richer skin detail, real emotions. Full cinematic control including choreography and camera. Supports text-to-video, image-to-video, transition, and video extend generation. VFX, time-lapse, transformation scenes, product demos, 360° views, multi-shot storytelling. Extend: pass video_url to extend an existing video. Supported ratios: 16:9, 9:16, 4:3, 1:1, 3:4. Duration: 5s, 8s. fal-ai/bytedance/seedance-2.0: Bytedance Seedance 2.0 model for highest quality video generation with native audio and lip-sync. Supports text-to-video and image-to-video with first/last frame control. Supported ratios: 21:9, 16:9, 4:3, 1:1, 3:4, 9:16. Duration: 4-15s. Resolution: 480p, 720p. Also supports reference-to-video with up to 9 images, 3 videos, or 3 audio refs via settings.sora-2: OpenAI Sora 2 video generation model for fast, creative videos. Supports text-to-video, image-to-video (reference frame), and video remixing. Designed for speed and experimentation. Supported ratios: 16:9, 9:16. Duration: 4s, 8s, 12ssora-2-pro: OpenAI Sora 2 Pro for production-quality videos. Higher fidelity than sora-2, best for cinematic footage and marketing assets. Supports 720p and 1080p resolutions. Supported ratios: 16:9, 9:16. Duration: 4s, 8sfal-ai/bytedance-upscaler/upscale/video: ByteDance Video Upscaler for enhancing video quality. Upscales videos to higher resolutions (2k) Requires video_url parameter. Does NOT generate new videos. Use when user wants to improve quality of existing videos.xai/grok-imagine-video: xAI Grok Imagine Video model for high-quality video generation. Supports both text-to-video and image-to-video generation. 720p HD output. Flexible duration 1-15 seconds. Supported ratios: 16:9, 4:3, 1:1, 3:4, 9:16, 21:9, 9:21. Duration: 1-15s. xai/grok-imagine-video/video-extension: xAI Grok Imagine Video Extension for extending existing videos. Requires video_url parameter with source video URL (MP4, 2-15s). 720p HD output. Duration: 2-10s. Ratios: 16:9, 4:3, 1:1, 3:4, 9:16, 21:9, 9:21. (string, one of: kling/v3, gemini/veo3.1, gemini/veo3.1/reference-to-video, gemini/veo3.1/first-last-frame-to-video, minimax/hailuo-2.3/standard, wan/v2.7, wan/v2.6, vidu/q3, runway/gen4_turbo, official/pixverse/v5, pixverse/v6, fal-ai/bytedance/seedance-2.0, sora-2, sora-2-pro, fal-ai/bytedance-upscaler/upscale/video, xai/grok-imagine-video, xai/grok-imagine-video/video-extension) |
|
|
35
35
|
| `-i`, `--image_urls` | No | The URLs of the images to use as reference key frames for the video generation. For single image models, provide 1 image. For multi-image models (like kling/v1.6/pro/elements), provide 1-4 images in sequence order. For start-end models (like vidu, pixverse), provide exactly 2 images (start and end frames). (default is [], if the task is based on one or more reference images, it is required) (array) |
|
|
36
36
|
| `-r`, `--aspect_ratio` | No | The aspect ratio of the video to generate. For image-to-video (i2v) generation, this should match the aspect ratio of your input image(s). (string, one of: 16:9, 9:16, 4:3, 1:1, 9:21) |
|
|
37
37
|
| `-d`, `--duration` | No | The duration of the video to generate in seconds. (number, default: `5`) |
|
|
38
38
|
| `-a`, `--audio_url` | No | Audio URL for audio integration in video generation. - Optional for Wan v2.5 model (custom audio: music or speech, WAV/MP3, 3-10s, up to 15MB) - Required for OmniHuman model (audio-driven animation) Leave empty if no audio is needed. (string, default: ``) |
|
|
39
|
+
| `--video_url` | No | Source video URL for video extension. Required for Grok Imagine Video Extension (extend existing video). Supports both web URLs and AI Drive paths (starting with '/' or 'aidrive://') (string, default: ``) |
|
|
39
40
|
| `--video_urls` | No | Input video URLs for video processing tasks. For Wan v2.6 reference-to-video: provide 1-3 reference videos (use @Video1, @Video2, @Video3 in prompt to reference them). (array, default: `[]`) |
|
|
40
|
-
| `--fast_mode` | No | Enable fast mode for quicker generation at lower cost.
|
|
41
|
+
| `--fast_mode` | No | Enable fast mode for quicker generation at lower cost. Applicable to Veo 3.1 and Seedance 2.0 models. Default: false. (boolean, default: `False`) |
|
|
41
42
|
| `--hd_mode` | No | Enable HD (1080p) mode for higher quality output. Only applicable to Veo 3.1 models. Higher cost (2x). Default: false. (boolean, default: `False`) |
|
|
42
43
|
|
|
43
44
|
## Local File Support
|
|
44
45
|
|
|
45
|
-
Parameters that accept URLs (`--image_urls`, `--audio_url`, `--video_urls`) also accept local file paths. The CLI automatically uploads local files before sending to the API.
|
|
46
|
+
Parameters that accept URLs (`--image_urls`, `--audio_url`, `--video_url`, `--video_urls`) also accept local file paths. The CLI automatically uploads local files before sending to the API.
|
|
46
47
|
|
|
47
48
|
## Output File
|
|
48
49
|
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: gsk-voice-cloning
|
|
3
|
+
version: 1.0.0
|
|
4
|
+
description: Clone a voice from an audio sample using Minimax. Returns a voice ID
|
|
5
|
+
for use with Minimax TTS.
|
|
6
|
+
metadata:
|
|
7
|
+
category: general
|
|
8
|
+
requires:
|
|
9
|
+
bins:
|
|
10
|
+
- gsk
|
|
11
|
+
cliHelp: gsk voice-clone --help
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# gsk-voice-cloning
|
|
15
|
+
|
|
16
|
+
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
17
|
+
|
|
18
|
+
Clone a voice from an audio sample using Minimax. Returns a voice ID for use with Minimax TTS.
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
gsk voice-clone [options]
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
**Aliases:** `voice-clone`, `vc`
|
|
27
|
+
|
|
28
|
+
## Flags
|
|
29
|
+
|
|
30
|
+
| Flag | Required | Description |
|
|
31
|
+
|------|----------|-------------|
|
|
32
|
+
| `<query>` (positional) | No | A description or name for the cloned voice. (string) |
|
|
33
|
+
| `-m`, `--model` | Yes | fal-ai/minimax/voice-clone: Clone a voice from a sample audio using Minimax. Requires a single audio sample (min 10 seconds). Returns a custom_voice_id for use with fal-ai/minimax/speech-2.8-hd. (string, one of: fal-ai/minimax/voice-clone) |
|
|
34
|
+
| `-f`, `--voice_files` | Yes | URL or path to voice sample audio file (minimum 10 seconds). (array) |
|
|
35
|
+
|
|
36
|
+
## Output File
|
|
37
|
+
|
|
38
|
+
Use `-o <path>` / `--output-file <path>` to download the generated result directly to a local file.
|
|
39
|
+
|
|
40
|
+
## See Also
|
|
41
|
+
|
|
42
|
+
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: gsk-calendar-create
|
|
3
|
-
version: 1.0.0
|
|
4
|
-
description: Create a new calendar event in Google Calendar or Outlook.
|
|
5
|
-
metadata:
|
|
6
|
-
category: calendar
|
|
7
|
-
requires:
|
|
8
|
-
bins:
|
|
9
|
-
- gsk
|
|
10
|
-
cliHelp: gsk calendar create --help
|
|
11
|
-
---
|
|
12
|
-
|
|
13
|
-
# gsk-calendar-create
|
|
14
|
-
|
|
15
|
-
**PREREQUISITE:** Read `../gsk-shared/SKILL.md` for auth, global flags, and security rules.
|
|
16
|
-
|
|
17
|
-
Create a new calendar event in Google Calendar or Outlook.
|
|
18
|
-
|
|
19
|
-
## Usage
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
gsk calendar create [options]
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
## Flags
|
|
26
|
-
|
|
27
|
-
| Flag | Required | Description |
|
|
28
|
-
|------|----------|-------------|
|
|
29
|
-
| `--summary` | Yes | Event title. (string) |
|
|
30
|
-
| `--start_time` | Yes | Start time in ISO 8601 format (e.g. '2026-03-07T10:00:00-08:00'). (string) |
|
|
31
|
-
| `--end_time` | Yes | End time in ISO 8601 format (e.g. '2026-03-07T11:00:00-08:00'). (string) |
|
|
32
|
-
| `--description` | No | Event description. (string) |
|
|
33
|
-
| `--location` | No | Event location. (string) |
|
|
34
|
-
| `--attendees` | No | List of attendee email addresses. (array) |
|
|
35
|
-
| `--time_zone` | No | Time zone name (e.g. 'America/Los_Angeles', 'UTC'). Default: UTC. (string) |
|
|
36
|
-
| `-a`, `--from_account` | No | Calendar account to use if multiple accounts are connected. (string) |
|
|
37
|
-
|
|
38
|
-
> **CAUTION:** This command performs a write/send operation. Double-check parameters before executing.
|
|
39
|
-
|
|
40
|
-
## See Also
|
|
41
|
-
|
|
42
|
-
- [gsk-shared](../gsk-shared/SKILL.md) — Authentication and global flags
|