ソース情報
- リポジトリ
- Hbin77/codex-kit
- ソースの最終更新活動
- 2026年8月7日 04:26
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Hbin77/codex-kit --skill qaコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | qa |
| description | Browser QA — automation, accessibility audit, user flow verification |
Run QA testing on the target application with browser automation, accessibility audit, and user flow verification.
Target: the task/scope the user described when invoking this skill (if none given, ask or infer from context)
npx playwright --version.playwright in devDependencies: install in place (npm install && npx playwright install chromium).npm init inside it:
mkdir -p ~/.cache/claude-qa-playwright
( cd ~/.cache/claude-qa-playwright && npm install playwright && npx playwright install chromium )
Then invoke Playwright via that path (e.g. NODE_PATH=~/.cache/claude-qa-playwright/node_modules node script.js, or run the script from within that directory).package.json scripts, .env) and start it (npm run dev, npm start, bun dev). Wait until ready.Navigate to the URL. Take full-page screenshots at 3 viewports (375px, 768px, 1280px). Report console errors, broken images, layout issues. Register console/pageerror listeners before navigation.
const { chromium } = require('playwright');
(async () => {
const browser = await chromium.launch();
const page = await browser.newPage();
const errors = [];
page.on('console', m => { if (m.type() === 'error') errors.push(m.text()); });
page.on('pageerror', e => errors.push(e.message));
for (const w of [375, 768, 1280]) {
await page.setViewportSize({ width: w, height: 900 });
await page.goto('URL_HERE', { waitUntil: 'networkidle' });
await page.screenshot({ path: `/tmp/qa-${w}.png`, fullPage: true });
}
// Accessibility audit (axe-core)
await page.addScriptTag({ : });
a11y = page.( () => axe.());
.(.({ errors, : a11y. }, , ));
browser.();
})();
Based on app type, test critical flows sequentially:
Run WCAG AA checks (axe-core as above): contrast ratios, form labels, alt text, keyboard navigation, focus indicators, semantic HTML.
## QA Report: [target]
### Summary
- Pages tested: N · Viewports: 375/768/1280 · Findings: N (Blocker/Major/Minor)
- Accessibility violations: N
### Blocker (must fix before ship) [findings + screenshot paths]
### Major (should fix) [findings + screenshots]
### Minor (nice to have) [findings]
### Accessibility [WCAG violations + remediation]
### Verdict: PASS / FAIL
If BLOCKER or MAJOR issues found: present findings with screenshots, ask "Fix these automatically?", and if yes → fix code → re-run affected tests → verify.