You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add percy_create_app_build — creates App Percy builds by uploading device
screenshots with proper device metadata (OS, orientation, screen size).
Supports two modes: built-in sample data (3 devices × 2 screenshots, zero
setup) and custom resources directory with device.json + PNGs.
Add percy-session — in-memory state that persists active project token,
build ID/URL/number, and org info across tool calls so subsequent commands
get richer context automatically.
Fix percy_auth_status — replace flaky /projects endpoint (500 error) with
lightweight BrowserStack user API check. Show org info and getting started
guide.
Enhance all tool responses — every project command returns and activates
the token, every build command returns Build ID, Build #, Build URL, and
"Next Steps" with exact follow-up commands.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
// Test Basic Auth (this is what all read/write tools use)
25
+
// Note about PERCY_TOKEN — it's per-project, not global
26
+
output+=`> **Note:** PERCY_TOKEN is set per-project, not globally. Use \`percy_create_project\` to get a project token — it will be activated automatically for subsequent calls.\n\n`;
27
+
26
28
if(hasCreds){
27
29
output+=`### Validation\n\n`;
30
+
31
+
// Test BrowserStack API by checking user info (lightweight, won't 500)
0 commit comments