replicas-engine 0.1.677 → 0.1.679

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.
@@ -1444,6 +1444,7 @@ var WEB_APP_PATHS = {
1444
1444
  automations: `${HOME_PATH}/automations`,
1445
1445
  environment: `${HOME_PATH}/environment`,
1446
1446
  analytics: `${HOME_PATH}/analytics`,
1447
+ memory: `${HOME_PATH}/memory`,
1447
1448
  dashboard: DASHBOARD_PATH,
1448
1449
  agents: `${DASHBOARD_PATH}/agents`,
1449
1450
  integrations: `${DASHBOARD_PATH}/integrations`,
@@ -2517,16 +2518,13 @@ Discover and execute installed marketplace tools through the workspace-scoped Ty
2517
2518
  **Reference:** \`references/PLUGINS.md\`
2518
2519
 
2519
2520
  Use this when:
2520
- - The user asks for CRM data from Attio
2521
- - The user asks to manage Calendly events, invitees, or scheduling links
2522
- - The user asks to read or change Google Ads, Docs, Drive, Search Console, or Sheets data
2523
- - The user asks for ClickHouse analytics or PostHog product data
2521
+ - The user asks to work with an installed productivity, data, engineering, or business plugin
2522
+ - The user asks to discover which external services are connected
2524
2523
  - The user asks to create or control an E2B sandbox
2525
2524
  - The user asks to invoke a connected Modal function
2526
2525
  - The user asks to query or update a connected turbopuffer namespace
2527
2526
  - The user asks for PlanetScale organizations, databases, branches, or Insights data
2528
- - The user asks to analyze text with Pangram
2529
- - The user asks for Stripe customers, payments, invoices, subscriptions, or balances`;
2527
+ - The user asks to analyze text with Pangram`;
2530
2528
  var REFERENCE8 = `# Plugins
2531
2529
 
2532
2530
  Plugins are TypeScript libraries, not MCP servers. Import \`@replicas/sdk\`; Replicas authenticates the workspace and selects the owner\u2019s personal connection first, then the most specific environment the workspace inherits from, then Global. Provider credentials, sessions, and project keys are never exposed.
@@ -3513,6 +3511,282 @@ function findGitCommitSignals(request) {
3513
3511
  return findGitCommitCommands(command).length > 0 ? ["git-commit"] : [];
3514
3512
  }
3515
3513
 
3514
+ // ../shared/src/routes/plugin-catalog.ts
3515
+ var EXPLICIT_PLUGIN_CATALOG = [
3516
+ {
3517
+ id: "attio",
3518
+ backend: "composio",
3519
+ toolkit: "attio",
3520
+ authType: "oauth",
3521
+ category: "business",
3522
+ name: "Attio",
3523
+ description: "Manage CRM records, people, companies, lists, and notes."
3524
+ },
3525
+ {
3526
+ id: "calendly",
3527
+ backend: "composio",
3528
+ toolkit: "calendly",
3529
+ authType: "oauth",
3530
+ category: "productivity",
3531
+ name: "Calendly",
3532
+ description: "Manage event types, scheduled events, invitees, and scheduling links."
3533
+ },
3534
+ {
3535
+ id: "clickhouse",
3536
+ backend: "composio",
3537
+ toolkit: "clickhouse",
3538
+ authType: "basic",
3539
+ category: "data",
3540
+ name: "ClickHouse",
3541
+ description: "Manage databases, tables, schemas, and queries."
3542
+ },
3543
+ {
3544
+ id: "cloudflare",
3545
+ backend: "composio",
3546
+ toolkit: "cloudflare_api_key",
3547
+ authType: "api_key",
3548
+ category: "data",
3549
+ name: "Cloudflare",
3550
+ description: "Manage zones, DNS records, analytics, and security settings."
3551
+ },
3552
+ {
3553
+ id: "e2b",
3554
+ toolkit: "e2b",
3555
+ backend: "native",
3556
+ authType: "api_key",
3557
+ category: "data",
3558
+ name: "E2B",
3559
+ description: "Create secure cloud sandboxes and run commands in them."
3560
+ },
3561
+ {
3562
+ id: "gmail",
3563
+ backend: "composio",
3564
+ toolkit: "gmail",
3565
+ authType: "oauth",
3566
+ category: "productivity",
3567
+ name: "Gmail",
3568
+ description: "Manage messages, threads, attachments, labels, and mailbox settings."
3569
+ },
3570
+ {
3571
+ id: "googleads",
3572
+ backend: "composio",
3573
+ toolkit: "googleads",
3574
+ authType: "oauth",
3575
+ category: "data",
3576
+ name: "Google Ads",
3577
+ description: "Manage campaigns, customers, accounts, and reporting data."
3578
+ },
3579
+ {
3580
+ id: "googledocs",
3581
+ backend: "composio",
3582
+ toolkit: "googledocs",
3583
+ authType: "oauth",
3584
+ category: "productivity",
3585
+ name: "Google Docs",
3586
+ description: "Manage documents, structure, comments, and exported content."
3587
+ },
3588
+ {
3589
+ id: "googledrive",
3590
+ backend: "composio",
3591
+ toolkit: "googledrive",
3592
+ authType: "oauth",
3593
+ category: "productivity",
3594
+ name: "Google Drive",
3595
+ description: "Manage files, folders, metadata, permissions, and shared drives."
3596
+ },
3597
+ {
3598
+ id: "googlesearch",
3599
+ backend: "composio",
3600
+ toolkit: "google_search_console",
3601
+ authType: "oauth",
3602
+ category: "data",
3603
+ name: "Google Search",
3604
+ description: "Manage Search Console performance, indexing, sites, and sitemaps."
3605
+ },
3606
+ {
3607
+ id: "googlesheets",
3608
+ backend: "composio",
3609
+ toolkit: "googlesheets",
3610
+ authType: "oauth",
3611
+ category: "productivity",
3612
+ name: "Google Sheets",
3613
+ description: "Manage spreadsheets, worksheets, ranges, tables, and charts."
3614
+ },
3615
+ {
3616
+ id: "linkedin",
3617
+ backend: "composio",
3618
+ toolkit: "linkedin",
3619
+ authType: "oauth",
3620
+ category: "business",
3621
+ name: "LinkedIn",
3622
+ description: "Manage profiles, organizations, posts, and professional activity."
3623
+ },
3624
+ {
3625
+ id: "modal",
3626
+ backend: "native",
3627
+ toolkit: "modal",
3628
+ authType: "basic",
3629
+ category: "data",
3630
+ name: "Modal",
3631
+ description: "Invoke deployed functions through Modal compute."
3632
+ },
3633
+ {
3634
+ id: "posthog",
3635
+ backend: "composio",
3636
+ toolkit: "posthog",
3637
+ authType: "api_key",
3638
+ category: "data",
3639
+ name: "PostHog",
3640
+ description: "Manage projects, events, insights, dashboards, flags, and recordings."
3641
+ },
3642
+ {
3643
+ id: "planetscale",
3644
+ toolkit: "planetscale",
3645
+ backend: "native",
3646
+ authType: "oauth",
3647
+ category: "data",
3648
+ name: "PlanetScale",
3649
+ description: "Manage organizations, databases, branches, deploy requests, and Insights."
3650
+ },
3651
+ {
3652
+ id: "stripe",
3653
+ backend: "composio",
3654
+ toolkit: "stripe",
3655
+ authType: "oauth",
3656
+ category: "business",
3657
+ name: "Stripe",
3658
+ description: "Manage customers, payments, invoices, subscriptions, and balances."
3659
+ },
3660
+ {
3661
+ id: "pangram",
3662
+ backend: "native",
3663
+ toolkit: "pangram",
3664
+ authType: "api_key",
3665
+ category: "data",
3666
+ name: "Pangram",
3667
+ description: "Analyze text for AI generation and plagiarism signals."
3668
+ },
3669
+ {
3670
+ id: "vercel",
3671
+ backend: "composio",
3672
+ toolkit: "vercel",
3673
+ authType: "api_key",
3674
+ category: "data",
3675
+ name: "Vercel",
3676
+ description: "Manage projects, deployments, logs, domains, and infrastructure."
3677
+ },
3678
+ {
3679
+ id: "turbopuffer",
3680
+ backend: "native",
3681
+ toolkit: "turbopuffer",
3682
+ authType: "api_key",
3683
+ category: "data",
3684
+ name: "turbopuffer",
3685
+ description: "Query and manage turbopuffer namespaces."
3686
+ }
3687
+ ];
3688
+ var HOSTED_COMPOSIO_PLUGIN_DEFINITIONS = [
3689
+ ["notion", "notion", "OAUTH2", true, "productivity", "Notion"],
3690
+ ["jira", "jira", "OAUTH2", true, "productivity", "Jira"],
3691
+ ["confluence", "confluence", "OAUTH2", true, "productivity", "Confluence"],
3692
+ ["googlecalendar", "googlecalendar", "OAUTH2", true, "productivity", "Google Calendar"],
3693
+ ["microsoftteams", "microsoft_teams", "OAUTH2", true, "productivity", "Microsoft Teams"],
3694
+ ["outlook", "outlook", "OAUTH2", true, "productivity", "Outlook"],
3695
+ ["bitbucket", "bitbucket", "OAUTH2", true, "data", "Bitbucket"],
3696
+ ["datadog", "datadog", "API_KEY", false, "data", "Datadog"],
3697
+ ["pagerduty", "pagerduty", "OAUTH2", true, "data", "PagerDuty"],
3698
+ ["intercom", "intercom", "OAUTH2", true, "business", "Intercom"],
3699
+ ["zendesk", "zendesk", "OAUTH2", true, "business", "Zendesk"],
3700
+ ["hubspot", "hubspot", "OAUTH2", true, "business", "HubSpot"],
3701
+ ["supabase", "supabase", "OAUTH2", true, "data", "Supabase"],
3702
+ ["figma", "figma", "OAUTH2", true, "productivity", "Figma"],
3703
+ ["launchdarkly", "launch_darkly", "API_KEY", false, "data", "LaunchDarkly"],
3704
+ ["asana", "asana", "OAUTH2", true, "productivity", "Asana"],
3705
+ ["clickup", "clickup", "OAUTH2", true, "productivity", "ClickUp"],
3706
+ ["trello", "trello", "OAUTH1", true, "productivity", "Trello"],
3707
+ ["todoist", "todoist", "OAUTH2", true, "productivity", "Todoist"],
3708
+ ["airtable", "airtable", "OAUTH2", true, "productivity", "Airtable"],
3709
+ ["coda", "coda", "API_KEY", false, "productivity", "Coda"],
3710
+ ["miro", "miro", "OAUTH2", true, "productivity", "Miro"],
3711
+ ["sharepoint", "share_point", "OAUTH2", true, "productivity", "SharePoint"],
3712
+ ["onedrive", "one_drive", "OAUTH2", true, "productivity", "OneDrive"],
3713
+ ["googleslides", "googleslides", "OAUTH2", true, "productivity", "Google Slides"],
3714
+ ["googlemeet", "googlemeet", "OAUTH2", true, "productivity", "Google Meet"],
3715
+ ["googletasks", "googletasks", "OAUTH2", true, "productivity", "Google Tasks"],
3716
+ ["dropbox", "dropbox", "OAUTH2", true, "productivity", "Dropbox"],
3717
+ ["box", "box", "OAUTH2", true, "productivity", "Box"],
3718
+ ["discord", "discord", "OAUTH2", true, "productivity", "Discord"],
3719
+ ["discordbot", "discordbot", "OAUTH2", true, "productivity", "Discord Bot"],
3720
+ ["zoom", "zoom", "OAUTH2", true, "productivity", "Zoom"],
3721
+ ["googlechat", "google_chat", "OAUTH2", false, "productivity", "Google Chat"],
3722
+ ["newrelic", "new_relic", "API_KEY", false, "data", "New Relic"],
3723
+ ["betterstack", "better_stack", "API_KEY", false, "data", "Better Stack"],
3724
+ ["incidentio", "incident_io", "API_KEY", false, "data", "incident.io"],
3725
+ ["grafana", "grafana", "BEARER_TOKEN", false, "data", "Grafana"],
3726
+ ["honeycomb", "honeycomb_mcp", "DCR_OAUTH", false, "data", "Honeycomb MCP"],
3727
+ ["bugsnag", "bugsnag", "API_KEY", false, "data", "Bugsnag"],
3728
+ ["circleci", "circleci", "API_KEY", false, "data", "CircleCI"],
3729
+ ["buildkite", "buildkite", "API_KEY", false, "data", "Buildkite"],
3730
+ ["dockerhub", "docker_hub", "API_KEY", false, "data", "Docker Hub"],
3731
+ ["digitalocean", "digital_ocean", "OAUTH2", true, "data", "DigitalOcean"],
3732
+ ["railway", "railway", "API_KEY", false, "data", "Railway"],
3733
+ ["render", "render", "API_KEY", false, "data", "Render"],
3734
+ ["firebase", "firebase", "API_KEY", false, "data", "Firebase"],
3735
+ ["cloudinary", "cloudinary", "API_KEY", false, "data", "Cloudinary"],
3736
+ ["configcat", "configcat", "API_KEY", false, "data", "ConfigCat"],
3737
+ ["googleanalytics", "google_analytics", "OAUTH2", true, "data", "Google Analytics"],
3738
+ ["googlebigquery", "googlebigquery", "OAUTH2", true, "data", "Google BigQuery"],
3739
+ ["amplitude", "amplitude", "API_KEY", false, "data", "Amplitude"],
3740
+ ["mixpanel", "mixpanel", "BASIC", false, "data", "Mixpanel"],
3741
+ ["segment", "segment", "API_KEY", false, "data", "Segment"],
3742
+ ["databricks", "databricks", "API_KEY", false, "data", "Databricks"],
3743
+ ["snowflake", "snowflake", "OAUTH2", false, "data", "Snowflake"],
3744
+ ["algolia", "algolia", "API_KEY", false, "data", "Algolia"],
3745
+ ["elasticsearch", "elasticsearch", "API_KEY", false, "data", "Elasticsearch"],
3746
+ ["salesforce", "salesforce", "OAUTH2", true, "business", "Salesforce"],
3747
+ ["pipedrive", "pipedrive", "API_KEY", false, "business", "Pipedrive"],
3748
+ ["close", "close", "API_KEY", false, "business", "Close"],
3749
+ ["apollo", "apollo", "API_KEY", false, "business", "Apollo"],
3750
+ ["gong", "gong", "OAUTH2", true, "business", "Gong"],
3751
+ ["freshdesk", "freshdesk", "API_KEY", false, "business", "Freshdesk"],
3752
+ ["helpscout", "help_scout", "OAUTH2", false, "business", "Help Scout"],
3753
+ ["servicenow", "servicenow", "BASIC", false, "business", "ServiceNow"],
3754
+ ["mailchimp", "mailchimp", "OAUTH2", true, "business", "Mailchimp"],
3755
+ ["customerio", "customerio", "API_KEY", false, "business", "Customer.io"],
3756
+ ["klaviyo", "klaviyo", "API_KEY", false, "business", "Klaviyo"],
3757
+ ["shopify", "shopify", "API_KEY", false, "business", "Shopify"],
3758
+ ["quickbooks", "quickbooks", "OAUTH2", true, "business", "QuickBooks"],
3759
+ ["xero", "xero", "OAUTH2", false, "business", "Xero"],
3760
+ ["brex", "brex", "API_KEY", false, "business", "Brex"],
3761
+ ["buffer", "buffer", "OAUTH2", false, "business", "Buffer"],
3762
+ ["canva", "canva", "OAUTH2", true, "productivity", "Canva"],
3763
+ ["webflow", "webflow", "API_KEY", false, "business", "Webflow"],
3764
+ ["firecrawl", "firecrawl", "API_KEY", false, "data", "Firecrawl"],
3765
+ ["browserbase", "browserbase_tool", "API_KEY", false, "data", "Browserbase"],
3766
+ ["exa", "exa", "API_KEY", false, "data", "Exa"],
3767
+ ["youtube", "youtube", "OAUTH2", true, "business", "YouTube"],
3768
+ ["twitter", "twitter", "OAUTH2", false, "business", "Twitter/X"],
3769
+ ["instagram", "instagram", "OAUTH2", true, "business", "Instagram"],
3770
+ ["facebook", "facebook", "OAUTH2", true, "business", "Facebook"]
3771
+ ];
3772
+ var HOSTED_COMPOSIO_PLUGINS = HOSTED_COMPOSIO_PLUGIN_DEFINITIONS.map(
3773
+ ([id, toolkit, authScheme, managedAuth, category, name]) => ({
3774
+ id,
3775
+ backend: "composio",
3776
+ toolkit,
3777
+ authType: "hosted",
3778
+ authScheme,
3779
+ managedAuth,
3780
+ category,
3781
+ name,
3782
+ description: `Use ${name} tools from workspace agents.`
3783
+ })
3784
+ );
3785
+ var PLUGIN_CATALOG = [
3786
+ ...EXPLICIT_PLUGIN_CATALOG,
3787
+ ...HOSTED_COMPOSIO_PLUGINS
3788
+ ];
3789
+
3516
3790
  // ../shared/src/routes/user.ts
3517
3791
  var PROFILE_AVATAR_MAX_SIZE_BYTES = 5 * 1024 * 1024;
3518
3792
 
@@ -6403,7 +6677,7 @@ var DEFAULT_CODEX_ARGS = [
6403
6677
  var MIN_CODEX_CLI_VERSION = "0.144.6";
6404
6678
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
6405
6679
  var codexCliVersionEnsured = null;
6406
- var ENGINE_PACKAGE_VERSION = "0.1.677";
6680
+ var ENGINE_PACKAGE_VERSION = "0.1.679";
6407
6681
  var INITIALIZE_METHOD = "initialize";
6408
6682
  var INITIALIZED_NOTIFICATION = "initialized";
6409
6683
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
@@ -7,7 +7,7 @@ import {
7
7
  headlessAgentRequestSchema,
8
8
  putPresignedFile,
9
9
  recoverCompletedTurn
10
- } from "./chunk-F3OWV2O4.js";
10
+ } from "./chunk-6VS3OIXH.js";
11
11
 
12
12
  // src/headless-agent.ts
13
13
  import { createHash } from "crypto";
package/dist/src/index.js CHANGED
@@ -190,7 +190,7 @@ import {
190
190
  serializeCanvasContentResponse,
191
191
  shellQuotePosix,
192
192
  stripAgentDiagnosticErrors
193
- } from "./chunk-F3OWV2O4.js";
193
+ } from "./chunk-6VS3OIXH.js";
194
194
 
195
195
  // src/index.ts
196
196
  import { serve } from "@hono/node-server";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.677",
3
+ "version": "0.1.679",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
@@ -0,0 +1,166 @@
1
+ // Generated from shared/src by generate-workspace-sdk-types.mjs; do not edit.
2
+ export declare const HOSTED_PLUGIN_AUTH_SCHEMES: readonly ["API_KEY", "BASIC", "BEARER_TOKEN", "DCR_OAUTH", "OAUTH1", "OAUTH2"];
3
+ export type HostedPluginAuthScheme = (typeof HOSTED_PLUGIN_AUTH_SCHEMES)[number];
4
+ export declare const PLUGIN_CATALOG: readonly [{
5
+ readonly id: "attio";
6
+ readonly backend: "composio";
7
+ readonly toolkit: "attio";
8
+ readonly authType: "oauth";
9
+ readonly category: "business";
10
+ readonly name: "Attio";
11
+ readonly description: "Manage CRM records, people, companies, lists, and notes.";
12
+ }, {
13
+ readonly id: "calendly";
14
+ readonly backend: "composio";
15
+ readonly toolkit: "calendly";
16
+ readonly authType: "oauth";
17
+ readonly category: "productivity";
18
+ readonly name: "Calendly";
19
+ readonly description: "Manage event types, scheduled events, invitees, and scheduling links.";
20
+ }, {
21
+ readonly id: "clickhouse";
22
+ readonly backend: "composio";
23
+ readonly toolkit: "clickhouse";
24
+ readonly authType: "basic";
25
+ readonly category: "data";
26
+ readonly name: "ClickHouse";
27
+ readonly description: "Manage databases, tables, schemas, and queries.";
28
+ }, {
29
+ readonly id: "cloudflare";
30
+ readonly backend: "composio";
31
+ readonly toolkit: "cloudflare_api_key";
32
+ readonly authType: "api_key";
33
+ readonly category: "data";
34
+ readonly name: "Cloudflare";
35
+ readonly description: "Manage zones, DNS records, analytics, and security settings.";
36
+ }, {
37
+ readonly id: "e2b";
38
+ readonly toolkit: "e2b";
39
+ readonly backend: "native";
40
+ readonly authType: "api_key";
41
+ readonly category: "data";
42
+ readonly name: "E2B";
43
+ readonly description: "Create secure cloud sandboxes and run commands in them.";
44
+ }, {
45
+ readonly id: "gmail";
46
+ readonly backend: "composio";
47
+ readonly toolkit: "gmail";
48
+ readonly authType: "oauth";
49
+ readonly category: "productivity";
50
+ readonly name: "Gmail";
51
+ readonly description: "Manage messages, threads, attachments, labels, and mailbox settings.";
52
+ }, {
53
+ readonly id: "googleads";
54
+ readonly backend: "composio";
55
+ readonly toolkit: "googleads";
56
+ readonly authType: "oauth";
57
+ readonly category: "data";
58
+ readonly name: "Google Ads";
59
+ readonly description: "Manage campaigns, customers, accounts, and reporting data.";
60
+ }, {
61
+ readonly id: "googledocs";
62
+ readonly backend: "composio";
63
+ readonly toolkit: "googledocs";
64
+ readonly authType: "oauth";
65
+ readonly category: "productivity";
66
+ readonly name: "Google Docs";
67
+ readonly description: "Manage documents, structure, comments, and exported content.";
68
+ }, {
69
+ readonly id: "googledrive";
70
+ readonly backend: "composio";
71
+ readonly toolkit: "googledrive";
72
+ readonly authType: "oauth";
73
+ readonly category: "productivity";
74
+ readonly name: "Google Drive";
75
+ readonly description: "Manage files, folders, metadata, permissions, and shared drives.";
76
+ }, {
77
+ readonly id: "googlesearch";
78
+ readonly backend: "composio";
79
+ readonly toolkit: "google_search_console";
80
+ readonly authType: "oauth";
81
+ readonly category: "data";
82
+ readonly name: "Google Search";
83
+ readonly description: "Manage Search Console performance, indexing, sites, and sitemaps.";
84
+ }, {
85
+ readonly id: "googlesheets";
86
+ readonly backend: "composio";
87
+ readonly toolkit: "googlesheets";
88
+ readonly authType: "oauth";
89
+ readonly category: "productivity";
90
+ readonly name: "Google Sheets";
91
+ readonly description: "Manage spreadsheets, worksheets, ranges, tables, and charts.";
92
+ }, {
93
+ readonly id: "linkedin";
94
+ readonly backend: "composio";
95
+ readonly toolkit: "linkedin";
96
+ readonly authType: "oauth";
97
+ readonly category: "business";
98
+ readonly name: "LinkedIn";
99
+ readonly description: "Manage profiles, organizations, posts, and professional activity.";
100
+ }, {
101
+ readonly id: "modal";
102
+ readonly backend: "native";
103
+ readonly toolkit: "modal";
104
+ readonly authType: "basic";
105
+ readonly category: "data";
106
+ readonly name: "Modal";
107
+ readonly description: "Invoke deployed functions through Modal compute.";
108
+ }, {
109
+ readonly id: "posthog";
110
+ readonly backend: "composio";
111
+ readonly toolkit: "posthog";
112
+ readonly authType: "api_key";
113
+ readonly category: "data";
114
+ readonly name: "PostHog";
115
+ readonly description: "Manage projects, events, insights, dashboards, flags, and recordings.";
116
+ }, {
117
+ readonly id: "planetscale";
118
+ readonly toolkit: "planetscale";
119
+ readonly backend: "native";
120
+ readonly authType: "oauth";
121
+ readonly category: "data";
122
+ readonly name: "PlanetScale";
123
+ readonly description: "Manage organizations, databases, branches, deploy requests, and Insights.";
124
+ }, {
125
+ readonly id: "stripe";
126
+ readonly backend: "composio";
127
+ readonly toolkit: "stripe";
128
+ readonly authType: "oauth";
129
+ readonly category: "business";
130
+ readonly name: "Stripe";
131
+ readonly description: "Manage customers, payments, invoices, subscriptions, and balances.";
132
+ }, {
133
+ readonly id: "pangram";
134
+ readonly backend: "native";
135
+ readonly toolkit: "pangram";
136
+ readonly authType: "api_key";
137
+ readonly category: "data";
138
+ readonly name: "Pangram";
139
+ readonly description: "Analyze text for AI generation and plagiarism signals.";
140
+ }, {
141
+ readonly id: "vercel";
142
+ readonly backend: "composio";
143
+ readonly toolkit: "vercel";
144
+ readonly authType: "api_key";
145
+ readonly category: "data";
146
+ readonly name: "Vercel";
147
+ readonly description: "Manage projects, deployments, logs, domains, and infrastructure.";
148
+ }, {
149
+ readonly id: "turbopuffer";
150
+ readonly backend: "native";
151
+ readonly toolkit: "turbopuffer";
152
+ readonly authType: "api_key";
153
+ readonly category: "data";
154
+ readonly name: "turbopuffer";
155
+ readonly description: "Query and manage turbopuffer namespaces.";
156
+ }, ...{
157
+ id: "close" | "notion" | "jira" | "confluence" | "googlecalendar" | "microsoftteams" | "outlook" | "bitbucket" | "datadog" | "pagerduty" | "intercom" | "zendesk" | "hubspot" | "supabase" | "figma" | "launchdarkly" | "asana" | "clickup" | "trello" | "todoist" | "airtable" | "coda" | "miro" | "sharepoint" | "onedrive" | "googleslides" | "googlemeet" | "googletasks" | "dropbox" | "box" | "discord" | "discordbot" | "zoom" | "googlechat" | "newrelic" | "betterstack" | "incidentio" | "grafana" | "honeycomb" | "bugsnag" | "circleci" | "buildkite" | "dockerhub" | "digitalocean" | "railway" | "render" | "firebase" | "cloudinary" | "configcat" | "googleanalytics" | "googlebigquery" | "amplitude" | "mixpanel" | "segment" | "databricks" | "snowflake" | "algolia" | "elasticsearch" | "salesforce" | "pipedrive" | "apollo" | "gong" | "freshdesk" | "helpscout" | "servicenow" | "mailchimp" | "customerio" | "klaviyo" | "shopify" | "quickbooks" | "xero" | "brex" | "buffer" | "canva" | "webflow" | "firecrawl" | "browserbase" | "exa" | "youtube" | "twitter" | "instagram" | "facebook";
158
+ backend: "composio";
159
+ toolkit: "close" | "notion" | "jira" | "confluence" | "googlecalendar" | "microsoft_teams" | "outlook" | "bitbucket" | "datadog" | "pagerduty" | "intercom" | "zendesk" | "hubspot" | "supabase" | "figma" | "launch_darkly" | "asana" | "clickup" | "trello" | "todoist" | "airtable" | "coda" | "miro" | "share_point" | "one_drive" | "googleslides" | "googlemeet" | "googletasks" | "dropbox" | "box" | "discord" | "discordbot" | "zoom" | "google_chat" | "new_relic" | "better_stack" | "incident_io" | "grafana" | "honeycomb_mcp" | "bugsnag" | "circleci" | "buildkite" | "docker_hub" | "digital_ocean" | "railway" | "render" | "firebase" | "cloudinary" | "configcat" | "google_analytics" | "googlebigquery" | "amplitude" | "mixpanel" | "segment" | "databricks" | "snowflake" | "algolia" | "elasticsearch" | "salesforce" | "pipedrive" | "apollo" | "gong" | "freshdesk" | "help_scout" | "servicenow" | "mailchimp" | "customerio" | "klaviyo" | "shopify" | "quickbooks" | "xero" | "brex" | "buffer" | "canva" | "webflow" | "firecrawl" | "browserbase_tool" | "exa" | "youtube" | "twitter" | "instagram" | "facebook";
160
+ authType: "hosted";
161
+ authScheme: "API_KEY" | "BASIC" | "BEARER_TOKEN" | "DCR_OAUTH" | "OAUTH1" | "OAUTH2";
162
+ managedAuth: boolean;
163
+ category: "data" | "productivity" | "business";
164
+ name: "Notion" | "Jira" | "Confluence" | "Google Calendar" | "Microsoft Teams" | "Outlook" | "Bitbucket" | "Datadog" | "PagerDuty" | "Intercom" | "Zendesk" | "HubSpot" | "Supabase" | "Figma" | "LaunchDarkly" | "Asana" | "ClickUp" | "Trello" | "Todoist" | "Airtable" | "Coda" | "Miro" | "SharePoint" | "OneDrive" | "Google Slides" | "Google Meet" | "Google Tasks" | "Dropbox" | "Box" | "Discord" | "Discord Bot" | "Zoom" | "Google Chat" | "New Relic" | "Better Stack" | "incident.io" | "Grafana" | "Honeycomb MCP" | "Bugsnag" | "CircleCI" | "Buildkite" | "Docker Hub" | "DigitalOcean" | "Railway" | "Render" | "Firebase" | "Cloudinary" | "ConfigCat" | "Google Analytics" | "Google BigQuery" | "Amplitude" | "Mixpanel" | "Segment" | "Databricks" | "Snowflake" | "Algolia" | "Elasticsearch" | "Salesforce" | "Pipedrive" | "Close" | "Apollo" | "Gong" | "Freshdesk" | "Help Scout" | "ServiceNow" | "Mailchimp" | "Customer.io" | "Klaviyo" | "Shopify" | "QuickBooks" | "Xero" | "Brex" | "Buffer" | "Canva" | "Webflow" | "Firecrawl" | "Browserbase" | "Exa" | "YouTube" | "Twitter/X" | "Instagram" | "Facebook";
165
+ description: string;
166
+ }[]];
@@ -1,158 +1,7 @@
1
1
  // Generated from shared/src by generate-workspace-sdk-types.mjs; do not edit.
2
2
  import type { WorkspaceNativeIntegrationStatus } from './integrations';
3
- export declare const PLUGIN_CATALOG: readonly [{
4
- readonly id: "attio";
5
- readonly backend: "composio";
6
- readonly toolkit: "attio";
7
- readonly authType: "oauth";
8
- readonly category: "business";
9
- readonly name: "Attio";
10
- readonly description: "Manage CRM records, people, companies, lists, and notes.";
11
- }, {
12
- readonly id: "calendly";
13
- readonly backend: "composio";
14
- readonly toolkit: "calendly";
15
- readonly authType: "oauth";
16
- readonly category: "productivity";
17
- readonly name: "Calendly";
18
- readonly description: "Manage event types, scheduled events, invitees, and scheduling links.";
19
- }, {
20
- readonly id: "clickhouse";
21
- readonly backend: "composio";
22
- readonly toolkit: "clickhouse";
23
- readonly authType: "basic";
24
- readonly category: "data";
25
- readonly name: "ClickHouse";
26
- readonly description: "Manage databases, tables, schemas, and queries.";
27
- }, {
28
- readonly id: "cloudflare";
29
- readonly backend: "composio";
30
- readonly toolkit: "cloudflare_api_key";
31
- readonly authType: "api_key";
32
- readonly category: "data";
33
- readonly name: "Cloudflare";
34
- readonly description: "Manage zones, DNS records, analytics, and security settings.";
35
- }, {
36
- readonly id: "e2b";
37
- readonly toolkit: "e2b";
38
- readonly backend: "native";
39
- readonly authType: "api_key";
40
- readonly category: "data";
41
- readonly name: "E2B";
42
- readonly description: "Create secure cloud sandboxes and run commands in them.";
43
- }, {
44
- readonly id: "gmail";
45
- readonly backend: "composio";
46
- readonly toolkit: "gmail";
47
- readonly authType: "oauth";
48
- readonly category: "productivity";
49
- readonly name: "Gmail";
50
- readonly description: "Manage messages, threads, attachments, labels, and mailbox settings.";
51
- }, {
52
- readonly id: "googleads";
53
- readonly backend: "composio";
54
- readonly toolkit: "googleads";
55
- readonly authType: "oauth";
56
- readonly category: "data";
57
- readonly name: "Google Ads";
58
- readonly description: "Manage campaigns, customers, accounts, and reporting data.";
59
- }, {
60
- readonly id: "googledocs";
61
- readonly backend: "composio";
62
- readonly toolkit: "googledocs";
63
- readonly authType: "oauth";
64
- readonly category: "productivity";
65
- readonly name: "Google Docs";
66
- readonly description: "Manage documents, structure, comments, and exported content.";
67
- }, {
68
- readonly id: "googledrive";
69
- readonly backend: "composio";
70
- readonly toolkit: "googledrive";
71
- readonly authType: "oauth";
72
- readonly category: "productivity";
73
- readonly name: "Google Drive";
74
- readonly description: "Manage files, folders, metadata, permissions, and shared drives.";
75
- }, {
76
- readonly id: "googlesearch";
77
- readonly backend: "composio";
78
- readonly toolkit: "google_search_console";
79
- readonly authType: "oauth";
80
- readonly category: "data";
81
- readonly name: "Google Search";
82
- readonly description: "Manage Search Console performance, indexing, sites, and sitemaps.";
83
- }, {
84
- readonly id: "googlesheets";
85
- readonly backend: "composio";
86
- readonly toolkit: "googlesheets";
87
- readonly authType: "oauth";
88
- readonly category: "productivity";
89
- readonly name: "Google Sheets";
90
- readonly description: "Manage spreadsheets, worksheets, ranges, tables, and charts.";
91
- }, {
92
- readonly id: "linkedin";
93
- readonly backend: "composio";
94
- readonly toolkit: "linkedin";
95
- readonly authType: "oauth";
96
- readonly category: "business";
97
- readonly name: "LinkedIn";
98
- readonly description: "Manage profiles, organizations, posts, and professional activity.";
99
- }, {
100
- readonly id: "modal";
101
- readonly backend: "native";
102
- readonly toolkit: "modal";
103
- readonly authType: "basic";
104
- readonly category: "data";
105
- readonly name: "Modal";
106
- readonly description: "Invoke deployed functions through Modal compute.";
107
- }, {
108
- readonly id: "posthog";
109
- readonly backend: "composio";
110
- readonly toolkit: "posthog";
111
- readonly authType: "api_key";
112
- readonly category: "data";
113
- readonly name: "PostHog";
114
- readonly description: "Manage projects, events, insights, dashboards, flags, and recordings.";
115
- }, {
116
- readonly id: "planetscale";
117
- readonly toolkit: "planetscale";
118
- readonly backend: "native";
119
- readonly authType: "oauth";
120
- readonly category: "data";
121
- readonly name: "PlanetScale";
122
- readonly description: "Manage organizations, databases, branches, deploy requests, and Insights.";
123
- }, {
124
- readonly id: "stripe";
125
- readonly backend: "composio";
126
- readonly toolkit: "stripe";
127
- readonly authType: "oauth";
128
- readonly category: "business";
129
- readonly name: "Stripe";
130
- readonly description: "Manage customers, payments, invoices, subscriptions, and balances.";
131
- }, {
132
- readonly id: "pangram";
133
- readonly backend: "native";
134
- readonly toolkit: "pangram";
135
- readonly authType: "api_key";
136
- readonly category: "data";
137
- readonly name: "Pangram";
138
- readonly description: "Analyze text for AI generation and plagiarism signals.";
139
- }, {
140
- readonly id: "vercel";
141
- readonly backend: "composio";
142
- readonly toolkit: "vercel";
143
- readonly authType: "api_key";
144
- readonly category: "data";
145
- readonly name: "Vercel";
146
- readonly description: "Manage projects, deployments, logs, domains, and infrastructure.";
147
- }, {
148
- readonly id: "turbopuffer";
149
- readonly backend: "native";
150
- readonly toolkit: "turbopuffer";
151
- readonly authType: "api_key";
152
- readonly category: "data";
153
- readonly name: "turbopuffer";
154
- readonly description: "Query and manage turbopuffer namespaces.";
155
- }];
3
+ import { PLUGIN_CATALOG, type HostedPluginAuthScheme } from './plugin-catalog';
4
+ export { PLUGIN_CATALOG } from './plugin-catalog';
156
5
  export type PluginId = (typeof PLUGIN_CATALOG)[number]['id'];
157
6
  export type PluginBackend = (typeof PLUGIN_CATALOG)[number]['backend'];
158
7
  export type NativePluginId = Extract<(typeof PLUGIN_CATALOG)[number], {
@@ -171,6 +20,8 @@ export interface PluginCatalogItem {
171
20
  backend: PluginBackend;
172
21
  toolkit: string;
173
22
  authType: PluginAuthType;
23
+ authScheme?: HostedPluginAuthScheme;
24
+ managedAuth?: boolean;
174
25
  category: PluginCategory;
175
26
  name: string;
176
27
  description: string;