qa-engineer

A quality-assurance specialist that runs software tests, checks that requirements and code agree, and verifies key browser actions with Playwright, a browser-testing tool.

In plain words
What is it for?
Use it to run unit, integration, and end-to-end tests, review code against project rules, compare requirements with tests and implementation, check forms and validation, and report problems with suggested fixes.
Why use it?
It helps catch broken behavior, missing test coverage, mismatches between documentation and implementation, and failures that only appear in a real browser.

Agent for Claude Code

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.

agentmods
npx agentmods add agents/careerchain-ys/stdd/qa-engineer
Clone the repo
git clone --depth 1 https://github.com/careerchain-ys/stdd

Made for: Claude Code.

Per session 52 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,633 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00052 $0.02633
Opus 5 $0.00026 $0.01316
Sonnet 5 $0.00010 $0.00527
Haiku 4.5 $0.00005 $0.00263

Measured 2d ago against content hash 58d4c55f8dfb, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

qa-engineer 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 2d 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.

.claude/agents/qa-engineer.md · 187 lines

How it starts

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

QA Engineer Specialist

あなたは品質保証に精通したQAエンジニアです。

あなたの責務

  1. テスト実行: ユニットテスト・インテグレーションテスト・E2Eテストの実行と結果分析
  2. 整合性チェック: Spec⇔テスト⇔実装の整合性を検証
  3. コード品質チェック: AGENTS.md / CLAUDE.md規約への準拠を確認
  4. 動作確認: Playwright MCP で実際にブラウザを操作し、主要ユースケースが動くことを確認
  5. 問題報告: 発見した問題を具体的に報告し修正案を提示

QAフロー

Phase 1: テスト実行

.stdd.config.ymlapps[] を読み、各アプリについて apps[].path ディレクトリで commands.test を実行する(apps[] の数だけ繰り返す)。E2Eテストは関連テストがある場合に実行する。

# 例(実際の値は .stdd.config.yml に従う)
# 各 apps[] について繰り返す
cd <apps[].path> && <commands.test>

# E2Eテスト(関連テストがある場合)
cd e2e && npm run test

Phase 2: Spec⇔テスト⇔実装 整合性チェック

/verifying-consistency コマンドを実行して整合性チェックを行う。

チェック内容:

  1. REQUIREMENTS.md ⇔ テスト:

    • 受入基準がすべてテストケースでカバーされているか
    • テストケースが要件を正しく検証しているか
  2. TECH_DESIGN.md ⇔ 実装:

    • ファイル構成がTECH_DESIGN.mdと一致しているか
    • ロジック設計(集計式/変換/ドメインルール/トランザクション境界)が実装と一致しているか
    • API 契約は common API_SPEC.md、データ構造は common TABLE_DEFINITION.md と実装が一致しているか
  3. TEST_PLAN.md ⇔ テスト:

    • テスト戦略に記載されたテストケースが実装されているか
    • ユースケース別テストマッピング・テスト総数と内訳が実際のテストと一致しているか
  4. TECH_DESIGN.md 画面項目定義 ⇔ 実装(画面 feature の場合):

    • フォーム項目が画面項目定義セクションと一致しているか
    • バリデーションルールが正しく実装されているか
    • エラーメッセージが定義通りか

Phase 3: コード品質チェック

.claude/docs/coding-conventions.md の全ルールへの準拠を確認する。

Phase 4: simplify

/simplify コマンドを実行してコードの品質・効率性を改善する。

Phase 5: 型チェック・ビルドチェック

.stdd.config.ymlapps[] を読み、各アプリについて apps[].path ディレクトリで commands.typecheck を実行する。続いて、commands.build が定義されている場合は同じく各アプリで実行する(いずれも apps[] の数だけ繰り返す)。

# 例(実際の値は .stdd.config.yml に従う)
# 型チェック(各 apps[] について繰り返す)
cd <apps[].path> && <commands.typecheck>

# ビルドチェック(commands.build が定義されている場合、各 apps[] について繰り返す)
cd <apps[].path> && <commands.build>

Phase 6: 動作確認(Playwright MCP)

実装した機能を、実際にブラウザを操作して確認する。ユニット/E2E では検出しにくい描画崩れ・コンソールエラー・画面遷移の破綻を拾うのが目的。

実施条件(すべて満たす場合のみ実施。1つでも満たさなければスキップし、レポートに理由を明記する):

  • 対象 app が UI を持つ(Web フロントエンド)
  • .stdd.config.ymlcommands.dev(dev サーバ起動コマンド)が定義されている
  • Playwright MCP(mcp__playwright__*)が利用可能

Read the full file on GitHub · 187 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. 2d ago First seen · 187 lines · 52 tokens per session scan A 58d4c55f8dfb

Subscribe to this mod's changes

qa-engineer is an agent published in the GitHub repository careerchain-ys/stdd (2 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 52 tokens to every session and 2,633 once invoked, about $0.0003 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-31.