@frontmcp/skills 0.0.1

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.
Files changed (65) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +135 -0
  3. package/catalog/TEMPLATE.md +49 -0
  4. package/catalog/adapters/create-adapter/SKILL.md +127 -0
  5. package/catalog/adapters/official-adapters/SKILL.md +136 -0
  6. package/catalog/auth/configure-auth/SKILL.md +250 -0
  7. package/catalog/auth/configure-auth/references/auth-modes.md +77 -0
  8. package/catalog/auth/configure-session/SKILL.md +201 -0
  9. package/catalog/config/configure-elicitation/SKILL.md +136 -0
  10. package/catalog/config/configure-http/SKILL.md +167 -0
  11. package/catalog/config/configure-throttle/SKILL.md +189 -0
  12. package/catalog/config/configure-throttle/references/guard-config.md +68 -0
  13. package/catalog/config/configure-transport/SKILL.md +151 -0
  14. package/catalog/config/configure-transport/references/protocol-presets.md +57 -0
  15. package/catalog/deployment/build-for-browser/SKILL.md +95 -0
  16. package/catalog/deployment/build-for-cli/SKILL.md +100 -0
  17. package/catalog/deployment/build-for-sdk/SKILL.md +218 -0
  18. package/catalog/deployment/deploy-to-cloudflare/SKILL.md +192 -0
  19. package/catalog/deployment/deploy-to-lambda/SKILL.md +304 -0
  20. package/catalog/deployment/deploy-to-node/SKILL.md +229 -0
  21. package/catalog/deployment/deploy-to-node/references/Dockerfile.example +45 -0
  22. package/catalog/deployment/deploy-to-vercel/SKILL.md +196 -0
  23. package/catalog/deployment/deploy-to-vercel/references/vercel.json.example +60 -0
  24. package/catalog/development/create-agent/SKILL.md +563 -0
  25. package/catalog/development/create-agent/references/llm-config.md +46 -0
  26. package/catalog/development/create-job/SKILL.md +566 -0
  27. package/catalog/development/create-prompt/SKILL.md +400 -0
  28. package/catalog/development/create-provider/SKILL.md +233 -0
  29. package/catalog/development/create-resource/SKILL.md +437 -0
  30. package/catalog/development/create-skill/SKILL.md +526 -0
  31. package/catalog/development/create-skill-with-tools/SKILL.md +579 -0
  32. package/catalog/development/create-tool/SKILL.md +418 -0
  33. package/catalog/development/create-tool/references/output-schema-types.md +56 -0
  34. package/catalog/development/create-tool/references/tool-annotations.md +34 -0
  35. package/catalog/development/create-workflow/SKILL.md +709 -0
  36. package/catalog/development/decorators-guide/SKILL.md +598 -0
  37. package/catalog/plugins/create-plugin/SKILL.md +336 -0
  38. package/catalog/plugins/create-plugin-hooks/SKILL.md +282 -0
  39. package/catalog/plugins/official-plugins/SKILL.md +667 -0
  40. package/catalog/setup/frontmcp-skills-usage/SKILL.md +200 -0
  41. package/catalog/setup/multi-app-composition/SKILL.md +358 -0
  42. package/catalog/setup/nx-workflow/SKILL.md +357 -0
  43. package/catalog/setup/project-structure-nx/SKILL.md +186 -0
  44. package/catalog/setup/project-structure-standalone/SKILL.md +153 -0
  45. package/catalog/setup/setup-project/SKILL.md +493 -0
  46. package/catalog/setup/setup-redis/SKILL.md +385 -0
  47. package/catalog/setup/setup-sqlite/SKILL.md +359 -0
  48. package/catalog/skills-manifest.json +414 -0
  49. package/catalog/testing/setup-testing/SKILL.md +539 -0
  50. package/catalog/testing/setup-testing/references/test-auth.md +88 -0
  51. package/catalog/testing/setup-testing/references/test-browser-build.md +57 -0
  52. package/catalog/testing/setup-testing/references/test-cli-binary.md +48 -0
  53. package/catalog/testing/setup-testing/references/test-direct-client.md +62 -0
  54. package/catalog/testing/setup-testing/references/test-e2e-handler.md +51 -0
  55. package/catalog/testing/setup-testing/references/test-tool-unit.md +41 -0
  56. package/package.json +34 -0
  57. package/src/index.d.ts +3 -0
  58. package/src/index.js +16 -0
  59. package/src/index.js.map +1 -0
  60. package/src/loader.d.ts +46 -0
  61. package/src/loader.js +75 -0
  62. package/src/loader.js.map +1 -0
  63. package/src/manifest.d.ts +81 -0
  64. package/src/manifest.js +26 -0
  65. package/src/manifest.js.map +1 -0
@@ -0,0 +1,414 @@
1
+ {
2
+ "version": 1,
3
+ "skills": [
4
+ {
5
+ "name": "frontmcp-skills-usage",
6
+ "category": "setup",
7
+ "description": "Search, install, and manage FrontMCP development skills for Claude Code and Codex. Use when setting up skills for AI-assisted development, choosing between static and dynamic skill delivery, or configuring skill providers.",
8
+ "path": "setup/frontmcp-skills-usage",
9
+ "targets": ["all"],
10
+ "hasResources": false,
11
+ "tags": ["skills", "cli", "install", "claude", "codex", "search", "catalog"],
12
+ "bundle": ["recommended", "minimal", "full"],
13
+ "install": { "destinations": ["project-local", ".claude/skills", "codex"], "mergeStrategy": "skip-existing" }
14
+ },
15
+ {
16
+ "name": "setup-project",
17
+ "category": "setup",
18
+ "description": "Scaffold and configure a new FrontMCP MCP server project. Use when creating a new project, setting up @FrontMcp and @App decorators, or choosing a deployment target.",
19
+ "path": "setup/setup-project",
20
+ "targets": ["all"],
21
+ "hasResources": false,
22
+ "tags": ["setup", "project", "scaffold", "getting-started"],
23
+ "bundle": ["recommended", "minimal", "full"],
24
+ "install": { "destinations": ["project-local"], "mergeStrategy": "skip-existing" }
25
+ },
26
+ {
27
+ "name": "setup-redis",
28
+ "category": "setup",
29
+ "description": "Configure Redis for session storage and distributed state management. Use when adding Redis, Docker Redis, Vercel KV, or setting up pub/sub for resource subscriptions.",
30
+ "path": "setup/setup-redis",
31
+ "targets": ["node", "vercel"],
32
+ "hasResources": false,
33
+ "storageDefault": { "node": "redis-docker", "vercel": "vercel-kv" },
34
+ "tags": ["setup", "redis", "storage", "session"],
35
+ "bundle": ["recommended", "full"],
36
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite", "dependencies": ["setup-project"] }
37
+ },
38
+ {
39
+ "name": "setup-sqlite",
40
+ "category": "setup",
41
+ "description": "Configure SQLite for local development and single-instance deployments. Use when setting up local storage, CLI tools, unix-socket daemons, or WAL mode.",
42
+ "path": "setup/setup-sqlite",
43
+ "targets": ["node"],
44
+ "hasResources": false,
45
+ "storageDefault": { "node": "sqlite" },
46
+ "tags": ["setup", "sqlite", "storage", "local"],
47
+ "bundle": ["minimal", "full"],
48
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite", "dependencies": ["setup-project"] }
49
+ },
50
+ {
51
+ "name": "multi-app-composition",
52
+ "category": "setup",
53
+ "description": "Compose multiple apps in a single server with shared tools, scoped auth, and external app loading. Use when building multi-app servers, sharing tools between apps, loading ESM or remote apps, or configuring per-app auth.",
54
+ "path": "setup/multi-app-composition",
55
+ "targets": ["all"],
56
+ "hasResources": false,
57
+ "tags": ["multi-app", "composition", "architecture", "scope", "shared-tools"],
58
+ "bundle": ["recommended", "full"],
59
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
60
+ },
61
+ {
62
+ "name": "nx-workflow",
63
+ "category": "setup",
64
+ "description": "Complete Nx monorepo workflow for FrontMCP with all generators, build, test, and deployment commands. Use when working in an Nx workspace, running generators, or managing monorepo builds.",
65
+ "path": "setup/nx-workflow",
66
+ "targets": ["all"],
67
+ "hasResources": false,
68
+ "tags": ["nx", "monorepo", "generators", "workflow", "scaffold"],
69
+ "bundle": ["recommended", "full"],
70
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
71
+ },
72
+ {
73
+ "name": "project-structure-standalone",
74
+ "category": "setup",
75
+ "description": "Best practices for organizing a standalone FrontMCP project — file layout, naming conventions, and folder hierarchy. Use when scaffolding with frontmcp create or organizing an existing standalone project.",
76
+ "path": "setup/project-structure-standalone",
77
+ "targets": ["all"],
78
+ "hasResources": false,
79
+ "tags": ["project", "structure", "standalone", "organization", "best-practices"],
80
+ "bundle": ["recommended", "minimal", "full"],
81
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
82
+ },
83
+ {
84
+ "name": "project-structure-nx",
85
+ "category": "setup",
86
+ "description": "Best practices for organizing a FrontMCP Nx monorepo — apps, libs, servers, generators, and multi-app composition. Use when working with frontmcp create --nx or an Nx workspace.",
87
+ "path": "setup/project-structure-nx",
88
+ "targets": ["all"],
89
+ "hasResources": false,
90
+ "tags": ["project", "structure", "nx", "monorepo", "organization", "best-practices"],
91
+ "bundle": ["recommended", "full"],
92
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
93
+ },
94
+ {
95
+ "name": "configure-transport",
96
+ "category": "config",
97
+ "description": "Choose and configure transport protocols — SSE, Streamable HTTP, stateless API, or legacy. Use when deciding between transport modes, enabling distributed sessions, or configuring event stores.",
98
+ "path": "config/configure-transport",
99
+ "targets": ["all"],
100
+ "hasResources": true,
101
+ "tags": ["transport", "sse", "streamable-http", "stateless", "protocol", "session"],
102
+ "bundle": ["recommended", "full"],
103
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
104
+ },
105
+ {
106
+ "name": "configure-elicitation",
107
+ "category": "config",
108
+ "description": "Enable interactive user input requests from tools during execution. Use when tools need to ask the user for confirmation, choices, or additional data mid-execution.",
109
+ "path": "config/configure-elicitation",
110
+ "targets": ["all"],
111
+ "hasResources": false,
112
+ "tags": ["elicitation", "user-input", "interactive", "confirmation", "form"],
113
+ "bundle": ["full"],
114
+ "install": { "destinations": ["project-local"], "mergeStrategy": "skip-existing" }
115
+ },
116
+ {
117
+ "name": "configure-http",
118
+ "category": "config",
119
+ "description": "Configure HTTP server options including port, CORS, unix sockets, and entry path. Use when customizing the HTTP listener, enabling CORS, or binding to a unix socket.",
120
+ "path": "config/configure-http",
121
+ "targets": ["all"],
122
+ "hasResources": false,
123
+ "tags": ["http", "cors", "port", "socket", "server", "configuration"],
124
+ "bundle": ["recommended", "full"],
125
+ "install": { "destinations": ["project-local"], "mergeStrategy": "skip-existing" }
126
+ },
127
+ {
128
+ "name": "configure-throttle",
129
+ "category": "config",
130
+ "description": "Set up rate limiting, concurrency control, timeouts, and IP filtering at server and per-tool level. Use when protecting against abuse, limiting request rates, or configuring IP allow/deny lists.",
131
+ "path": "config/configure-throttle",
132
+ "targets": ["all"],
133
+ "hasResources": true,
134
+ "tags": ["throttle", "rate-limit", "concurrency", "timeout", "security", "guard", "ip-filter"],
135
+ "bundle": ["recommended", "full"],
136
+ "install": { "destinations": ["project-local"], "mergeStrategy": "skip-existing" }
137
+ },
138
+ {
139
+ "name": "decorators-guide",
140
+ "category": "development",
141
+ "description": "Complete reference for all FrontMCP decorators and when to use each one. Use when choosing between decorators, understanding the architecture, or looking up decorator signatures.",
142
+ "path": "development/decorators-guide",
143
+ "targets": ["all"],
144
+ "hasResources": false,
145
+ "tags": ["decorators", "reference", "architecture", "guide"],
146
+ "bundle": ["recommended", "minimal", "full"],
147
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
148
+ },
149
+ {
150
+ "name": "create-tool",
151
+ "category": "development",
152
+ "description": "Create and register an MCP tool with Zod input validation and typed output. Use when building tools, defining input schemas, adding output validation, or registering tools in an app.",
153
+ "path": "development/create-tool",
154
+ "targets": ["all"],
155
+ "hasResources": true,
156
+ "tags": ["tools", "mcp", "zod", "schema"],
157
+ "bundle": ["recommended", "minimal", "full"],
158
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
159
+ },
160
+ {
161
+ "name": "create-resource",
162
+ "category": "development",
163
+ "description": "Create MCP resources and resource templates with URI-based access. Use when exposing data via URIs, creating resource templates, or serving dynamic content.",
164
+ "path": "development/create-resource",
165
+ "targets": ["all"],
166
+ "hasResources": false,
167
+ "tags": ["resources", "mcp", "uri", "templates"],
168
+ "bundle": ["recommended", "full"],
169
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
170
+ },
171
+ {
172
+ "name": "create-prompt",
173
+ "category": "development",
174
+ "description": "Create MCP prompts for reusable AI interaction patterns. Use when building prompts, defining prompt arguments, or creating conversation templates.",
175
+ "path": "development/create-prompt",
176
+ "targets": ["all"],
177
+ "hasResources": false,
178
+ "tags": ["prompts", "mcp", "templates"],
179
+ "bundle": ["recommended", "full"],
180
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
181
+ },
182
+ {
183
+ "name": "create-agent",
184
+ "category": "development",
185
+ "description": "Create autonomous AI agents with inner tools, LLM providers, and multi-agent swarms. Use when building agents, configuring LLM adapters, adding inner tools, or setting up agent handoff.",
186
+ "path": "development/create-agent",
187
+ "targets": ["all"],
188
+ "hasResources": true,
189
+ "tags": ["agent", "ai", "llm", "tools", "autonomous"],
190
+ "bundle": ["recommended", "full"],
191
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
192
+ },
193
+ {
194
+ "name": "create-skill-with-tools",
195
+ "category": "development",
196
+ "description": "Create skills that reference and orchestrate MCP tools for multi-step workflows. Use when building skills with tool references, SKILL.md directories, or workflow instructions.",
197
+ "path": "development/create-skill-with-tools",
198
+ "targets": ["all"],
199
+ "hasResources": false,
200
+ "tags": ["skill", "tools", "workflow", "instructions"],
201
+ "bundle": ["recommended", "full"],
202
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
203
+ },
204
+ {
205
+ "name": "create-skill",
206
+ "category": "development",
207
+ "description": "Create instruction-only skills that guide AI through workflows without tool references. Use when building knowledge packages, coding guidelines, or workflow templates.",
208
+ "path": "development/create-skill",
209
+ "targets": ["all"],
210
+ "hasResources": false,
211
+ "tags": ["skill", "instructions", "knowledge", "workflow", "guide"],
212
+ "bundle": ["recommended", "full"],
213
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
214
+ },
215
+ {
216
+ "name": "create-provider",
217
+ "category": "development",
218
+ "description": "Create dependency injection providers for database connections, API clients, and singleton services. Use when tools and resources need shared services, DB pools, or configuration objects.",
219
+ "path": "development/create-provider",
220
+ "targets": ["all"],
221
+ "hasResources": false,
222
+ "tags": ["provider", "di", "dependency-injection", "singleton", "database", "service"],
223
+ "bundle": ["recommended", "full"],
224
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
225
+ },
226
+ {
227
+ "name": "create-job",
228
+ "category": "development",
229
+ "description": "Create long-running jobs with retry policies, progress tracking, and permission controls. Use when building background tasks, data processing pipelines, or scheduled operations.",
230
+ "path": "development/create-job",
231
+ "targets": ["all"],
232
+ "hasResources": false,
233
+ "tags": ["job", "background", "retry", "progress", "long-running"],
234
+ "bundle": ["full"],
235
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
236
+ },
237
+ {
238
+ "name": "create-workflow",
239
+ "category": "development",
240
+ "description": "Create multi-step workflows that connect jobs into managed execution pipelines with dependencies and conditions. Use when orchestrating sequential or parallel job execution.",
241
+ "path": "development/create-workflow",
242
+ "targets": ["all"],
243
+ "hasResources": false,
244
+ "tags": ["workflow", "pipeline", "orchestration", "steps", "jobs"],
245
+ "bundle": ["full"],
246
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
247
+ },
248
+ {
249
+ "name": "deploy-to-node",
250
+ "category": "deployment",
251
+ "description": "Deploy a FrontMCP server as a standalone Node.js application with Docker. Use when deploying to a VPS, Docker, or bare metal server.",
252
+ "path": "deployment/deploy-to-node",
253
+ "targets": ["node"],
254
+ "hasResources": true,
255
+ "tags": ["deployment", "node", "docker", "production"],
256
+ "bundle": ["recommended", "full"],
257
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite" }
258
+ },
259
+ {
260
+ "name": "deploy-to-vercel",
261
+ "category": "deployment",
262
+ "description": "Deploy a FrontMCP server to Vercel serverless functions. Use when deploying to Vercel, configuring Vercel KV, or setting up serverless MCP.",
263
+ "path": "deployment/deploy-to-vercel",
264
+ "targets": ["vercel"],
265
+ "hasResources": true,
266
+ "tags": ["deployment", "vercel", "serverless", "edge"],
267
+ "bundle": ["recommended", "full"],
268
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite" }
269
+ },
270
+ {
271
+ "name": "deploy-to-lambda",
272
+ "category": "deployment",
273
+ "description": "Deploy a FrontMCP server to AWS Lambda with API Gateway. Use when deploying to AWS, setting up SAM or CDK, or configuring Lambda handlers.",
274
+ "path": "deployment/deploy-to-lambda",
275
+ "targets": ["lambda"],
276
+ "hasResources": false,
277
+ "tags": ["deployment", "lambda", "aws", "serverless"],
278
+ "bundle": ["recommended", "full"],
279
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite" }
280
+ },
281
+ {
282
+ "name": "deploy-to-cloudflare",
283
+ "category": "deployment",
284
+ "description": "Deploy a FrontMCP server to Cloudflare Workers. Use when deploying to Cloudflare, configuring wrangler.toml, or setting up Workers KV storage.",
285
+ "path": "deployment/deploy-to-cloudflare",
286
+ "targets": ["cloudflare"],
287
+ "hasResources": false,
288
+ "tags": ["deployment", "cloudflare", "workers", "serverless"],
289
+ "bundle": ["full"],
290
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite" }
291
+ },
292
+ {
293
+ "name": "build-for-cli",
294
+ "category": "deployment",
295
+ "description": "Build a distributable CLI binary (SEA) or JS bundle from an MCP server. Use when creating standalone executables, CLI tools, or self-contained binaries.",
296
+ "path": "deployment/build-for-cli",
297
+ "targets": ["node"],
298
+ "hasResources": false,
299
+ "tags": ["deployment", "cli", "binary", "sea", "executable"],
300
+ "bundle": ["full"],
301
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite" }
302
+ },
303
+ {
304
+ "name": "build-for-browser",
305
+ "category": "deployment",
306
+ "description": "Build a FrontMCP server for browser environments. Use when creating browser-compatible MCP clients, embedding MCP in web apps, or building client-side tool interfaces.",
307
+ "path": "deployment/build-for-browser",
308
+ "targets": ["all"],
309
+ "hasResources": false,
310
+ "tags": ["deployment", "browser", "client", "web", "frontend"],
311
+ "bundle": ["full"],
312
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite" }
313
+ },
314
+ {
315
+ "name": "build-for-sdk",
316
+ "category": "deployment",
317
+ "description": "Build a FrontMCP server as an embeddable SDK library for Node.js applications without HTTP serving. Use when embedding MCP in existing apps, using connect()/connectOpenAI()/connectClaude(), or distributing as an npm package.",
318
+ "path": "deployment/build-for-sdk",
319
+ "targets": ["all"],
320
+ "hasResources": false,
321
+ "tags": ["deployment", "sdk", "library", "embed", "programmatic", "connect"],
322
+ "bundle": ["recommended", "full"],
323
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
324
+ },
325
+ {
326
+ "name": "configure-auth",
327
+ "category": "auth",
328
+ "description": "Set up authentication with public, transparent, local, or remote auth modes. Use when adding auth, OAuth, login, session security, or protecting tools and resources.",
329
+ "path": "auth/configure-auth",
330
+ "targets": ["all"],
331
+ "hasResources": true,
332
+ "tags": ["auth", "oauth", "security", "session"],
333
+ "bundle": ["recommended", "full"],
334
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite" }
335
+ },
336
+ {
337
+ "name": "configure-session",
338
+ "category": "auth",
339
+ "description": "Configure session storage with Redis, Vercel KV, or in-memory backends. Use when setting up sessions, choosing a storage provider, or configuring TTL and key prefixes.",
340
+ "path": "auth/configure-session",
341
+ "targets": ["node", "vercel"],
342
+ "hasResources": false,
343
+ "tags": ["session", "storage", "redis", "memory"],
344
+ "bundle": ["recommended", "full"],
345
+ "install": { "destinations": ["project-local"], "mergeStrategy": "overwrite", "dependencies": ["configure-auth"] }
346
+ },
347
+ {
348
+ "name": "create-plugin",
349
+ "category": "plugins",
350
+ "description": "Build a FrontMCP plugin with lifecycle hooks and context extensions. Use when creating custom plugins, extending tool context, or adding cross-cutting concerns.",
351
+ "path": "plugins/create-plugin",
352
+ "targets": ["all"],
353
+ "hasResources": false,
354
+ "tags": ["plugins", "extensibility", "hooks", "context"],
355
+ "bundle": ["full"],
356
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
357
+ },
358
+ {
359
+ "name": "create-plugin-hooks",
360
+ "category": "plugins",
361
+ "description": "Create plugins with flow lifecycle hooks using @Will, @Did, @Stage, and @Around decorators. Use when intercepting tool calls, adding logging, modifying request/response, or implementing cross-cutting middleware.",
362
+ "path": "plugins/create-plugin-hooks",
363
+ "targets": ["all"],
364
+ "hasResources": false,
365
+ "tags": ["plugin", "hooks", "will", "did", "stage", "around", "flow", "middleware"],
366
+ "bundle": ["full"],
367
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
368
+ },
369
+ {
370
+ "name": "official-plugins",
371
+ "category": "plugins",
372
+ "description": "Install and configure official FrontMCP plugins including CodeCall, Remember, Approval, Cache, Feature Flags, and Dashboard. Use when adding caching, memory, tool approval, feature gating, or CodeCall orchestration.",
373
+ "path": "plugins/official-plugins",
374
+ "targets": ["all"],
375
+ "hasResources": false,
376
+ "tags": ["plugins", "codecall", "remember", "approval", "cache", "feature-flags", "dashboard"],
377
+ "bundle": ["recommended", "full"],
378
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
379
+ },
380
+ {
381
+ "name": "official-adapters",
382
+ "category": "adapters",
383
+ "description": "Use the OpenAPI adapter to convert REST APIs into MCP tools automatically. Use when integrating external APIs, OpenAPI specs, or converting Swagger docs to MCP tools.",
384
+ "path": "adapters/official-adapters",
385
+ "targets": ["all"],
386
+ "hasResources": false,
387
+ "tags": ["adapters", "openapi", "rest-api", "swagger", "integration"],
388
+ "bundle": ["recommended", "full"],
389
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
390
+ },
391
+ {
392
+ "name": "create-adapter",
393
+ "category": "adapters",
394
+ "description": "Create custom adapters that convert external definitions into MCP tools, resources, and prompts. Use when building integrations beyond OpenAPI, connecting to proprietary APIs, or generating tools from custom schemas.",
395
+ "path": "adapters/create-adapter",
396
+ "targets": ["all"],
397
+ "hasResources": false,
398
+ "tags": ["adapter", "custom", "dynamic-adapter", "integration", "codegen"],
399
+ "bundle": ["full"],
400
+ "install": { "destinations": ["project-local", ".claude/skills"], "mergeStrategy": "skip-existing" }
401
+ },
402
+ {
403
+ "name": "setup-testing",
404
+ "category": "testing",
405
+ "description": "Configure and run unit and E2E tests for FrontMCP applications. Use when writing tests, setting up Jest, configuring coverage, or testing tools and resources.",
406
+ "path": "testing/setup-testing",
407
+ "targets": ["all"],
408
+ "hasResources": true,
409
+ "tags": ["testing", "jest", "e2e", "quality"],
410
+ "bundle": ["recommended", "full"],
411
+ "install": { "destinations": ["project-local"], "mergeStrategy": "skip-existing" }
412
+ }
413
+ ]
414
+ }