Skills Plugins MCP Prompt Model 博客 我的中心

ui-walkthrough

Full UI investigation of the current branch's feature. Enumerates every view and state (empty, populated, loading, error, each dialog/menu/panel, responsive breakpoints, light + dark + RTL), captures them with the stubbed Playwright harness, assembles a single-image HTML walkthrough with a global light/dark toggle slider, then runs two review passes: visual/consistency (alignment, spacing, professionalism, dark/light parity, contrast, truncation) and UX/ease-of-use (flow, discoverability, affordances, empty/error states, expectations). Use when asked for a UI walkthrough, screenshot review, design or QA pass, "find anywhere to make it easier/better for users", or before merging frontend work. Pass --fix to auto-apply safe frontend fixes and re-capture; --theme to limit themes; --no-rtl to skip RTL.

DeepseekModel キュレーション済みスキル 品質 優秀 · 90 v1.0.0

取得

https://deepseekmodel.com/api/download.php?id=stirling-tools-stirling-pdf-claude-skills-ui-walkthrough-skill-md&format=skill
ダウンロード .skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name ui-walkthrough description Full UI investigation of the current branch's feature. Enumerates every view and state (empty, populated, loading, error, each dialog/menu/panel, responsive breakpoints, light + dark + RTL), captures them with the stubbed Playwright harness, assembles a single-image HTML walkthrough with a global light/dark toggle slider, then runs two review passes: visual/consistency (alignment, spacing, professionalism, dark/light parity, contrast, truncation) and UX/ease-of-use (flow, discoverability, affordances, empty/error states, expectations). Use when asked for a UI walkthrough, screenshot review, design or QA pass, "find anywhere to make it easier/better for users", or before merging frontend work. Pass --fix to auto-apply safe frontend fixes and re-capture; --theme to limit themes; --no-rtl to skip RTL. argument-hint [feature/area] [--fix] [--theme light|dark|both] [--no-rtl] [--breakpoints] allowed-tools Read, Write, Edit, Glob, Grep, Bash UI Walkthrough Produce a reviewable HTML walkthrough of a feature's UI in every state and theme, then critique it. Optionally auto-fix and re-capture. $ARGUMENTS may name the feature/area to focus on. If empty, scope from the current branch diff. Flags: --fix , --theme light|dark|both (default both), --no-rtl , --breakpoints (also capture phone/narrow widths). What this repo gives you (use it, don't reinvent) Stubbed Playwright project = backend-free screenshots via page.route() mocks. Reference implementation: frontend/editor/src/core/tests/stubbed/files-page-screenshots.spec.ts . It already shows the light / dark / RTL passes, JWT seeding, IndexedDB seeding, and dumping PNGs to a screenshots/<area>/ folder. Copy its shape. Helpers: frontend/editor/src/core/tests/helpers/ui-helpers.ts ( uploadFiles , openSettings , waitForModalOpen , dismissTourTooltip , …) and the stub-test-base fixtures ( autoGoto , seedJwt , viewport ). Config: frontend/editor/playwright.config.ts (run from frontend/editor/ ). Report template: report-template.html - self-contained, one big image at a time, a global light/dark slider that flips every shot, thumbnail rail, prev/next + arrow keys, and a Findings tab. Process 1. Scope the feature If $ARGUMENTS is empty: git diff --name-only main...HEAD and read the PR/commits. Identify changed pages, tools ( core/components/tools/<tool> or core/tools/<tool> ), dialogs, panels, and routes. Enumerate every view and state to capture, e.g.: empty / populated / loading / error / disabled; each dialog, menu, popover, tooltip; each tab or step; selection + multi-select; success/result panel; and (if relevant) permission/role variants. Write the list down before capturing - it's the report's spine. 2. Prepare the harness (worktree-safe) Worktrees have no node_modules and no generated icons. From repo root: cd frontend && npm ci # or junction main's node_modules (see memory) cd frontend/editor && node scripts/generate-icons.js Kill any stale dev server first (it serves old modules): Get-NetTCPConnection -LocalPort 5173 -State Listen | %{ Stop-Process -Id $_.OwningProcess -Force } 3. Write the capture spec Create frontend/editor/src/core/tests/stubbed/<feature>-walkthrough.spec.ts , modeled on files-page-screenshots.spec.ts . For each enumerated view: stub the APIs it needs, drive the UI to that state, wait on a real locator (not a fixed sleep), await settle(page) for Mantine portals, then page.screenshot({ path: shotPath("NN_name_<theme>") }) . Capture each view in light and dark (and RTL unless --no-rtl ). Reuse the enableDarkMode / enableRtl init-script pattern from the reference spec ( localStorage["mantine-color-scheme"]="dark" + emulateMedia({colorScheme:"dark"}) ). Name shots NN_<view>_<theme>.png so light/dark pair up by suffix. Prefer stable test-ids over translated accessible names (RTL/i18n breaks text locators). Run it: cd frontend/editor && npx playwright test --project=stubbed <feature>-walkthrough.spec.ts . Add --project=stubbed-firefox / -webkit only if cross-browser layout matters. 4. Build the report Copy report-template.html to screenshots/<feature>/walkthrough.html (so the relative screenshots/... image paths resolve, or rewrite paths to sit beside it). Build the manifest and inject it: replace the JSON between the /*__DATA__*/ … /*__END__*/ markers with one views[] entry per view ( {id,title,light,dark,viewport,notes} ) and an empty findings object you'll fill in step 5. Keep light / dark as relative paths. The toggle slider answers the "one big image + flip light/dark for all" request: it shows a single large screenshot, and switching the slider re-themes every view. 5. Review pass 1 - visual & consistency Open each screenshot (Read the PNG) and judge against the others: alignment & spacing rhythm, control placement, button hierarchy, typography, light/dark parity (contrast, invisible borders, washed-out text, wrong tokens), truncation/overflow, RTL mirroring, focus states, icon consistency, professional polish. Record each issue as a finding {severity:high|med|low, view, title, detail, fix} . 6. Review pass 2 - UX & ease of use Walk the flow as a first-time user: discoverability, number of steps, affordance clarity, empty-state guidance, error recovery, destructive-action confirmation, defaults, loading feedback, mobile reachability, accessible names, and whether the UI matches user expectations for this kind of tool. Record findings the same way. Write both finding lists into the report's findings.visual / findings.ux , and add short per-view notes . Re-inject the manifest. 7. If --fix Only safe, self-contained frontend fixes (spacing, alignment, tokens, missing dark-mode colors, labels, aria, obvious copy). For each: edit the component/CSS, mark the finding fixed:true with what changed, then re-run the spec to re-capture the affected shots and regenerate the report. Run task frontend:check . Leave anything risky or ambiguous as a finding, not a change. 8. Deliver Tell the user the report path and give a tight chat summary: N views × themes captured, top findings by severity, and (if --fix ) what changed. Optionally SendUserFile the walkthrough.html . Gotchas Stale :5173 server serves old bundles - kill it before capturing (see step 2). Missing material-symbols-icons.json → blank app → every shot times out. Run generate-icons.js first. await settle(page) before shots or portals/transitions tear mid-capture. Don't commit the generated screenshots/ or the throwaway spec unless asked.
このスキルを起動するキーワード。クリックでコピーできます。

このスキルにはトリガーワードがありません。

ダウンロードした .skill に含まれるフィールド。
フィールド 説明
formatフォーマット識別子(skill/v1)
skill_idスキル固有 ID
nameスキル名
versionバージョン
description説明
categoryカテゴリ(配列)
trigger_wordsトリガーワード
tagsタグ
sourceソース
source_urlソース URL(本ページ)
exported_atエクスポート日時(ダウンロード毎)
system_promptシステムプロンプト本文
model_configモデル設定:provider / model / temperature / max_tokens / top_p
examplesサンプル
install_guide各プラットフォームの導入説明(Coze / Dify / Claude / カスタム)
同じスキルを各プラットフォーム形式で出力できます。
.skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能 ダウンロード
.skillpro 拡張形式。scripts / tools / dependencies / hooks を含む ダウンロード
.json 純粋な JSON 出力。system_prompt とモデル設定のみ ダウンロード
Coze frontmatter 付き Markdown。Coze へのインポート用 ダウンロード
Dify Dify DSL。アプリ作成後にそのままインポート ダウンロード

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

验证码 --

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。