testing

Execute targeted browser or API tests and document results in a markdown report.

10|1|Updated Jan 9, 2026
One-click install
npx skills add https://github.com/Yuvasee/samocode --skill testing-yuvasee
Or copy as Structured Prompt for Agentโ–ผ
Please help me install this Agent Skill.
Skill: testing
Source: https://github.com/Yuvasee/samocode/tree/main/skills/testing
Command: npx skills add https://github.com/Yuvasee/samocode --skill testing-yuvasee

SYSTEM DOCUMENTATION & REQUIREMENTS

๐Ÿ’ก This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill ensures that the specific feature or bug fix implemented within the current session functions as expected, preventing regressions and confirming the success of the development work.

Core Features & Use Cases

  • Targeted Testing: Focuses testing efforts on the exact changes made in the current development cycle, not broad end-to-end validation.
  • Multi-Tool Support: Offers flexibility by supporting browser-based testing (Chrome DevTools MCP, Puppeteer, Playwright) and API testing (curl/httpie).
  • Use Case: After implementing a new user registration flow, this Skill would be used to verify that the registration form submits correctly, the user is created in the database, and any confirmation emails are sent, all without running a full regression suite.

Quick Start

Execute the tests for the recently implemented authentication feature.

Frequently Asked Questions about testing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate a feature implemented in my current development session?โ–ผ

You can validate an implemented feature by executing targeted browser or API tests against the running application to confirm the specific changes function as expected and prevent regressions.

Can I use browser testing tools like Puppeteer and Playwright to test frontend changes?โ–ผ

Yes, browser testing supports tools like Chrome DevTools MCP, Puppeteer, and Playwright to validate frontend changes by interacting with the running application interface.

What is the best way to test a bug fix without running a full regression suite?โ–ผ

Targeted testing focuses efforts on the exact changes made in the current development cycle, verifying specific bug fixes without executing broad end-to-end validation.

How does API testing work for backend changes like a new user registration flow?โ–ผ

API testing validates backend changes by executing targeted requests using curl or httpie against the running application, confirming data creation and endpoint responses.

Do I need a running application to validate implemented features?โ–ผ

Yes, you need a running application environment because feature validation executes targeted tests directly against the live frontend and backend to document pass or fail status.

What results do I get after validating a newly implemented feature?โ–ผ

Feature validation generates a markdown report documenting the test results, including the pass or fail status of each check and detailing any issues found during execution.