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/kint4/autoframe/new-pagenpx skills add kint4/autoframe --skill new-pagegit clone --depth 1 https://github.com/kint4/autoframeWrote 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/skills/kint4/autoframe/new-page)<a href="https://agentmods.dev/skills/kint4/autoframe/new-page"><img src="https://agentmods.dev/badge/skills/kint4/autoframe/new-page.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.00038 | $0.00509 |
| Opus 5 | $0.00019 | $0.00254 |
| Sonnet 5 | $0.00008 | $0.00102 |
| Haiku 4.5 | $0.00004 | $0.00051 |
Grade A, and why
new-page 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 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.
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
/new-page — Generate a Page Object
Type: Functional Description: Generates a typed Playwright Page Object for a given URL or feature, following Autoframe's Page Object Model conventions exactly.
Input Format
The user provides one of:
- A page URL (e.g.
https://app.com/login) - A feature name (e.g.
login,checkout) - A description of the page and its key elements
If the page has elements you cannot infer, ask up to 3 clarifying questions about the key elements and actions on the page.
Output Format
A single Page Object file at pages/[feature-name]/[PageName]Page.ts that follows the POM pattern in CLAUDE.md:
expectimported from@playwright/test- All locators declared
readonlyand assigned in the constructor goto()navigation method- Verb-named action methods
expect-prefixed assertion methods
Step-by-Step Instructions
- Read the POM conventions in CLAUDE.md.
- Determine the feature folder (kebab-case) and the class name (
PascalCase+Page). - Identify the page's key elements. Prefer
getByRole,getByLabel,getByPlaceholder— never CSS selectors orpage.$()unless no semantic locator exists. - Write the file:
- Import
Page,Locator,expectfrom@playwright/test. - Declare
readonly page: Pageand onereadonlyLocator per element. - Assign all locators in the constructor.
- Add
goto(). - Add one verb-named action method per user action (one responsibility each).
- Add
expect-prefixed assertion methods for key states.
- Import
- Save to
pages/[feature-name]/[PageName]Page.ts. - Suggest running
/new-specnext to generate tests for this page, and offer to create a fixture.
Rules
- Locators only in the constructor, never inline in methods.
- One action per method; methods named as verbs.
- Assertions prefixed with
expect. - Semantic locators over CSS, always.
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 · 52 lines · 38 tokens per session scan A abc97f11e3c2
new-page is a skill published in the GitHub repository kint4/autoframe (6 stars, last pushed 2mo ago), licensed MIT. It adds 38 tokens to every session and 509 once invoked, about $0.0002 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
JMeter Load Testing
Load and performance testing skill using Apache JMeter, covering test plans, thread groups, assertions, listeners, timers, and distributed testing.
qawolf-cli
Manage QA Wolf through the qawolf CLI. Use when asked to create, update, or list coverage requests, bug reports, or maintenance reports; start a run of flows or tags on the QA Wolf platform or read a run's results; list, set, or delete environment variables; manage environments, flows, or tags; request automation of…
k6-load-testing
Comprehensive k6 load testing skill for API, browser, and scalability testing. Write realistic load scenarios, analyze results, and integrate with CI/CD.
playwright-cli
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
playwright
Battle-tested Playwright patterns for E2E, API, component, visual, accessibility, and security testing. Covers locators, fixtures, POM, network mocking, auth flows, debugging, CI/CD (GitHub Actions, GitLab, CircleCI, Azure, Jenkins), framework recipes (React, Next.js, Vue, Angular), and migration guides from…
k6-load-testing
Comprehensive k6 load testing skill for API, browser, and scalability testing. Write realistic load scenarios, analyze results, and integrate with CI/CD.