web-checklist

web-checklist is a command for Claude Code from sangrokjung/claude-forge. It costs 16 tokens per session (2,163 once invoked), scanned A, original, MIT.

A checklist command for testing a website after a Git merge. It records checklist items in a file so progress can be viewed and individual checks can be marked complete.

In plain words
What is it for?
For creating a saved checklist from recent changes, viewing its status, and completing specific testing items.
Why use it?
It prevents post-merge web checks from being forgotten and makes unfinished checks visible across sessions.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the claude-forge plugin — 33 skills, 39 commands, 17 agents shipped together

Good fit For creating a saved checklist from recent changes, viewing its status, and completing specific testing items.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/sangrokjung/claude-forge/web-checklist
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/sangrokjung/claude-forge

Made for: Claude Code.

Or install claude-forge, the plugin that ships this one along with the rest of its 33 skills, 39 commands, 17 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for web-checklist

README.md
[![agentmods](https://agentmods.dev/badge/commands/sangrokjung/claude-forge/web-checklist.svg)](https://agentmods.dev/commands/sangrokjung/claude-forge/web-checklist)
Your own site
<a href="https://agentmods.dev/commands/sangrokjung/claude-forge/web-checklist"><img src="https://agentmods.dev/badge/commands/sangrokjung/claude-forge/web-checklist.svg" alt="Measured on agentmods" height="20"></a>
Per session 16 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,163 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00016 $0.02163
Opus 5 $0.00008 $0.01081
Sonnet 5 $0.00003 $0.00433
Haiku 4.5 $0.00002 $0.00216

Measured 8d ago against content hash 9f1ae2221bf5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

web-checklist scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/web-checklist.md · 294 lines

How it starts

The opening of the file, as written. The whole thing — 294 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Task

0단계: 컨텍스트 수집

git log --oneline -3
git diff HEAD~1 --name-only
git diff HEAD~1 --stat
git branch --show-current

다음 파일 읽기 (있는 것만):

  • .claude/handoff.md - 개발 의도, 테스트 필요 사항
  • spec.md - 기능 요구사항
  • prompt_plan.md - Task 상세
  • .claude/web-checklist-state.json - 기존 체크리스트 상태

0.5단계: 플래그 분기

--status 플래그 → 상태 조회 모드:

.claude/web-checklist-state.json 읽기:

파일 있으면:

════════════════════════════════════════════════════════════════
📋 Web Checklist Status (v6)
════════════════════════════════════════════════════════════════

📅 생성: [created timestamp]
📌 커밋: [commit hash]
🌿 브랜치: [branch name]

진행률: [completion]% ([done]/[total])

## 미완료 항목
- [ ] [ID: N] [category] [text]
- [ ] [ID: N] [category] [text]
...

## 완료 항목
- [x] [ID: N] [category] [text]
- [x] [ID: N] [category] [text]
...

완료 처리: /web-checklist --complete [ID]
════════════════════════════════════════════════════════════════

→ 종료

파일 없으면:

ℹ️ 저장된 체크리스트가 없습니다.

생성: /web-checklist --save

→ 종료


--complete ID 플래그 → 항목 완료 모드:

.claude/web-checklist-state.json 읽기:

해당 ID 찾으면:

  • items[ID].donetrue 로 변경
  • completion 재계산
  • 파일 저장
✅ 체크리스트 항목 완료

  [ID]: [text] → ✅ Done

진행률: [new completion]% ([done]/[total])

남은 항목: [remaining count]개
전체 완료 시: /sync-docs

→ 종료

해당 ID 없으면:

❌ ID [N]을 찾을 수 없습니다.

유효한 ID: [사용 가능한 ID 목록]
상태 확인: /web-checklist --status

→ 종료


1단계: 변경 영역 분석

변경된 파일 카테고리별 분류:

카테고리 파일 패턴 테스트 영역
UI/화면 *.tsx, *.jsx, components/* 화면 표시, 반응형, 인터랙션
API/서버 api/*, server/*, *.ts 엔드포인트, 응답
인증 auth/*, login/*, session/* 로그인, 로그아웃, 권한
결제 payment/*, billing/* 결제 플로우, 금액
데이터 *.sql, supabase/*, db/* 데이터 정합성
스타일 *.css, *.scss, tailwind.* 레이아웃, 디자인

2단계: 테스트 체크리스트 생성

handoff.md의 "테스트 필요 사항" 참조해서 구체화.

UI 변경 시:

  • 화면이 정상적으로 렌더링되는지
  • 반응형 (모바일/태블릿/데스크톱) 확인
  • 로딩 상태 표시 확인
  • 에러 상태 표시 확인
  • 빈 상태(empty state) 표시 확인

Read the full file on GitHub · 294 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 294 lines · 16 tokens per session scan A 9f1ae2221bf5

Subscribe to this mod's changes

web-checklist is a command published in the GitHub repository sangrokjung/claude-forge (825 stars, last pushed 5d ago), licensed MIT. It adds 16 tokens to every session and 2,163 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.