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 skills add jhlee0409/omni-harness-kit --skill perf-checksgit clone --depth 1 https://github.com/jhlee0409/omni-harness-kitWrote 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/jhlee0409/omni-harness-kit/perf-checks)<a href="https://agentmods.dev/skills/jhlee0409/omni-harness-kit/perf-checks"><img src="https://agentmods.dev/badge/skills/jhlee0409/omni-harness-kit/perf-checks/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jhlee0409/omni-harness-kit/perf-checks"><img src="https://agentmods.dev/badge/skills/jhlee0409/omni-harness-kit/perf-checks.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00144 | $0.01706 |
| Opus 5 | $0.00072 | $0.00853 |
| Sonnet 5 | $0.00029 | $0.00341 |
| Haiku 4.5 | $0.00014 | $0.00171 |
Grade A, and why
perf-checks 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 60 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Performance — measure-before-and-after methodology (omp-native)
A performance change is NOT done until a before number and an after number prove it. Prediction ("this should be faster") is not evidence. This skill runs on omp builtins only: browser (puppeteer page/tab, incl. CDP session), bash, lsp. No external MCP.
Iron rule: every claim = a measured delta. LCP 3.9s → 1.6s (-59%), bundle 842KB → 410KB, retained heap +38MB over 3 iterations → +0.4MB. A verdict with no number = INVALID.
Setup
- Start the dev/prod-preview server on its own port; wait for a stable anchor before measuring. Measure a production build where possible — dev bundles distort LCP/bundle numbers.
browseropen the target route. Warm once (discard first load), then measure — cold-compile noise is not the signal.- Take 3 runs of any browser metric; report the median, not a lucky min.
The ordered checks (measure at each; record the number)
-
Core Web Vitals — in the live page via
tab.evaluate, read real entries, not guesses:- LCP:
new PerformanceObserveron{type:'largest-contentful-paint',buffered:true}→ last entry.renderTime||.loadTimeand.element. - CLS: observe
layout-shift, sumvaluewhere!hadRecentInput. - INP/interaction: observe
event/first-inputdurations; orperformance.getEntriesByType('event'). - Paint:
performance.getEntriesByType('paint')(FP/FCP). Navigation timing:getEntriesByType('navigation')[0]. Record:LCP _ms, CLS _, INP _ms, FCP _ms. Targets: LCP <2.5s, CLS <0.1, INP <200ms.
- LCP:
-
LCP breakdown — split the LCP into TTFB / resource-load / render-delay from
navigation+ the LCP element'sresourceentry (responseStart,requestStart,responseEnd). Attribute the dominant slice, then fix ONLY it: TTFB→server/edge; resource-load→preload/priority hints, correctly-sized/webpimage, no lazy-load on the LCP image; render-delay→critical CSS inline, unblock render-blocking JS/font. Re-measure; citerender-delay 2.1s → 0.5s.
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.
- 10d ago First seen · 60 lines · 144 tokens per session scan A a18b4511d8b8
perf-checks is a skill published in the GitHub repository jhlee0409/omni-harness-kit (2 stars, last pushed 1mo ago), licensed MIT. It adds 144 tokens to every session and 1,706 once invoked, about $0.0007 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
journey-simulation
Use when caller wants to observe how a stranger encounters a flow, artifact, or sandbox — triggers like "simulate a user journey", "test our onboarding / checkout / signup", "will my ICP convert", "how does a cold reader experience this README", "first-time user test", "cognitive walkthrough", or any request to…
caliber-testing
Writes Vitest tests following project patterns: tests/ directories, vi.mock() for module mocking with vi.hoisted() for test-time factories, global LLM mock from src/test/setup.ts, environment variable save/restore in beforeEach/afterEach, vi.clearAllMocks() lifecycle, and test file organization. Use when user says…
test-run
Run plugin test suites in this monorepo and report a concise pass/fail summary. Optional plugin slug arg; without arg, runs all plugins under plugins/.
slowest-tests
Find the top-N slowest test files in CI from a recent BuildKite run, optionally posting the results to a Slack channel as a formatted table. Use when asked to find slow CI tests, "what's making CI slow", or to post a slow-test report to Slack.
symfony:e2e-panther-playwright
Write end-to-end tests with Symfony Panther 2.4 for browser automation or Playwright for complex scenarios.
symfony:tdd-with-phpunit
Apply RED-GREEN-REFACTOR with PHPUnit 10/11 for Symfony; KernelTestCase/WebTestCase, attributes (#[Test]/#[DataProvider]), Foundry.