@sylphx/flow 1.5.0 → 1.5.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @sylphx/flow
2
2
 
3
+ ## 1.5.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 76b3c84: Add Playwright MCP server as default pre-configured server for browser automation and testing capabilities
8
+
3
9
  ## 1.5.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sylphx/flow",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "AI-powered development workflow automation with autonomous loop mode and smart configuration",
5
5
  "type": "module",
6
6
  "bin": {
@@ -176,6 +176,19 @@ export const MCP_SERVER_REGISTRY: Record<string, MCPServerDefinition> = {
176
176
  category: 'core',
177
177
  defaultInInit: true,
178
178
  },
179
+
180
+ playwright: {
181
+ id: 'playwright',
182
+ name: 'playwright',
183
+ description: 'Playwright MCP server for browser automation and testing',
184
+ config: {
185
+ type: 'stdio' as const,
186
+ command: 'npx',
187
+ args: ['@playwright/mcp@latest'],
188
+ },
189
+ category: 'core',
190
+ defaultInInit: true,
191
+ },
179
192
  };
180
193
 
181
194
  /**