start-vibing 3.0.0 → 3.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.
package/dist/cli.js CHANGED
@@ -501,7 +501,7 @@ var CORE_MCPS = [
501
501
  name: "playwright",
502
502
  description: "browser automation",
503
503
  command: "npx",
504
- args: ["-y", "@playwright/mcp@latest"]
504
+ args: ["-y", "@playwright/mcp@latest", "--user-data-dir", "./.playwright-data"]
505
505
  }
506
506
  ];
507
507
  function isClaudeMcpReady() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "start-vibing",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Setup Claude Code agents, skills, and hooks in your project. Smart copy that preserves your custom domains and configurations.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -68,7 +68,7 @@ All agents MUST use these MCP servers when applicable:
68
68
  | `context7` | Up-to-date library documentation | research, analyzer, tester |
69
69
  | `sequential-thinking` | Complex problem-solving | orchestrator, analyzer, final-validator |
70
70
  | `memory` | Persistent knowledge graph | domain-updater, commit-manager |
71
- | `playwright` | Browser automation (via MCP tools) | ui-ux-reviewer |
71
+ | `playwright` | Browser automation (via MCP tools, persistent sessions via `--user-data-dir`) | ui-ux-reviewer |
72
72
  | `nextjs-devtools` | Next.js specific development tools | analyzer (Next.js projects) |
73
73
  | `mongodb` | MongoDB database operations | tester, security-auditor |
74
74
 
@@ -117,12 +117,12 @@
117
117
  "transport": "stdio",
118
118
  "config": {
119
119
  "command": "npx",
120
- "args": ["-y", "@playwright/mcp@latest"]
120
+ "args": ["-y", "@playwright/mcp@latest", "--user-data-dir", "./.playwright-data"]
121
121
  },
122
122
  "envVars": [],
123
123
  "requiredPermissions": [],
124
124
  "agentMappings": ["tester", "ui-ux-reviewer", "quality-checker"],
125
- "securityNotes": "Safe - runs in isolated browser context"
125
+ "securityNotes": "Safe - runs in isolated browser context. Uses project-local --user-data-dir for session persistence."
126
126
  },
127
127
 
128
128
  "context7": {