Skip to content

Commit 0ea3705

Browse files
Merge pull request #28 from techops-services/fix-remove-cler-plugin-files
Fix remove clerk plugin files
2 parents 96ed315 + 5a2a101 commit 0ea3705

File tree

5 files changed

+18
-80
lines changed

5 files changed

+18
-80
lines changed

.mcp.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
2-
"mcpServers": {
3-
"dot-ai": {
4-
"command": "docker",
5-
"args": [
6-
"compose",
7-
"-f",
8-
"docker-compose-dot-ai.yaml",
9-
"run",
10-
"--rm",
11-
"--remove-orphans",
12-
"dot-ai"
13-
]
14-
}
2+
"mcpServers": {
3+
"dot-ai": {
4+
"command": "docker",
5+
"args": [
6+
"compose",
7+
"-f",
8+
"docker-compose-dot-ai.yaml",
9+
"run",
10+
"--rm",
11+
"--remove-orphans",
12+
"dot-ai"
13+
]
1514
}
15+
}
1616
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,14 @@ Visit [http://localhost:3000](http://localhost:3000) to get started.
7979
### Action Nodes
8080

8181
<!-- PLUGINS:START - Do not remove. Auto-generated by discover-plugins -->
82+
- **Clerk**: Get User, Create User, Update User, Delete User
8283
- **Discord**: Send Discord Message
8384
- **Resend**: Send Email
8485
- **SendGrid**: Send Email
8586
- **Slack**: Send Slack Message
8687
- **v0**: Create Chat, Send Message
8788
- **Web3**: Check Balance, Transfer Funds, Read Contract, Write Contract
89+
- **Webflow**: List Sites, Get Site, Publish Site
8890
<!-- PLUGINS:END -->
8991

9092
## Code Generation

plugins/clerk/components/user-card.tsx

Lines changed: 0 additions & 53 deletions
This file was deleted.

plugins/clerk/index.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { IntegrationPlugin } from "../registry";
22
import { registerIntegration } from "../registry";
3-
import { UserCard } from "./components/user-card";
43
import { ClerkIcon } from "./icon";
54

65
const clerkPlugin: IntegrationPlugin = {
@@ -47,10 +46,6 @@ const clerkPlugin: IntegrationPlugin = {
4746
{ field: "lastName", description: "Last name" },
4847
{ field: "primaryEmailAddress", description: "Primary email address" },
4948
],
50-
outputConfig: {
51-
type: "component",
52-
component: UserCard,
53-
},
5449
configFields: [
5550
{
5651
key: "userId",
@@ -75,10 +70,6 @@ const clerkPlugin: IntegrationPlugin = {
7570
{ field: "lastName", description: "Last name" },
7671
{ field: "primaryEmailAddress", description: "Primary email address" },
7772
],
78-
outputConfig: {
79-
type: "component",
80-
component: UserCard,
81-
},
8273
configFields: [
8374
{
8475
key: "emailAddress",
@@ -145,10 +136,6 @@ const clerkPlugin: IntegrationPlugin = {
145136
{ field: "lastName", description: "Last name" },
146137
{ field: "primaryEmailAddress", description: "Primary email address" },
147138
],
148-
outputConfig: {
149-
type: "component",
150-
component: UserCard,
151-
},
152139
configFields: [
153140
{
154141
key: "userId",

plugins/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@
1313
* 1. Delete the plugin directory
1414
* 2. Run: pnpm discover-plugins (or it runs automatically on build)
1515
*
16-
* Discovered plugins: discord, resend, sendgrid, slack, v0, web3
16+
* Discovered plugins: clerk, discord, resend, sendgrid, slack, v0, web3, webflow
1717
*/
1818

19+
import "./clerk";
1920
import "./discord";
2021
import "./resend";
2122
import "./sendgrid";
2223
import "./slack";
2324
import "./v0";
2425
import "./web3";
26+
import "./webflow";
2527

2628
export type {
2729
ActionConfigField,

0 commit comments

Comments
 (0)