Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

iblai-screenshot伊布莱截图

Agent Skill

iblai-screenshot 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

470

周安装

19

GitHub Stars

14

下载量

147
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:iblai-screenshot(伊布莱截图)
来源仓库:https://github.com/iblai/vibe
仓库路径:skills/iblai-screenshot
安装命令:
npx skills add https://github.com/iblai/vibe --skill iblai-screenshot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/iblai/vibe --skill iblai-screenshot

简介

iblai-screenshot 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于截图管理、视觉内容检索和场景化筛选等研究类任务,支持多宿主环境。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和技能功能边界。
  • 使用前建议核实维护状态、是否触发联网或文件操作,避免影响系统安全或数据完整性。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

/iblai-screenshot

Capture screenshots of your ibl.ai app for app store listings, documentation, and marketing. Covers pure web, iOS (App Store), and Android (Google Play).

All screenshots require logging in first so you capture the actual app, not the login screen. See the Authentication section for each platform.

Web Screenshots (Playwright)

Use Playwright to capture screenshots at multiple viewport sizes from the running dev server.

Prerequisites

Set credentials in e2e/.env.development so the screenshot script can log in:

PLAYWRIGHT_USERNAME=your-test-user@example.com
PLAYWRIGHT_PASSWORD=your-password

Generate the Screenshot Script

iblai builds screenshot

This creates e2e/screenshots.spec.ts with viewport presets for iPhone, iPad, Android Phone, Android Tablet, Apple Watch, and Desktop.

Authentication

The generated screenshot spec must authenticate before capturing. The project's e2e/auth.setup.ts handles login automatically -- it navigates to the app, follows the SSO redirect, fills in username/password credentials, and saves the authenticated browser state to playwright/.auth/.

Update e2e/screenshots.spec.ts to use the saved auth state so every screenshot is taken as a logged-in user:

import { test } from "@playwright/test";

// Use the pre-authenticated storage state from auth.setup.ts
test.use({
  storageState: "playwright/.auth/user-setup-chromium.json",
});

// ... viewport and screenshot definitions

Then run auth setup before the screenshots:

pnpm exec playwright test e2e/auth.setup.ts --project=setup-chromium
pnpm exec playwright test e2e/screenshots.spec.ts

Or configure the screenshot spec as a Playwright project that depends on the setup project in e2e/playwright.config.ts:

{
  name: 'screenshots',
  use: {
    storageState: 'playwright/.auth/user-setup-chromium.json',
  },
  dependencies: ['setup-chromium'],
  testMatch: ['screenshots.spec.ts'],
},

Customize Pages

iblai builds screenshot --pages / /profile /notifications /analytics

Run the Capture

  1. Start the dev server: pnpm dev
  2. Run the screenshot spec: pnpm exec playwright test e2e/screenshots.spec.ts
  3. Screenshots are saved to screenshots/<device-slug>/<page-name>.png.

Custom Base URL

Capture from a staging or production deployment:

SCREENSHOT_BASE_URL=https://staging.myapp.com pnpm exec playwright test e2e/screenshots.spec.ts

Viewport Presets

DeviceWidthHeight
iPhone 6.7"430932
iPhone 6.1"390844
iPad 12.9"10241366
Android Phone412915
Android Tablet8001280
Apple Watch 49mm205251
Apple Watch 45mm198242
Desktop1440900

iOS Screenshots (Xcode Simulator)

Capture screenshots directly from the iOS Simulator for App Store Connect.

Prerequisites

  • Tauri iOS project initialized (iblai builds ios init)
  • Xcode with simulators installed

Authentication

The app uses SSO login via iblai.app. When the Simulator launches, the WebView redirects to the login page. Log in with your username and password (click "Continue with Password" if needed), then the app redirects back to the authenticated home page. The session persists in the Simulator's WebView storage -- you only need to log in once per simulator device.

Take a Screenshot

  1. Start the iOS dev build: iblai builds ios dev
  2. Log in when the auth page appears (first run only).
  3. Navigate to the page you want to capture in the Simulator.
  4. Capture the full Simulator window including the title bar: screencapture -l $(osascript -e 'tell app "Simulator" to id of window 1') ~/Desktop/ios-screenshot.png This captures the Simulator window with its title bar showing the device name and iOS version (e.g. "iPhone 16 Pro Max - iOS 18.0").

Capture All Required Sizes

App Store Connect requires screenshots for specific device sizes. Use these simulators:

Display SizeSimulator DeviceResolution
6.9"iPhone 16 Pro Max1320 x 2868
6.3"iPhone 16 Pro1206 x 2622
6.7"iPhone 15 Plus1290 x 2796
6.5"iPhone 15 Pro Max1290 x 2796
5.5"iPhone 8 Plus1242 x 2208
12.9" iPadiPad Pro 12.9" (6th gen)2048 x 2732
11" iPadiPad Pro 11" (4th gen)1668 x 2388

Batch Capture Script

Capture the same page across all required simulators:

DEVICES=(
  "iPhone 16 Pro Max"
  "iPhone 16 Pro"
  "iPhone 15 Plus"
  "iPad Pro 12.9-inch (6th generation)"
  "iPad Pro 11-inch (4th generation)"
)

for device in "${DEVICES[@]}"; do
  slug=$(echo "$device" | tr ' ' '-' | tr '[:upper:]' '[:lower:]')
  xcrun simctl boot "$device" 2>/dev/null
  sleep 5
  # Capture the Simulator window with its title bar
  screencapture -l $(osascript -e 'tell app "Simulator" to id of window 1') "screenshots/ios-${slug}.png"
  xcrun simctl shutdown "$device"
done
Boot the app in the simulator first with iblai builds ios dev so each simulator has the app installed.

Android Screenshots (Emulator)

Capture screenshots from the Android emulator for Google Play Console.

Prerequisites

  • Tauri Android project initialized (iblai builds android init)
  • Android Studio with emulators configured

Authentication

Same SSO flow as iOS -- the WebView redirects to the login page on first launch. Log in with your username and password, and the session persists in the emulator's WebView storage for subsequent runs.

Take a Screenshot

  1. Start the Android dev build: iblai builds android dev
  2. Log in when the auth page appears (first run only).
  3. Navigate to the page you want to capture in the emulator.
  4. Capture the full emulator window including the title bar: # macOS — capture the emulator window with its title bar (shows device name) screencapture -l $(osascript -e 'tell app "qemu-system-aarch64" to id of window 1') ~/Desktop/android-screenshot.png Or on Linux, use xdotool to capture the emulator window: import -window "$(xdotool search --name 'Android Emulator')" ~/Desktop/android-screenshot.png

Required Sizes for Google Play

Google Play requires screenshots for phones and tablets:

TypeResolutionEmulator Device
Phone1080 x 2400Pixel 8
Phone (larger)1440 x 3120Pixel 8 Pro
7" Tablet1200 x 1920Nexus 7
10" Tablet1600 x 2560Pixel Tablet

Batch Capture Script

EMULATORS=(
  "Pixel_8"
  "Pixel_8_Pro"
  "Pixel_Tablet"
)

for avd in "${EMULATORS[@]}"; do
  emulator -avd "$avd" -no-audio -no-boot-anim &
  adb wait-for-device
  sleep 10
  # Capture emulator window with title bar
  screencapture -l $(osascript -e 'tell app "qemu-system-aarch64" to id of window 1') "screenshots/android-${avd}.png"
  adb emu kill
done
The app must be installed on each emulator first. Run iblai builds android dev once per emulator to install it.

Summary of Commands

TaskCommand
Generate Playwright screenshot scriptiblai builds screenshot
Generate with custom pagesiblai builds screenshot --pages / /profile
Run web screenshotspnpm exec playwright test e2e/screenshots.spec.ts
iOS Simulator screenshotxcrun simctl io booted screenshot output.png
Android emulator screenshotadb exec-out screencap -p > output.png
Start iOS dev buildiblai builds ios dev
Start Android dev buildiblai builds android dev

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.46%
按下载量换算57

Claude

29.6%
按下载量换算44

Cursor

19.66%
按下载量换算29

Gemini CLI

8.42%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills