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.
npx agentmods add skills/morodomi/dev-crew/generate-e2enpx skills add morodomi/dev-crew --skill generate-e2egit clone --depth 1 https://github.com/morodomi/dev-crewWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00117 | $0.00701 |
| Opus 5 | $0.00059 | $0.00351 |
| Sonnet 5 | $0.00023 | $0.00140 |
| Haiku 4.5 | $0.00012 | $0.00070 |
Grade A, and why
generate-e2e 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 yesterday.
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.
What it actually says
Generate E2E
security-scan結果からPlaywright E2Eテストコードを自動生成するスキル。
Usage
/generate-e2e # 直前のscan結果からテスト生成
/generate-e2e ./scan-result.json # 指定JSONから生成
/generate-e2e --force # 既存ファイル上書き
Options
| Option | Description | Required |
|---|---|---|
| [path] | security-scan JSON file | No (uses last scan) |
| --force | 既存ファイルを上書き | No |
Input Format
security-scan が出力するJSON形式を入力として受け取る。
{
"metadata": {
"scan_id": "<uuid>",
"scanned_at": "<timestamp>",
"target_directory": "<path>"
},
"summary": {
"total": 3,
"critical": 1,
"high": 1,
"medium": 1,
"low": 0
},
"vulnerabilities": [
{
"id": "XSS-001",
"vulnerability_class": "xss",
"severity": "high",
"file": "app/Controllers/UserController.php",
"line": 45,
"endpoint": "/users/{id}"
}
]
}
Output
生成されるファイルは tests/security/ ディレクトリに出力される。
<target-project>/
└── tests/
└── security/
├── playwright.config.ts # Playwright設定
└── <vuln-type>.spec.ts # 脆弱性別テストファイル
Behavior
Empty Vulnerabilities (0件)
脆弱性が0件の場合、playwright.config.ts のみ生成される。テストファイルは生成されない。
File Overwrite
- デフォルト: 既存ファイルがある場合は警告して中断
- --force: 既存ファイルを強制的に上書き
Workflow
1. security-scan JSON読み込み
2. 脆弱性タイプ別にグループ化
3. テンプレートから設定ファイル生成
4. 各脆弱性タイプのテストファイル生成
5. tests/security/ に出力
Reference
詳細は reference.md を参照。
What ships with it
9 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- reference.md 7.2 KB
- templates/auth.spec.ts.tmpl 4.9 KB
- templates/base-test.ts.tmpl 622 B
- templates/csrf.spec.ts.tmpl 5.5 KB
- templates/playwright.config.ts.tmpl 661 B
- templates/sqli.spec.ts.tmpl 6.6 KB
- templates/ssrf.spec.ts.tmpl 2.8 KB
- templates/ssti.spec.ts.tmpl 5.5 KB
- templates/xss.spec.ts.tmpl 3.1 KB
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.
- yesterday First seen · 93 lines · 117 tokens per session scan A c327ad3aaead
generate-e2e is a skill published in the GitHub repository morodomi/dev-crew (1 stars, last pushed 3d ago), licensed MIT. It adds 117 tokens to every session and 701 once invoked, about $0.0006 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.
Other skills, from other repositories
green-impl
Use after RED is verified failing. Writes the minimum code to make RED tests pass, then verifies on a live stack with Playwright screenshots before any hand-off. Implements the verify-before-scan rule.
general-video
Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…
use-agent-browser-for-airi
Test AIRI display-model imports with agent-browser across stage-tamagotchi Electron, stage-web, and stage-pocket mobile web layouts. Use when uploading and verifying contributor-supplied Live2D ZIP, VRM, or MMD ZIP/PMX/PMD files through AIRI's model selector, including onboarding bypass, format-specific import…
opencli-sitemap-author
Use when creating or maintaining OpenCLI site sitemaps: agent-facing navigation, page-state, action, workflow, API-reference, pitfall, and fallback knowledge for a website. Use after browser exploration discovers durable site context, when a sitemap is stale, or when promoting local site knowledge into the repo.
debug-optimize-lcp
Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…
pinchtab-mcp
Use this skill when a task requires browser automation through PinchTab's MCP server connected to a remote browser instance. Covers navigation, element interaction, data extraction, form filling, multi-step flows, and session management via MCP tools.