@playdrop/playdrop-cli 0.12.16 → 0.12.17

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "0.12.8",
3
- "build": 9,
3
+ "build": 10,
4
4
  "runtimeSdkVersion": "0.12.5",
5
5
  "runtimeSdkBuild": 2,
6
6
  "clients": {
@@ -516,9 +516,14 @@ function buildClaudeExecArgs(input) {
516
516
  : input.playwrightMcp
517
517
  ? [...allowedPermissionRules, PLAYWRIGHT_MCP_ALLOWED_TOOL_RULE]
518
518
  : allowedPermissionRules;
519
+ // --safe-mode disables ALL MCP servers, including ones passed explicitly via --mcp-config
520
+ // (verified empirically on claude 2.1.207). Playwright judge sessions therefore drop it:
521
+ // their CLAUDE_CONFIG_DIR is an isolated per-task directory with no user customizations,
522
+ // so the surface --safe-mode guards is already empty, while --strict-mcp-config and the
523
+ // permission rules below stay in force.
519
524
  const args = [
520
525
  '-p',
521
- '--safe-mode',
526
+ ...(input.playwrightMcp ? [] : ['--safe-mode']),
522
527
  '--strict-mcp-config',
523
528
  '--model',
524
529
  model,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "0.12.8",
3
- "build": 9,
3
+ "build": 10,
4
4
  "runtimeSdkVersion": "0.12.5",
5
5
  "runtimeSdkBuild": 2,
6
6
  "clients": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playdrop/playdrop-cli",
3
- "version": "0.12.16",
3
+ "version": "0.12.17",
4
4
  "description": "Official Playdrop CLI for publishing browser games, creator apps, and AI-generated game assets on playdrop.ai",
5
5
  "homepage": "https://www.playdrop.ai",
6
6
  "repository": {