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 instructions/mrkanitkar/playwright-praman/agents-mdgit clone --depth 1 https://github.com/mrkanitkar/playwright-pramanWrote 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.
[](https://agentmods.dev/instructions/mrkanitkar/playwright-praman/agents-md)<a href="https://agentmods.dev/instructions/mrkanitkar/playwright-praman/agents-md"><img src="https://agentmods.dev/badge/instructions/mrkanitkar/playwright-praman/agents-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02985 | $0.02985 |
| Opus 5 | $0.01492 | $0.01492 |
| Sonnet 5 | $0.00597 | $0.00597 |
| Haiku 4.5 | $0.00298 | $0.00298 |
Grade C, and why
playwright-praman AGENTS.md scanned grade C 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 5d 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
- No bash-only npm scripts — use Node.js built-ins (`fs.rmSync`, not `rm -rf`) How it starts
The opening of the file, as written. The whole thing — 235 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — Universal Agent Instructions for Praman v1.0
For Plugin Contributors
If you are an AI agent working on the playwright-praman source code, follow these rules.
Architecture
- 5-layer: Core Infrastructure → Bridge Adapters → Typed Proxy → Fixtures → AI
- Layer dependency: lower layers NEVER import from higher layers
- All modules ≤ 300 LOC (document exceptions)
Rules
- TypeScript strict mode — no
any, noas unknown as T - Every public function: TSDoc +
@exampletag (TSDoc only, NOT JSDoc) - Every module ≤ 300 LOC
- Every error:
extends PramanError, includescode,attempted,retryable,suggestions[] - No
console.log— use pino:import { logger } from '#core/logging'; - No
page.waitForTimeout()— banned - Unit tests: hermetic, use Vitest, mock bridge interactions
- Config is
Readonly<PramanConfig>— never mutate - Imports: use
#core/*,#bridge/*,#proxy/*path aliases - Files: kebab-case. Types: PascalCase. Functions: camelCase. Constants: UPPER_CASE.
- All relative imports must include
.jsextension - Node builtins must use
node:prefix (node:path,node:fs) - ESM only in source —
import, neverrequire - No
Iprefix on interfaces —BridgeAdapternotIBridgeAdapter
Cross-Platform Requirements
- Always use
node:pathmethods — never hardcoded/or\ - Always use
node:fs/promisesfor async file operations - Use
import.meta.url+fileURLToPathfor__dirnameequivalent - No bash-only npm scripts — use Node.js built-ins (
fs.rmSync, notrm -rf) - Dual ESM+CJS build: validate with
npm run check:exports
Import Order
- Node built-ins (
node:path,node:fs) - External packages (
zod,pino) - Internal (
#core/,#bridge/,#proxy/) - Parent (
../) - Sibling (
./)
Error Pattern
throw new ControlError({
code: 'ERR_CONTROL_NOT_FOUND',
message: `Control not found: ${selector}`,
attempted: `Find control with selector: ${JSON.stringify(selector)}`,
retryable: true,
details: { selector, timeout: config.controlDiscoveryTimeout },
suggestions: [
'Verify the control ID exists in the UI5 view',
'Check if the page has fully loaded (waitForUI5Stable)',
'Try using controlType + properties instead of ID',
],
});
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.
- 5d ago First seen · 235 lines · 2,985 tokens per session scan C 7cd6f867f02b
playwright-praman AGENTS.md is an instructions file published in the GitHub repository mrkanitkar/playwright-praman (11 stars, last pushed yesterday), licensed Apache-2.0. It adds 2,985 tokens to every session, about $0.0149 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
playwright CLAUDE.md
Claude Code instructions for microsoft/playwright, covering monorepo packages, browser packages, tooling packages, key directories and build.
playwright copilot-instructions.md
Copilot instructions for microsoft/playwright, a project described as: Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.
playwright-mcp CLAUDE.md
Claude Code instructions for microsoft/playwright-mcp, covering commit convention, ... make changes .., summary, rolling playwright and preparing a release.
playwright-cli CLAUDE.md
Claude Code instructions for microsoft/playwright-cli, covering commit convention, ... make changes .. and summary.
playwriter AGENTS.md
Instructions for remorses/playwriter, covering backward compatibility, architecture, development, running mcp locally and running cli locally.
moli AGENTS.md
AGENTS.md instructions for lexmount/moli: Before committing changes that modify Rust source code or Rust build metadata (such as Cargo.toml, Cargo.lock, or rust-toolchain), run all of the following from the repository root and ensure they pass.