veryfront 0.1.19 → 0.1.20
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/esm/deno.js +1 -1
- package/esm/src/integrations/_data.js +1 -1
- package/package.json +1 -1
- package/src/deno.js +1 -1
- package/src/src/integrations/_data.ts +1 -1
package/esm/deno.js
CHANGED
|
@@ -12,7 +12,7 @@ export const connectors = [
|
|
|
12
12
|
{ "name": "docs-google", "displayName": "Google Docs", "icon": "docs-google.svg", "description": "Read, create, and manage Google Docs documents", "auth": { "type": "oauth2", "provider": "google", "authorizationUrl": "https://accounts.google.com/o/oauth2/v2/auth", "tokenUrl": "https://oauth2.googleapis.com/token", "scopes": ["https://www.googleapis.com/auth/documents.readonly", "https://www.googleapis.com/auth/documents", "https://www.googleapis.com/auth/drive.readonly"], "requiredApis": [{ "name": "Google Docs API", "enableUrl": "https://console.cloud.google.com/apis/library/docs.googleapis.com" }, { "name": "Google Drive API", "enableUrl": "https://console.cloud.google.com/apis/library/drive.googleapis.com" }] }, "envVars": [{ "name": "GOOGLE_CLIENT_ID", "description": "Google OAuth Client ID", "required": true, "sensitive": false, "docsUrl": "https://console.cloud.google.com/apis/credentials" }, { "name": "GOOGLE_CLIENT_SECRET", "description": "Google OAuth Client Secret", "required": true, "sensitive": true, "docsUrl": "https://console.cloud.google.com/apis/credentials" }], "tools": [{ "id": "list-documents", "name": "List Documents", "description": "List recent Google Docs documents from Drive", "requiresWrite": false }, { "id": "get-document", "name": "Get Document", "description": "Get document content and metadata", "requiresWrite": false }, { "id": "create-document", "name": "Create Document", "description": "Create a new document with optional initial content", "requiresWrite": true }, { "id": "update-document", "name": "Update Document", "description": "Update document content using batch requests", "requiresWrite": true }, { "id": "search-documents", "name": "Search Documents", "description": "Search for documents by query string", "requiresWrite": false }], "prompts": [{ "id": "summarize-doc", "title": "Summarize a document", "prompt": "Read a Google Docs document and provide a concise summary of its contents, key points, and main themes.", "category": "productivity", "icon": "file-text" }, { "id": "create-report", "title": "Create a report document", "prompt": "Create a new Google Docs document with a well-formatted report including headings, bullet points, and structured content.", "category": "productivity", "icon": "plus" }, { "id": "edit-document", "title": "Edit a document", "prompt": "Update an existing Google Docs document with new content, formatting changes, or corrections.", "category": "productivity", "icon": "edit" }], "suggestedWith": ["gmail", "calendar", "drive", "sheets"] },
|
|
13
13
|
{ "name": "drive", "displayName": "Google Drive", "icon": "drive.svg", "description": "Access, search, and manage files and folders in Google Drive", "auth": { "type": "oauth2", "provider": "google", "authorizationUrl": "https://accounts.google.com/o/oauth2/v2/auth", "tokenUrl": "https://oauth2.googleapis.com/token", "scopes": ["https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/drive.file"], "requiredApis": [{ "name": "Google Drive API", "enableUrl": "https://console.cloud.google.com/apis/library/drive.googleapis.com" }] }, "envVars": [{ "name": "GOOGLE_CLIENT_ID", "description": "Google OAuth Client ID", "required": true, "sensitive": false, "docsUrl": "https://console.cloud.google.com/apis/credentials" }, { "name": "GOOGLE_CLIENT_SECRET", "description": "Google OAuth Client Secret", "required": true, "sensitive": true, "docsUrl": "https://console.cloud.google.com/apis/credentials" }], "tools": [{ "id": "list-files", "name": "List Files", "description": "List files and folders in a Google Drive folder or root", "requiresWrite": false }, { "id": "get-file", "name": "Get File", "description": "Get metadata and details about a specific file or folder", "requiresWrite": false }, { "id": "search-files", "name": "Search Files", "description": "Search for files and folders using queries", "requiresWrite": false }, { "id": "create-folder", "name": "Create Folder", "description": "Create a new folder in Google Drive", "requiresWrite": true }, { "id": "upload-file", "name": "Upload File", "description": "Upload or create a file in Google Drive", "requiresWrite": true }], "prompts": [{ "id": "organize-files", "title": "Organize Drive files", "prompt": "Help me organize files in Google Drive by creating folders and moving files based on file types or names.", "category": "productivity", "icon": "folder" }, { "id": "find-document", "title": "Find a document", "prompt": "Search Google Drive for a specific file or document by name, type, or content.", "category": "productivity", "icon": "search" }, { "id": "backup-files", "title": "Create backup structure", "prompt": "Create a backup folder structure in Google Drive and organize important files.", "category": "productivity", "icon": "upload" }], "suggestedWith": ["gmail", "calendar", "sheets"] },
|
|
14
14
|
{ "name": "dropbox", "displayName": "Dropbox", "icon": "dropbox.svg", "description": "Access, search, and manage files in your Dropbox storage", "auth": { "type": "oauth2", "provider": "dropbox", "authorizationUrl": "https://www.dropbox.com/oauth2/authorize", "tokenUrl": "https://api.dropboxapi.com/oauth2/token", "scopes": ["files.content.read", "files.content.write", "files.metadata.read", "files.metadata.write", "account_info.read"], "tokenAuthMethod": "request_body", "supportsRefreshToken": true, "requiredApis": [{ "name": "Dropbox App", "enableUrl": "https://www.dropbox.com/developers/apps" }] }, "envVars": [{ "name": "DROPBOX_APP_KEY", "description": "Dropbox App Key (Client ID)", "required": true, "sensitive": false, "docsUrl": "https://www.dropbox.com/developers/apps" }, { "name": "DROPBOX_APP_SECRET", "description": "Dropbox App Secret", "required": true, "sensitive": true, "docsUrl": "https://www.dropbox.com/developers/apps" }], "tools": [{ "id": "list-files", "name": "List Files", "description": "List files and folders in a Dropbox folder", "requiresWrite": false }, { "id": "get-file", "name": "Get File", "description": "Get file metadata and optionally download file content", "requiresWrite": false }, { "id": "upload-file", "name": "Upload File", "description": "Upload or update a file in Dropbox", "requiresWrite": true }, { "id": "search-files", "name": "Search Files", "description": "Search for files and folders by name or content", "requiresWrite": false }, { "id": "get-account", "name": "Get Account Info", "description": "Get current user account information and storage usage", "requiresWrite": false }], "prompts": [{ "id": "find-documents", "title": "Find my documents", "prompt": "Search my Dropbox for specific documents or files by name or content.", "category": "productivity", "icon": "search" }, { "id": "organize-files", "title": "Organize files", "prompt": "Help me organize and manage files in my Dropbox, including moving, copying, or cleaning up duplicates.", "category": "productivity", "icon": "folder" }, { "id": "backup-file", "title": "Backup a file", "prompt": "Upload and backup a file to my Dropbox storage.", "category": "productivity", "icon": "upload" }, { "id": "check-storage", "title": "Check storage", "prompt": "Check my Dropbox storage usage and available space.", "category": "productivity", "icon": "database" }], "suggestedWith": ["notion", "gmail", "drive"] },
|
|
15
|
-
{ "name": "figma", "displayName": "Figma", "icon": "figma.svg", "description": "Access Figma designs, files, comments, and collaborate on design projects", "auth": { "type": "oauth2", "provider": "figma", "authorizationUrl": "https://www.figma.com/oauth", "tokenUrl": "https://
|
|
15
|
+
{ "name": "figma", "displayName": "Figma", "icon": "figma.svg", "description": "Access Figma designs, files, comments, and collaborate on design projects", "auth": { "type": "oauth2", "provider": "figma", "authorizationUrl": "https://www.figma.com/oauth", "tokenUrl": "https://api.figma.com/v1/oauth/token", "scopes": ["file_content:read"], "tokenAuthMethod": "client_secret_basic", "requiredApis": [{ "name": "Figma OAuth App", "enableUrl": "https://www.figma.com/developers/apps" }] }, "envVars": [{ "name": "FIGMA_CLIENT_ID", "description": "Figma OAuth Client ID (from your app settings)", "required": true, "sensitive": false, "docsUrl": "https://www.figma.com/developers/apps" }, { "name": "FIGMA_CLIENT_SECRET", "description": "Figma OAuth Client Secret", "required": true, "sensitive": true, "docsUrl": "https://www.figma.com/developers/apps" }], "tools": [{ "id": "list-files", "name": "List Files", "description": "List recent Figma files accessible to the user", "requiresWrite": false }, { "id": "get-file", "name": "Get File", "description": "Get detailed information about a Figma file including components and styles", "requiresWrite": false }, { "id": "get-comments", "name": "Get Comments", "description": "Get all comments on a Figma file", "requiresWrite": false }, { "id": "post-comment", "name": "Post Comment", "description": "Post a comment on a Figma file", "requiresWrite": true }, { "id": "list-projects", "name": "List Projects", "description": "List all projects in a team", "requiresWrite": false }], "prompts": [{ "id": "review-design", "title": "Review a design", "prompt": "Review a Figma design file and provide feedback on the components, layout, and design system usage.", "category": "design", "icon": "eye" }, { "id": "summarize-comments", "title": "Summarize comments", "prompt": "Read all comments on a Figma file and summarize the feedback, action items, and unresolved discussions.", "category": "design", "icon": "message" }, { "id": "extract-components", "title": "Extract components", "prompt": "List all components in a Figma file and describe their structure, variants, and properties.", "category": "design", "icon": "component" }, { "id": "design-feedback", "title": "Give design feedback", "prompt": "Review the design file and post constructive feedback as comments on specific elements.", "category": "design", "icon": "plus" }], "suggestedWith": ["linear", "slack", "notion"] },
|
|
16
16
|
{ "name": "freshdesk", "displayName": "Freshdesk", "icon": "freshdesk.svg", "description": "Manage customer support tickets and contacts in Freshdesk", "auth": { "type": "oauth2", "provider": "freshdesk", "authorizationUrl": "https://accounts.freshworks.com/authorize", "tokenUrl": "https://accounts.freshworks.com/oauth/token", "scopes": ["freshdesk"], "requiredApis": [{ "name": "Freshdesk Developer Portal", "enableUrl": "https://developers.freshdesk.com/apps/" }] }, "envVars": [{ "name": "FRESHDESK_CLIENT_ID", "description": "Freshdesk OAuth Client ID", "required": true, "sensitive": false, "docsUrl": "https://developers.freshdesk.com/api/" }, { "name": "FRESHDESK_CLIENT_SECRET", "description": "Freshdesk OAuth Client Secret", "required": true, "sensitive": true, "docsUrl": "https://developers.freshdesk.com/api/" }], "tools": [{ "id": "list-tickets", "name": "List Tickets", "description": "List support tickets from Freshdesk", "requiresWrite": false }, { "id": "get-ticket", "name": "Get Ticket", "description": "Get details of a specific ticket", "requiresWrite": false }, { "id": "create-ticket", "name": "Create Ticket", "description": "Create a new support ticket", "requiresWrite": true }, { "id": "update-ticket", "name": "Update Ticket", "description": "Update an existing ticket", "requiresWrite": true }, { "id": "list-contacts", "name": "List Contacts", "description": "List customer contacts in Freshdesk", "requiresWrite": false }], "prompts": [{ "id": "my-tickets", "title": "Show my tickets", "prompt": "List all open support tickets assigned to me with their priority and status.", "category": "support", "icon": "inbox" }, { "id": "create-ticket", "title": "Create a ticket", "prompt": "Create a new support ticket with a subject, description, priority, and contact.", "category": "support", "icon": "plus" }], "suggestedWith": ["slack", "intercom", "zendesk"] },
|
|
17
17
|
{ "name": "github", "displayName": "GitHub", "icon": "github.svg", "description": "Manage repositories, issues, and pull requests", "auth": { "type": "oauth2", "provider": "github", "authorizationUrl": "https://github.com/login/oauth/authorize", "tokenUrl": "https://github.com/login/oauth/access_token", "scopes": ["repo", "read:user", "read:org"] }, "envVars": [{ "name": "GITHUB_CLIENT_ID", "description": "GitHub OAuth App Client ID", "required": true, "sensitive": false, "docsUrl": "https://github.com/settings/developers" }, { "name": "GITHUB_CLIENT_SECRET", "description": "GitHub OAuth App Client Secret", "required": true, "sensitive": true, "docsUrl": "https://github.com/settings/developers" }], "tools": [{ "id": "list-repos", "name": "List Repositories", "description": "Get list of user's repositories", "requiresWrite": false }, { "id": "list-prs", "name": "List Pull Requests", "description": "Get open pull requests", "requiresWrite": false }, { "id": "create-issue", "name": "Create Issue", "description": "Create a new issue in a repository", "requiresWrite": true }, { "id": "get-pr-diff", "name": "Get PR Diff", "description": "Get the diff for a pull request", "requiresWrite": false }], "prompts": [{ "id": "review-prs", "title": "Review my open PRs", "prompt": "Show me my open pull requests and help me review them. Summarize the changes and any comments.", "category": "development", "icon": "git-pull-request" }, { "id": "create-issue", "title": "Create GitHub issue", "prompt": "Help me create a new GitHub issue with a clear description and appropriate labels.", "category": "development", "icon": "circle-dot" }, { "id": "summarize-commits", "title": "Summarize recent commits", "prompt": "Summarize the recent commits in my repository and highlight significant changes.", "category": "development", "icon": "git-commit" }], "suggestedWith": ["jira", "slack"] },
|
|
18
18
|
{ "name": "gitlab", "displayName": "GitLab", "icon": "gitlab.svg", "description": "Search and manage GitLab issues, merge requests, and projects", "auth": { "type": "oauth2", "provider": "gitlab", "authorizationUrl": "https://gitlab.com/oauth/authorize", "tokenUrl": "https://gitlab.com/oauth/token", "scopes": ["api", "read_user", "read_repository"], "tokenAuthMethod": "body", "requiredApis": [{ "name": "GitLab Application", "enableUrl": "https://gitlab.com/-/profile/applications" }] }, "envVars": [{ "name": "GITLAB_CLIENT_ID", "description": "GitLab OAuth Application ID", "required": true, "sensitive": false, "docsUrl": "https://docs.gitlab.com/ee/api/oauth2.html" }, { "name": "GITLAB_CLIENT_SECRET", "description": "GitLab OAuth Application Secret", "required": true, "sensitive": true, "docsUrl": "https://docs.gitlab.com/ee/api/oauth2.html" }], "tools": [{ "id": "search-issues", "name": "Search Issues", "description": "Search for issues across projects", "requiresWrite": false }, { "id": "get-issue", "name": "Get Issue", "description": "Get detailed information about a specific issue", "requiresWrite": false }, { "id": "create-issue", "name": "Create Issue", "description": "Create a new issue in a project", "requiresWrite": true }, { "id": "list-merge-requests", "name": "List Merge Requests", "description": "List merge requests for a project or across projects", "requiresWrite": false }, { "id": "list-projects", "name": "List Projects", "description": "List accessible GitLab projects", "requiresWrite": false }], "prompts": [{ "id": "find-issues", "title": "Find my issues", "prompt": "Search for issues assigned to me that are open. Show me the most important ones.", "category": "development", "icon": "bug" }, { "id": "review-mrs", "title": "Review merge requests", "prompt": "Show me all open merge requests that need my review. Summarize what each one does.", "category": "development", "icon": "git-merge" }, { "id": "create-bug-report", "title": "Create bug report", "prompt": "Help me create a detailed bug report issue with steps to reproduce, expected vs actual behavior.", "category": "development", "icon": "plus" }, { "id": "project-status", "title": "Project status", "prompt": "Give me a summary of my projects: open issues, merge requests, and recent activity.", "category": "development", "icon": "list" }], "suggestedWith": ["github", "jira", "slack"] },
|
package/package.json
CHANGED
package/src/deno.js
CHANGED
|
@@ -15,7 +15,7 @@ export const connectors: IntegrationConfig[] = [
|
|
|
15
15
|
{"name":"docs-google","displayName":"Google Docs","icon":"docs-google.svg","description":"Read, create, and manage Google Docs documents","auth":{"type":"oauth2","provider":"google","authorizationUrl":"https://accounts.google.com/o/oauth2/v2/auth","tokenUrl":"https://oauth2.googleapis.com/token","scopes":["https://www.googleapis.com/auth/documents.readonly","https://www.googleapis.com/auth/documents","https://www.googleapis.com/auth/drive.readonly"],"requiredApis":[{"name":"Google Docs API","enableUrl":"https://console.cloud.google.com/apis/library/docs.googleapis.com"},{"name":"Google Drive API","enableUrl":"https://console.cloud.google.com/apis/library/drive.googleapis.com"}]},"envVars":[{"name":"GOOGLE_CLIENT_ID","description":"Google OAuth Client ID","required":true,"sensitive":false,"docsUrl":"https://console.cloud.google.com/apis/credentials"},{"name":"GOOGLE_CLIENT_SECRET","description":"Google OAuth Client Secret","required":true,"sensitive":true,"docsUrl":"https://console.cloud.google.com/apis/credentials"}],"tools":[{"id":"list-documents","name":"List Documents","description":"List recent Google Docs documents from Drive","requiresWrite":false},{"id":"get-document","name":"Get Document","description":"Get document content and metadata","requiresWrite":false},{"id":"create-document","name":"Create Document","description":"Create a new document with optional initial content","requiresWrite":true},{"id":"update-document","name":"Update Document","description":"Update document content using batch requests","requiresWrite":true},{"id":"search-documents","name":"Search Documents","description":"Search for documents by query string","requiresWrite":false}],"prompts":[{"id":"summarize-doc","title":"Summarize a document","prompt":"Read a Google Docs document and provide a concise summary of its contents, key points, and main themes.","category":"productivity","icon":"file-text"},{"id":"create-report","title":"Create a report document","prompt":"Create a new Google Docs document with a well-formatted report including headings, bullet points, and structured content.","category":"productivity","icon":"plus"},{"id":"edit-document","title":"Edit a document","prompt":"Update an existing Google Docs document with new content, formatting changes, or corrections.","category":"productivity","icon":"edit"}],"suggestedWith":["gmail","calendar","drive","sheets"]},
|
|
16
16
|
{"name":"drive","displayName":"Google Drive","icon":"drive.svg","description":"Access, search, and manage files and folders in Google Drive","auth":{"type":"oauth2","provider":"google","authorizationUrl":"https://accounts.google.com/o/oauth2/v2/auth","tokenUrl":"https://oauth2.googleapis.com/token","scopes":["https://www.googleapis.com/auth/drive.readonly","https://www.googleapis.com/auth/drive.file"],"requiredApis":[{"name":"Google Drive API","enableUrl":"https://console.cloud.google.com/apis/library/drive.googleapis.com"}]},"envVars":[{"name":"GOOGLE_CLIENT_ID","description":"Google OAuth Client ID","required":true,"sensitive":false,"docsUrl":"https://console.cloud.google.com/apis/credentials"},{"name":"GOOGLE_CLIENT_SECRET","description":"Google OAuth Client Secret","required":true,"sensitive":true,"docsUrl":"https://console.cloud.google.com/apis/credentials"}],"tools":[{"id":"list-files","name":"List Files","description":"List files and folders in a Google Drive folder or root","requiresWrite":false},{"id":"get-file","name":"Get File","description":"Get metadata and details about a specific file or folder","requiresWrite":false},{"id":"search-files","name":"Search Files","description":"Search for files and folders using queries","requiresWrite":false},{"id":"create-folder","name":"Create Folder","description":"Create a new folder in Google Drive","requiresWrite":true},{"id":"upload-file","name":"Upload File","description":"Upload or create a file in Google Drive","requiresWrite":true}],"prompts":[{"id":"organize-files","title":"Organize Drive files","prompt":"Help me organize files in Google Drive by creating folders and moving files based on file types or names.","category":"productivity","icon":"folder"},{"id":"find-document","title":"Find a document","prompt":"Search Google Drive for a specific file or document by name, type, or content.","category":"productivity","icon":"search"},{"id":"backup-files","title":"Create backup structure","prompt":"Create a backup folder structure in Google Drive and organize important files.","category":"productivity","icon":"upload"}],"suggestedWith":["gmail","calendar","sheets"]},
|
|
17
17
|
{"name":"dropbox","displayName":"Dropbox","icon":"dropbox.svg","description":"Access, search, and manage files in your Dropbox storage","auth":{"type":"oauth2","provider":"dropbox","authorizationUrl":"https://www.dropbox.com/oauth2/authorize","tokenUrl":"https://api.dropboxapi.com/oauth2/token","scopes":["files.content.read","files.content.write","files.metadata.read","files.metadata.write","account_info.read"],"tokenAuthMethod":"request_body","supportsRefreshToken":true,"requiredApis":[{"name":"Dropbox App","enableUrl":"https://www.dropbox.com/developers/apps"}]},"envVars":[{"name":"DROPBOX_APP_KEY","description":"Dropbox App Key (Client ID)","required":true,"sensitive":false,"docsUrl":"https://www.dropbox.com/developers/apps"},{"name":"DROPBOX_APP_SECRET","description":"Dropbox App Secret","required":true,"sensitive":true,"docsUrl":"https://www.dropbox.com/developers/apps"}],"tools":[{"id":"list-files","name":"List Files","description":"List files and folders in a Dropbox folder","requiresWrite":false},{"id":"get-file","name":"Get File","description":"Get file metadata and optionally download file content","requiresWrite":false},{"id":"upload-file","name":"Upload File","description":"Upload or update a file in Dropbox","requiresWrite":true},{"id":"search-files","name":"Search Files","description":"Search for files and folders by name or content","requiresWrite":false},{"id":"get-account","name":"Get Account Info","description":"Get current user account information and storage usage","requiresWrite":false}],"prompts":[{"id":"find-documents","title":"Find my documents","prompt":"Search my Dropbox for specific documents or files by name or content.","category":"productivity","icon":"search"},{"id":"organize-files","title":"Organize files","prompt":"Help me organize and manage files in my Dropbox, including moving, copying, or cleaning up duplicates.","category":"productivity","icon":"folder"},{"id":"backup-file","title":"Backup a file","prompt":"Upload and backup a file to my Dropbox storage.","category":"productivity","icon":"upload"},{"id":"check-storage","title":"Check storage","prompt":"Check my Dropbox storage usage and available space.","category":"productivity","icon":"database"}],"suggestedWith":["notion","gmail","drive"]},
|
|
18
|
-
{"name":"figma","displayName":"Figma","icon":"figma.svg","description":"Access Figma designs, files, comments, and collaborate on design projects","auth":{"type":"oauth2","provider":"figma","authorizationUrl":"https://www.figma.com/oauth","tokenUrl":"https://
|
|
18
|
+
{"name":"figma","displayName":"Figma","icon":"figma.svg","description":"Access Figma designs, files, comments, and collaborate on design projects","auth":{"type":"oauth2","provider":"figma","authorizationUrl":"https://www.figma.com/oauth","tokenUrl":"https://api.figma.com/v1/oauth/token","scopes":["file_content:read"],"tokenAuthMethod":"client_secret_basic","requiredApis":[{"name":"Figma OAuth App","enableUrl":"https://www.figma.com/developers/apps"}]},"envVars":[{"name":"FIGMA_CLIENT_ID","description":"Figma OAuth Client ID (from your app settings)","required":true,"sensitive":false,"docsUrl":"https://www.figma.com/developers/apps"},{"name":"FIGMA_CLIENT_SECRET","description":"Figma OAuth Client Secret","required":true,"sensitive":true,"docsUrl":"https://www.figma.com/developers/apps"}],"tools":[{"id":"list-files","name":"List Files","description":"List recent Figma files accessible to the user","requiresWrite":false},{"id":"get-file","name":"Get File","description":"Get detailed information about a Figma file including components and styles","requiresWrite":false},{"id":"get-comments","name":"Get Comments","description":"Get all comments on a Figma file","requiresWrite":false},{"id":"post-comment","name":"Post Comment","description":"Post a comment on a Figma file","requiresWrite":true},{"id":"list-projects","name":"List Projects","description":"List all projects in a team","requiresWrite":false}],"prompts":[{"id":"review-design","title":"Review a design","prompt":"Review a Figma design file and provide feedback on the components, layout, and design system usage.","category":"design","icon":"eye"},{"id":"summarize-comments","title":"Summarize comments","prompt":"Read all comments on a Figma file and summarize the feedback, action items, and unresolved discussions.","category":"design","icon":"message"},{"id":"extract-components","title":"Extract components","prompt":"List all components in a Figma file and describe their structure, variants, and properties.","category":"design","icon":"component"},{"id":"design-feedback","title":"Give design feedback","prompt":"Review the design file and post constructive feedback as comments on specific elements.","category":"design","icon":"plus"}],"suggestedWith":["linear","slack","notion"]},
|
|
19
19
|
{"name":"freshdesk","displayName":"Freshdesk","icon":"freshdesk.svg","description":"Manage customer support tickets and contacts in Freshdesk","auth":{"type":"oauth2","provider":"freshdesk","authorizationUrl":"https://accounts.freshworks.com/authorize","tokenUrl":"https://accounts.freshworks.com/oauth/token","scopes":["freshdesk"],"requiredApis":[{"name":"Freshdesk Developer Portal","enableUrl":"https://developers.freshdesk.com/apps/"}]},"envVars":[{"name":"FRESHDESK_CLIENT_ID","description":"Freshdesk OAuth Client ID","required":true,"sensitive":false,"docsUrl":"https://developers.freshdesk.com/api/"},{"name":"FRESHDESK_CLIENT_SECRET","description":"Freshdesk OAuth Client Secret","required":true,"sensitive":true,"docsUrl":"https://developers.freshdesk.com/api/"}],"tools":[{"id":"list-tickets","name":"List Tickets","description":"List support tickets from Freshdesk","requiresWrite":false},{"id":"get-ticket","name":"Get Ticket","description":"Get details of a specific ticket","requiresWrite":false},{"id":"create-ticket","name":"Create Ticket","description":"Create a new support ticket","requiresWrite":true},{"id":"update-ticket","name":"Update Ticket","description":"Update an existing ticket","requiresWrite":true},{"id":"list-contacts","name":"List Contacts","description":"List customer contacts in Freshdesk","requiresWrite":false}],"prompts":[{"id":"my-tickets","title":"Show my tickets","prompt":"List all open support tickets assigned to me with their priority and status.","category":"support","icon":"inbox"},{"id":"create-ticket","title":"Create a ticket","prompt":"Create a new support ticket with a subject, description, priority, and contact.","category":"support","icon":"plus"}],"suggestedWith":["slack","intercom","zendesk"]},
|
|
20
20
|
{"name":"github","displayName":"GitHub","icon":"github.svg","description":"Manage repositories, issues, and pull requests","auth":{"type":"oauth2","provider":"github","authorizationUrl":"https://github.com/login/oauth/authorize","tokenUrl":"https://github.com/login/oauth/access_token","scopes":["repo","read:user","read:org"]},"envVars":[{"name":"GITHUB_CLIENT_ID","description":"GitHub OAuth App Client ID","required":true,"sensitive":false,"docsUrl":"https://github.com/settings/developers"},{"name":"GITHUB_CLIENT_SECRET","description":"GitHub OAuth App Client Secret","required":true,"sensitive":true,"docsUrl":"https://github.com/settings/developers"}],"tools":[{"id":"list-repos","name":"List Repositories","description":"Get list of user's repositories","requiresWrite":false},{"id":"list-prs","name":"List Pull Requests","description":"Get open pull requests","requiresWrite":false},{"id":"create-issue","name":"Create Issue","description":"Create a new issue in a repository","requiresWrite":true},{"id":"get-pr-diff","name":"Get PR Diff","description":"Get the diff for a pull request","requiresWrite":false}],"prompts":[{"id":"review-prs","title":"Review my open PRs","prompt":"Show me my open pull requests and help me review them. Summarize the changes and any comments.","category":"development","icon":"git-pull-request"},{"id":"create-issue","title":"Create GitHub issue","prompt":"Help me create a new GitHub issue with a clear description and appropriate labels.","category":"development","icon":"circle-dot"},{"id":"summarize-commits","title":"Summarize recent commits","prompt":"Summarize the recent commits in my repository and highlight significant changes.","category":"development","icon":"git-commit"}],"suggestedWith":["jira","slack"]},
|
|
21
21
|
{"name":"gitlab","displayName":"GitLab","icon":"gitlab.svg","description":"Search and manage GitLab issues, merge requests, and projects","auth":{"type":"oauth2","provider":"gitlab","authorizationUrl":"https://gitlab.com/oauth/authorize","tokenUrl":"https://gitlab.com/oauth/token","scopes":["api","read_user","read_repository"],"tokenAuthMethod":"body","requiredApis":[{"name":"GitLab Application","enableUrl":"https://gitlab.com/-/profile/applications"}]},"envVars":[{"name":"GITLAB_CLIENT_ID","description":"GitLab OAuth Application ID","required":true,"sensitive":false,"docsUrl":"https://docs.gitlab.com/ee/api/oauth2.html"},{"name":"GITLAB_CLIENT_SECRET","description":"GitLab OAuth Application Secret","required":true,"sensitive":true,"docsUrl":"https://docs.gitlab.com/ee/api/oauth2.html"}],"tools":[{"id":"search-issues","name":"Search Issues","description":"Search for issues across projects","requiresWrite":false},{"id":"get-issue","name":"Get Issue","description":"Get detailed information about a specific issue","requiresWrite":false},{"id":"create-issue","name":"Create Issue","description":"Create a new issue in a project","requiresWrite":true},{"id":"list-merge-requests","name":"List Merge Requests","description":"List merge requests for a project or across projects","requiresWrite":false},{"id":"list-projects","name":"List Projects","description":"List accessible GitLab projects","requiresWrite":false}],"prompts":[{"id":"find-issues","title":"Find my issues","prompt":"Search for issues assigned to me that are open. Show me the most important ones.","category":"development","icon":"bug"},{"id":"review-mrs","title":"Review merge requests","prompt":"Show me all open merge requests that need my review. Summarize what each one does.","category":"development","icon":"git-merge"},{"id":"create-bug-report","title":"Create bug report","prompt":"Help me create a detailed bug report issue with steps to reproduce, expected vs actual behavior.","category":"development","icon":"plus"},{"id":"project-status","title":"Project status","prompt":"Give me a summary of my projects: open issues, merge requests, and recent activity.","category":"development","icon":"list"}],"suggestedWith":["github","jira","slack"]},
|