chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:34:48 +08:00
commit 77bb5bf71f
3762 changed files with 353249 additions and 0 deletions
@@ -0,0 +1,33 @@
import { posthogHelper } from '@botpress/common'
import { IntegrationDefinition } from '@botpress/sdk'
import { actionDefinitions } from 'src/definitions/actions'
export const INTEGRATION_NAME = 'browser'
export const INTEGRATION_VERSION = '0.8.8'
export default new IntegrationDefinition({
name: INTEGRATION_NAME,
title: 'Browser',
version: INTEGRATION_VERSION,
description:
'Capture screenshots and retrieve web page content with metadata for automated browsing and data extraction.',
readme: 'hub.md',
icon: 'icon.svg',
actions: actionDefinitions,
secrets: {
...posthogHelper.COMMON_SECRET_NAMES,
SCREENSHOT_API_KEY: {
description: 'ScreenShot key',
},
FIRECRAWL_API_KEY: {
description: 'FireCrawl key',
},
LOGO_API_KEY: {
description: 'Logo key',
},
},
attributes: {
category: 'Developer Tools',
repo: 'botpress',
},
})