@playdrop/playdrop-cli 0.12.29 → 0.12.31

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": 32,
3
+ "build": 35,
4
4
  "runtimeSdkVersion": "0.12.5",
5
5
  "runtimeSdkBuild": 2,
6
6
  "clients": {
@@ -2465,6 +2465,14 @@ function probeClaudeModels() {
2465
2465
  if (sonnet5.exitCode === 0 && claudeModelProbeReportsSelection(sonnet5.output, 'Sonnet 5')) {
2466
2466
  discovered.push('claude-sonnet-5');
2467
2467
  }
2468
+ const sonnet5High = (0, shellProbe_1.runShell)('claude --model claude-sonnet-5 --effort high --print --output-format json --max-turns 1 "/model"');
2469
+ if (sonnet5High.exitCode === 0 && claudeModelProbeReportsSelection(sonnet5High.output, 'Sonnet 5 (effort: high)')) {
2470
+ discovered.push('claude-sonnet-5-high');
2471
+ }
2472
+ const opus47Extra = (0, shellProbe_1.runShell)('claude --model claude-opus-4-7 --effort xhigh --print --output-format json --max-turns 1 "/model"');
2473
+ if (opus47Extra.exitCode === 0 && claudeModelProbeReportsSelection(opus47Extra.output, 'Opus 4.7 (effort: xhigh)')) {
2474
+ discovered.push('claude-opus-4-7-xhigh');
2475
+ }
2468
2476
  return normalizeDiscoveredModels('CLAUDE_CODE', discovered);
2469
2477
  }
2470
2478
  function probeWorkerProviderIndependently(probe, unavailable) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "0.12.8",
3
- "build": 32,
3
+ "build": 35,
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.29",
3
+ "version": "0.12.31",
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": {