-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathindex.ts
More file actions
38 lines (35 loc) · 1.02 KB
/
index.ts
File metadata and controls
38 lines (35 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* Plugins Index (Auto-Generated)
*
* This file is automatically generated by scripts/discover-plugins.mjs
* DO NOT EDIT MANUALLY - your changes will be overwritten!
*
* To add a new integration:
* 1. Create a new directory in plugins/ (e.g., plugins/my-integration/)
* 2. Add your plugin files (index.tsx, steps/, codegen/, etc.)
* 3. Run: pnpm discover-plugins (or it runs automatically on build)
*
* To remove an integration:
* 1. Delete the plugin directory
* 2. Run: pnpm discover-plugins (or it runs automatically on build)
*
* Discovered plugins: ai-gateway, firecrawl, linear, resend, slack
*/
import "./ai-gateway";
import "./firecrawl";
import "./linear";
import "./resend";
import "./slack";
export type { IntegrationPlugin } from "./registry";
// Export the registry utilities
export {
findActionById,
getActionsByCategory,
getAllActions,
getAllIntegrations,
getIntegration,
getIntegrationLabels,
getIntegrationTypes,
getSortedIntegrationTypes,
registerIntegration,
} from "./registry";