agentic-playwright config.instructions.md

Configuration rules for a test project, covering application settings, environment variables, URLs, and secrets. Environment files provide values for a particular setup without placing credentials in source code.

In plain words
What is it for?
Use them when adding URLs, tokens, accounts, passwords, utility settings, or new environment variables and their safe example entries.
Why use it?
They keep sensitive values out of the codebase and give each setting one clear, documented source.

Instructions file for GitHub Copilot

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 instructions/idavidov13/agentic-playwright/config
Clone the repo
git clone --depth 1 https://github.com/idavidov13/agentic-playwright

Made for: GitHub Copilot.

Per session 2,424 This file is loaded in full into every session.
When invoked 2,424 The same file — it is already loaded in full.
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.02424 $0.02424
Opus 5 $0.01212 $0.01212
Sonnet 5 $0.00485 $0.00485
Haiku 4.5 $0.00242 $0.00242

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

Security

Grade A, and why

agentic-playwright config.instructions.md 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.

.github/instructions/config.instructions.md · 215 lines

How it starts

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

Configuration

Critical

  • NEVER hardcode URLs, tokens, emails, or passwords anywhere in the scaffold. The only source of truth for env-driven values is process.env.*, backed by env/.env.${environment}.
  • NEVER hardcode endpoint paths or route strings in config/. Paths belong in enums/{area}/* (see the enums skill).
  • ALWAYS add every new env variable to env/.env.example with a safe placeholder — no real secrets, no production URLs.
  • ALWAYS add a JSDoc comment on every config property describing the value and the backing env var.
  • ALWAYS keep app-facing URLs/settings in config/app.ts and utility/third-party services in config/util/util.ts. Do not create ad-hoc config files elsewhere.
  • NEVER commit env/.env.dev, env/.env.staging, or any other real env file containing credentials. Only env/.env.example is tracked.

File Locations

Type Directory Purpose
App config config/app.ts URLs and settings for the main application
Utility config config/util/util.ts Utility / third-party service configuration
Env template env/.env.example Tracked template — safe placeholders only
Env (active) env/.env.${ENVIRONMENT} Real values, selected at runtime (.env.dev etc.) — untracked

Instructions

Phase 1: Understand how env files are loaded

playwright.config.ts loads env values via dotenv at startup:

const environment = process.env.ENVIRONMENT ?? 'dev';
const environmentPath = `./env/.env.${environment}`;
dotenv.config({ path: environmentPath });

Consequences:

  • Default environment is dev (file env/.env.dev).
  • Override with a shell variable: ENVIRONMENT=staging npx playwright test.
  • The selected file must exist — missing files silently load nothing and every process.env.* becomes undefined.
  • ENVIRONMENT itself is set at the shell level; it is not declared in any .env file.

Read the full file on GitHub · 215 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 · 215 lines · 2,424 tokens per session scan A bcec01fce9c8

Subscribe to this mod's changes

agentic-playwright config.instructions.md is an instructions file published in the GitHub repository idavidov13/agentic-playwright (139 stars, last pushed 6d ago), licensed MIT. It adds 2,424 tokens to every session, about $0.0121 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-30.