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 commands/alphabravo-oss/guild/writegit clone --depth 1 https://github.com/alphabravo-oss/guildWhat 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.00022 | $0.01072 |
| Opus 5 | $0.00011 | $0.00536 |
| Sonnet 5 | $0.00004 | $0.00214 |
| Haiku 4.5 | $0.00002 | $0.00107 |
Grade A, and why
write scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
4. Confirm their dev server is reachable at the baseURL in `playwright.config.ts`. Try `curl -sI $BASE_URL` (default `http://localhost:3000`). If unreachable, ask the user to start it. How it starts
The opening of the file, as written. The whole thing — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
The user wants you to write a Playwright E2E test for a specific user flow. Flow description is in $ARGUMENTS.
Preflight
- Confirm
playwright.config.tsexists in cwd. If not, tell them to run/e2e:initfirst and STOP. - Read
${CLAUDE_PLUGIN_ROOT}/skills/author/SKILL.md(or invoke the author skill) — it has the selector/wait/idempotency rules you must follow. - Confirm Playwright MCP tools are loaded (browser_navigate, browser_snapshot, etc.). If they aren't loaded, tell the user to restart Claude Code and STOP.
- Confirm their dev server is reachable at the baseURL in
playwright.config.ts. Trycurl -sI $BASE_URL(defaulthttp://localhost:3000). If unreachable, ask the user to start it.
For non-trivial flows: delegate to the spec-writer subagent
If the flow description is more than one screen of interaction (multi-step form, login + action, cross-page workflow), spawn the e2e:spec-writer agent. It runs in isolated context which keeps the MCP snapshot noise out of the main thread. Pass it the flow description, baseURL, and any constraints.
For simple single-action flows (one click, one assertion), do it inline — spawning an agent is overhead.
Procedure (inline path)
1. Slug the spec
Convert the flow description to a kebab-case slug. Example: "user logs in and sees dashboard" → login-shows-dashboard. Target path: tests/<slug>.spec.ts. If a file already exists at that path, append -2, -3, etc. — never silently overwrite.
2. Drive the browser
Use Playwright MCP:
browser_navigateto baseURL (and the starting route, if the flow names one).browser_snapshot— read the accessibility tree. Identify the elements you'll interact with by their roles and accessible names.- For each step in the user flow: pick the MCP tool that matches (
browser_click,browser_type,browser_select,browser_press_key, etc.) and execute. - After each step, take another
browser_snapshotto confirm the DOM changed as expected and to capture the post-state for assertions. - Note any console errors during the flow — they belong as assertions in the spec.
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 · 74 lines · 22 tokens per session scan A 696416f4cf8c
write is a command published in the GitHub repository alphabravo-oss/guild (2 stars, last pushed 2d ago), licensed MIT. It adds 22 tokens to every session and 1,072 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
e2e
使用 Playwright 对 Web UI 进行端到端测试(支持视频录制、Trace 录制、控制台/网络日志捕获).
auto-browse
Auto-browse — learn, optimize, and graduate browser operations or web data-mining workflows.
research-perplexity
Run a deep research query using Perplexity's /research mode via Playwright browser automation. This is an alternative to /export-to-council that uses Perplexity's dedicated research mode instead of multi-model council.
review
Compare a reference design against an implementation. Accepts Figma URL, image file, or browser URL as reference.
graphify
Turn your vault into a clustered knowledge graph with HTML and JSON outputs.
laravel-playwright
E2E Playwright patterns; use the laravel:e2e-playwright skill exactly as written.