@appscreenshotstudio/mcp 0.6.1 → 0.6.2
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/README.md +1 -0
- package/dist/index.js +4 -1
- package/package.json +1 -1
- package/skills/appscreenshotstudio/SKILL.md +1 -1
package/README.md
CHANGED
|
@@ -188,6 +188,7 @@ Once installed, use `/appscreenshotstudio` in Claude Code or just ask "generate
|
|
|
188
188
|
| `ipad-13` | iPad Pro 13" | 2064x2752 | App Store |
|
|
189
189
|
| `android-phone` | Android Phone | 1080x2340 | Play Store |
|
|
190
190
|
| `android-tablet-10` | Android Tablet 7" | 1200x1920 | Play Store |
|
|
191
|
+
| `android-tablet-large` | Android Tablet 10" | 1600x2560 | Play Store |
|
|
191
192
|
| `apple-watch-ultra` | Apple Watch Ultra 2 | 410x502 | App Store |
|
|
192
193
|
|
|
193
194
|
## Design Features
|
package/dist/index.js
CHANGED
|
@@ -28,13 +28,15 @@ if (args[0] === 'install-skill') {
|
|
|
28
28
|
const API_BASE = process.env.APPSCREENSHOTSTUDIO_URL || 'https://appscreenshotstudio.com';
|
|
29
29
|
const API_KEY = process.env.APPSCREENSHOTSTUDIO_API_KEY;
|
|
30
30
|
// ─── Devices (mirrors lib/device-specs.ts) ─────────────────────────────────────
|
|
31
|
-
// ⚠️ Keep in sync: lib/device-specs.ts, mcp-server/README.md, docs/api page, docs/mcp page
|
|
31
|
+
// ⚠️ Keep in sync: lib/device-specs.ts, mcp-server/README.md, docs/api page, docs/mcp page,
|
|
32
|
+
// mcp-server/skills/appscreenshotstudio/SKILL.md (ships in the npm package, so it drifts unseen)
|
|
32
33
|
const DEVICES = [
|
|
33
34
|
{ id: 'iphone-6.9', name: 'iPhone 16 Pro Max', width: 1260, height: 2736, category: 'iphone', required: true },
|
|
34
35
|
{ id: 'iphone-6.3', name: 'iPhone 17 Pro', width: 1206, height: 2622, category: 'iphone', required: false },
|
|
35
36
|
{ id: 'ipad-13', name: 'iPad Pro 13"', width: 2064, height: 2752, category: 'ipad', required: true },
|
|
36
37
|
{ id: 'android-phone', name: 'Android Phone', width: 1080, height: 2340, category: 'android-phone', required: true },
|
|
37
38
|
{ id: 'android-tablet-10', name: 'Android Tablet 7"', width: 1200, height: 1920, category: 'android-tablet', required: true },
|
|
39
|
+
{ id: 'android-tablet-large', name: 'Android Tablet 10"', width: 1600, height: 2560, category: 'android-tablet', required: false },
|
|
38
40
|
{ id: 'apple-watch-ultra', name: 'Apple Watch Ultra 2', width: 410, height: 502, category: 'apple-watch', required: true },
|
|
39
41
|
];
|
|
40
42
|
const VALID_DEVICE_IDS = DEVICES.map(d => d.id);
|
|
@@ -815,6 +817,7 @@ The more you gather here, the better generate-screenshots does on the first try.
|
|
|
815
817
|
deviceTips.push('**Android (required for Play Store):**');
|
|
816
818
|
deviceTips.push('- Android Phone (android-phone): 1080×2340 — REQUIRED');
|
|
817
819
|
deviceTips.push('- Android Tablet 7" (android-tablet-10): 1200×1920 — REQUIRED');
|
|
820
|
+
deviceTips.push('- Android Tablet 10" (android-tablet-large): 1600×2560 — second large-screen slot');
|
|
818
821
|
deviceTips.push('');
|
|
819
822
|
}
|
|
820
823
|
// Schema reminder
|
package/package.json
CHANGED
|
@@ -64,7 +64,7 @@ Call the `generate-screenshots` MCP tool with:
|
|
|
64
64
|
- `features`: top 3-5 features as array
|
|
65
65
|
- `brand_colors`: `{ primary, secondary?, accent? }` from theme files
|
|
66
66
|
- `mood`: user's chosen mood
|
|
67
|
-
- `device_id`: `"iphone-6.9"` (default), `"ipad-13"`, `"android-phone"`, `"android-tablet-10"
|
|
67
|
+
- `device_id`: `"iphone-6.9"` (default), `"iphone-6.3"`, `"ipad-13"`, `"android-phone"`, `"android-tablet-10"` (7"), `"android-tablet-large"` (10"), `"apple-watch-ultra"`
|
|
68
68
|
- `count`: number of cards (3-10)
|
|
69
69
|
- `story_flow`: `"auto"` (default), `"hero-intro"`, `"problem-solution"`, `"benefit-first"`, etc.
|
|
70
70
|
- `codebase_context`: the full context object from Step 1
|