소스 정보
- 저장소
- ccwq/infocard-pub
- 최근 소스 활동
- 2026년 8월 26일 07:14
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ccwq/infocard-pub --skill infocard-visual-evidence-grounding명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use before infocard .docs authoring to select a registered theme from content-aware candidates. Owns the only content-to-theme association, capability filtering, bounded reproducible variation, and theme-decision.json.
Use when one URL or a complete user brief should become one published infocard through the .docs promotion workflow.
Light-batch publish 2–3 cards in parallel without worktree.
SKILL.md 표시 중
| name | infocard-visual-evidence-grounding |
| description | Use when grounding infocard screenshot findings in DOM. |
| version | 1.0.0 |
| author | Hermes Agent |
| license | MIT |
| metadata | {"hermes":{"tags":["infocard","visual-review","evidence","responsive","screenshot","DOM"],"related_skills":["infocard-publish-sop","infocard-mobile-verifier","infocard-creation-preview-standards"]}} |
Keep visual acceptance evidence accurate and actionable. A screenshot model can identify real defects, but it can also misread a viewport crop, infer elements that are not present, or confuse a theme variant with a missing component. Reconcile visual findings with the exact rendered target and DOM before changing HTML/CSS or declaring a visual gate passed.
Use evidence in this order:
getBoundingClientRect(), computed styles, scroll dimensions, and overflow ownership.A vision report that contradicts the DOM must be recorded as a false-positive or unresolved discrepancy, not silently turned into a design requirement.
Vision models are reliable for spatial/compositional findings but systematically unreliable for:
2026-08-21 in the HTML may be read as 2026-07-27 or another plausible near-date. Always cross-verify numeric data fields by fetching the actual HTML (curl <url> or web_extract) and grepping for the value, rather than trusting the screenshot description.Record the URL/path, cache-busting token, viewport width/height, whether the image is viewport-only or full-page, target regions, and the current HTML/CSS revision.
A 1440×900 or 390×844 viewport screenshot is a crop. Do not call a long page or table truncated solely because it continues below the image boundary.
Use web-capture — not browser_exec cdp() or Python WebSocket CDP (confirmed timeout-prone 2026-08-26).
web-capture is the only approved screenshot gate. It wraps agent-browser --cdp 9222, handles tab selection, viewport switching, geometry checks, and PNG output.
Desktop / mobile / tablet capture are selected by the web-capture preset.
At minimum inspect:
({
innerWidth: window.innerWidth,
innerHeight: window.innerHeight,
clientWidth: document.documentElement.clientWidth,
scrollWidth: document.documentElement.scrollWidth,
scrollHeight: document.documentElement.scrollHeight,
bodyScrollWidth: document.body.scrollWidth,
bodyClientWidth: document.body.clientWidth
})
For every reported element, verify that it exists and inspect computed display, position, fontSize, overflow, dimensions, and getBoundingClientRect(). For fixed/sticky controls, check intersection with content at the target scroll position.
For a reported table cutoff, inspect the table and containing section separately: scrollHeight, clientHeight, overflow, and the last row rectangle. A viewport crop is not content clipping.
For fixed export/save controls, prefer document flow on narrow screens when the control is non-essential. Otherwise reserve bottom safe-area/padding and verify at the actual scroll position.
For mobile typography, check computed sizes rather than screenshot perception. Raise visible metadata, labels, and table headers to the repository minimum (normally at least 11.2px, preferably 12px for dense cards), then re-check wrapping and rhythm.
For long cards and tables, distinguish viewport crop from actual clipping. Use a table-local scroll container or mobile card/list alternative when required. Never shrink the entire page merely to hide overflow.
Any HTML/CSS/structure change invalidates affected visual evidence. Re-render with a fresh URL/cache-bust, capture desktop and mobile as required, and produce a new per-image disposition. Do not reuse prior screenshots as proof.
Judge against the selected theme's actual contract, not a reviewer-implied variant. For example, a redswiss single-project card may legitimately use the standard topbar variant; a reviewer expecting a diagonal hero is not proof that the card is wrong. Verify implemented tokens and structural classes first.
Every visual review MUST complete this step before any other finding:
<link rel="stylesheet" href="../theme/X.html"> tag to get the declared theme name.THEME_MISMATCH.This step prevents the most common failure mode: checking layout/content while the page is visually broken due to a missing or wrong theme.
A local repair, local screenshot, successful build, or HTTP 200 is not evidence that the public artifact changed. Before declaring a repair complete, compare the exact cache-busted public HTML with the candidate's release fingerprint: target slug/title, theme marker, canonical tokens, structural signatures, and a release-specific marker. If the public response still has the old fingerprint, classify the result as PUBLIC_UNCHANGED / LOCAL_ONLY; an unchanged public screenshot proves non-delivery, not successful repair.
For mobile review, long code blocks are a first-class overflow trigger. A visible code block pressed against or cut by a 390px viewport is a FAIL until DOM checks confirm that the code block or a dedicated wrapper owns local horizontal scrolling. Inspect page scrollWidth, code/wrapper clientWidth and scrollWidth, overflowX, max-width, box-sizing, and parent geometry. Do not accept overflow-x:auto on a code element alone as proof.
Keep visual state separate from static/build and public HTTP state:
VISUAL_PASSED: current required screenshots reviewed with zero critical/major defects;VISUAL_BLOCKED: a verified critical/major defect remains;VISUAL_PENDING: required capture/review evidence is unavailable or unreliable;PUBLISHED_PENDING_VISUAL: public release succeeded under the explicitly allowed fallback, but visual pass was not established.Never describe a card as fully verified using only build success, HTTP 200, DOM snapshots, or one cropped screenshot.
Session-specific examples and verification snippets are in references/visual-review-grounding-20260808.md.
<link> theme; THEME_MISMATCH is Critical.