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/getlytos/lytos-cli/testingnpx skills add getlytos/lytos-cli --skill testinggit clone --depth 1 https://github.com/getlytos/lytos-cliWhat 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.00059 | $0.03111 |
| Opus 5 | $0.00030 | $0.01555 |
| Sonnet 5 | $0.00012 | $0.00622 |
| Haiku 4.5 | $0.00006 | $0.00311 |
Grade A, and why
testing 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.
How it starts
The opening of the file, as written. The whole thing — 416 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill — Testing
This skill defines how to write tests on a project using Lytos. It covers unit tests and end-to-end tests. An agent loaded with this skill knows what to test, how to structure tests, and what coverage criteria to meet.
When to invoke this skill
- After writing a new feature
- After a fix — the test must prove the bug won't come back
- During a refactoring — existing tests must continue to pass
- During a quality audit — check overall coverage
Testing strategy
Follow the Testing Trophy model (Kent C. Dodds): the highest return on investment comes from integration tests, not unit tests.
╱╲ E2E — few, critical journeys only
╱ ╲
╱────╲
╱ ╲ Integration — the bulk of your tests
╱ ╲
╱──────────╲
╱ ╲ Unit — fast, focused, isolated logic
╱──────────────╲
╱________________╲ Static analysis — linting, type checking, formatting
| Layer | Volume | What it catches |
|---|---|---|
| Static analysis | Runs on every save/commit | Typos, type errors, style drift |
| Unit tests | Many, fast | Logic errors in pure functions |
| Integration tests | Most of your tests | Broken contracts between modules, DB queries, API routes |
| E2E tests | Few, slow | Critical user journeys broken across the full stack |
Write more integration tests than unit tests. Reserve E2E for the journeys where a failure means lost revenue or data.
Unit tests
Principles
- A unit test tests one single thing
- It is independent — does not depend on execution order or another test
- It is fast — no network calls, no database (use mocks)
- It is deterministic — the same input always gives the same result
Test file structure
tests/
├── unit/
│ ├── [module]/
│ │ └── [module].test.* <- depends on the project language
│ └── ...
└── e2e/
├── [feature].spec.* <- end-to-end tests
└── ...
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.
- 2d ago First seen · 416 lines · 59 tokens per session scan A 7271b7dcb4ac
testing is a skill published in the GitHub repository getlytos/lytos-cli (2 stars, last pushed 2d ago), licensed MIT. It adds 59 tokens to every session and 3,111 once invoked, about $0.0003 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
testing
Testing workflow and quality standards for writing and running tests. Use when: (1) Writing new tests, (2) Adding a new feature that needs tests, (3) Modifying logic that has existing tests, (4) Before claiming a task is complete.
vue-testing-best-practices
Use for Vue.js testing. Covers Vitest, Vue Test Utils, component testing, mocking, testing patterns, and Playwright for E2E testing.
tests
Write clear, maintainable Vitest and Playwright tests with precise assertions, consistent structure, and strong behavioral coverage.
testing-patterns
Testing patterns and principles. Unit, integration, mocking strategies.
testing
Writing or debugging tests, choosing unit vs integration style, Postgres/ClickHouse tests, regenerating ClickHouse test schema, or exporting test helpers from packages without pulling test code into production bundles.
testing-without-tautologies
Use when creating, editing, fixing, or reviewing tests; when adding mocks, fakes, assertions, unit tests, PG integration tests, frontend component tests, or Playwright e2e tests; or when changing tests after failures.