@webiny/mcp 6.1.0-beta.0 → 6.1.0-beta.2
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/agents/claude.d.ts +2 -0
- package/agents/claude.js +6 -0
- package/agents/claude.js.map +1 -1
- package/agents/cline.d.ts +2 -0
- package/agents/cline.js +6 -0
- package/agents/cline.js.map +1 -1
- package/agents/copilot.d.ts +2 -0
- package/agents/copilot.js +7 -0
- package/agents/copilot.js.map +1 -1
- package/agents/cursor.d.ts +2 -0
- package/agents/cursor.js +6 -0
- package/agents/cursor.js.map +1 -1
- package/agents/discover.d.ts +3 -0
- package/agents/discover.js +29 -0
- package/agents/discover.js.map +1 -0
- package/agents/instructions.d.ts +3 -1
- package/agents/instructions.js +15 -2
- package/agents/instructions.js.map +1 -1
- package/agents/kiro.d.ts +2 -0
- package/agents/kiro.js +6 -0
- package/agents/kiro.js.map +1 -1
- package/agents/opencode.d.ts +2 -0
- package/agents/opencode.js +7 -0
- package/agents/opencode.js.map +1 -1
- package/agents/types.d.ts +16 -0
- package/agents/types.js +3 -0
- package/agents/types.js.map +1 -0
- package/agents/windsurf.d.ts +2 -0
- package/agents/windsurf.js +6 -0
- package/agents/windsurf.js.map +1 -1
- package/cli/ConfigureMcp.js +21 -6
- package/cli/ConfigureMcp.js.map +1 -1
- package/package.json +3 -3
- package/skills/admin/admin-architect/SKILL.md +188 -0
- package/skills/admin/admin-permissions/SKILL.md +159 -0
- package/skills/api/api-architect/SKILL.md +548 -60
- package/skills/api/event-handler-pattern/SKILL.md +191 -23
- package/skills/api/graphql-api/SKILL.md +227 -31
- package/skills/api/permissions/SKILL.md +291 -0
- package/skills/api/use-case-pattern/SKILL.md +347 -12
- package/skills/api/v5-to-v6-migration/SKILL.md +416 -0
- package/skills/generated/admin/SKILL.md +1 -1
- package/skills/generated/admin/aco/SKILL.md +1 -1
- package/skills/generated/admin/build-params/SKILL.md +1 -1
- package/skills/generated/admin/cms/SKILL.md +1 -1
- package/skills/generated/admin/configs/SKILL.md +1 -1
- package/skills/generated/admin/env-config/SKILL.md +1 -1
- package/skills/generated/admin/form/SKILL.md +1 -1
- package/skills/generated/admin/graphql-client/SKILL.md +1 -1
- package/skills/generated/admin/lexical/SKILL.md +1 -1
- package/skills/generated/admin/local-storage/SKILL.md +1 -1
- package/skills/generated/admin/router/SKILL.md +1 -1
- package/skills/generated/admin/security/SKILL.md +1 -1
- package/skills/generated/admin/tenancy/SKILL.md +1 -1
- package/skills/generated/admin/ui/SKILL.md +1 -1
- package/skills/generated/admin/website-builder/SKILL.md +1 -1
- package/skills/generated/api/SKILL.md +1 -1
- package/skills/generated/api/aco/SKILL.md +1 -1
- package/skills/generated/api/build-params/SKILL.md +1 -1
- package/skills/generated/api/cms/SKILL.md +1 -1
- package/skills/generated/api/event-publisher/SKILL.md +1 -1
- package/skills/generated/api/file-manager/SKILL.md +1 -1
- package/skills/generated/api/graphql/SKILL.md +1 -1
- package/skills/generated/api/key-value-store/SKILL.md +1 -1
- package/skills/generated/api/logger/SKILL.md +1 -1
- package/skills/generated/api/opensearch/SKILL.md +1 -1
- package/skills/generated/api/scheduler/SKILL.md +1 -1
- package/skills/generated/api/security/SKILL.md +1 -1
- package/skills/generated/api/system/SKILL.md +1 -1
- package/skills/generated/api/tasks/SKILL.md +1 -1
- package/skills/generated/api/tenancy/SKILL.md +1 -1
- package/skills/generated/api/tenant-manager/SKILL.md +1 -1
- package/skills/generated/api/website-builder/SKILL.md +1 -1
- package/skills/generated/cli/SKILL.md +1 -1
- package/skills/generated/cli/command/SKILL.md +1 -1
- package/skills/generated/extensions/SKILL.md +1 -1
- package/skills/generated/infra/SKILL.md +1 -1
|
@@ -13,7 +13,7 @@ Scheduled action use cases.
|
|
|
13
13
|
## How to Use
|
|
14
14
|
|
|
15
15
|
1. Find the abstraction you need below
|
|
16
|
-
2.
|
|
16
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
17
17
|
3. Import: `import { Name } from "<importPath>";`
|
|
18
18
|
4. See `webiny-use-case-pattern` or `webiny-event-handler-pattern` skills for implementation patterns
|
|
19
19
|
|
|
@@ -13,7 +13,7 @@ Authentication, API keys, roles, users, teams event handlers and use cases.
|
|
|
13
13
|
## How to Use
|
|
14
14
|
|
|
15
15
|
1. Find the abstraction you need below
|
|
16
|
-
2.
|
|
16
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
17
17
|
3. Import: `import { Name } from "<importPath>";`
|
|
18
18
|
4. See `webiny-use-case-pattern` or `webiny-event-handler-pattern` skills for implementation patterns
|
|
19
19
|
|
|
@@ -13,7 +13,7 @@ System installation event handlers and use cases.
|
|
|
13
13
|
## How to Use
|
|
14
14
|
|
|
15
15
|
1. Find the abstraction you need below
|
|
16
|
-
2.
|
|
16
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
17
17
|
3. Import: `import { Name } from "<importPath>";`
|
|
18
18
|
4. See `webiny-use-case-pattern` or `webiny-event-handler-pattern` skills for implementation patterns
|
|
19
19
|
|
|
@@ -10,7 +10,7 @@ description: >
|
|
|
10
10
|
## How to Use
|
|
11
11
|
|
|
12
12
|
1. Find the abstraction you need below
|
|
13
|
-
2.
|
|
13
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
14
14
|
3. Import: `import { Name } from "<importPath>";`
|
|
15
15
|
4. See `webiny-use-case-pattern` or `webiny-event-handler-pattern` skills for implementation patterns
|
|
16
16
|
|
|
@@ -13,7 +13,7 @@ Tenant lifecycle and installation event handlers and use cases.
|
|
|
13
13
|
## How to Use
|
|
14
14
|
|
|
15
15
|
1. Find the abstraction you need below
|
|
16
|
-
2.
|
|
16
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
17
17
|
3. Import: `import { Name } from "<importPath>";`
|
|
18
18
|
4. See `webiny-use-case-pattern` or `webiny-event-handler-pattern` skills for implementation patterns
|
|
19
19
|
|
|
@@ -13,7 +13,7 @@ Tenant management event handlers and use cases.
|
|
|
13
13
|
## How to Use
|
|
14
14
|
|
|
15
15
|
1. Find the abstraction you need below
|
|
16
|
-
2.
|
|
16
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
17
17
|
3. Import: `import { Name } from "<importPath>";`
|
|
18
18
|
4. See `webiny-use-case-pattern` or `webiny-event-handler-pattern` skills for implementation patterns
|
|
19
19
|
|
|
@@ -13,7 +13,7 @@ Page and redirect event handlers and use cases.
|
|
|
13
13
|
## How to Use
|
|
14
14
|
|
|
15
15
|
1. Find the abstraction you need below
|
|
16
|
-
2.
|
|
16
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
17
17
|
3. Import: `import { Name } from "<importPath>";`
|
|
18
18
|
4. See `webiny-use-case-pattern` or `webiny-event-handler-pattern` skills for implementation patterns
|
|
19
19
|
|
|
@@ -10,7 +10,7 @@ description: >
|
|
|
10
10
|
## How to Use
|
|
11
11
|
|
|
12
12
|
1. Find the abstraction you need below
|
|
13
|
-
2.
|
|
13
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
14
14
|
3. Import: `import { Name } from "<importPath>";`
|
|
15
15
|
|
|
16
16
|
## Abstractions
|
|
@@ -10,7 +10,7 @@ description: >
|
|
|
10
10
|
## How to Use
|
|
11
11
|
|
|
12
12
|
1. Find the abstraction you need below
|
|
13
|
-
2.
|
|
13
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
14
14
|
3. Import: `import { Name } from "<importPath>";`
|
|
15
15
|
|
|
16
16
|
## Abstractions
|
|
@@ -10,7 +10,7 @@ description: >
|
|
|
10
10
|
## How to Use
|
|
11
11
|
|
|
12
12
|
1. Find the abstraction you need below
|
|
13
|
-
2.
|
|
13
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
14
14
|
3. Import: `import { Name } from "<importPath>";`
|
|
15
15
|
|
|
16
16
|
## Abstractions
|
|
@@ -13,7 +13,7 @@ Infrastructure extensions.
|
|
|
13
13
|
## How to Use
|
|
14
14
|
|
|
15
15
|
1. Find the abstraction you need below
|
|
16
|
-
2.
|
|
16
|
+
2. You MUST read the source file to get the exact interface and types!
|
|
17
17
|
3. Import: `import { Name } from "<importPath>";`
|
|
18
18
|
|
|
19
19
|
## Abstractions
|