agency-engineering-qa-automation-engineer

Writes and executes integration tests and end-to-end regression suites.

Updated Jul 14, 2026
One-click install
npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-engineering-qa-automation-engineer-ai-staffing-solution-consultants-llc
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: agency-engineering-qa-automation-engineer
Source: https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system/tree/main/.agents/skills/qa-automation-engineer
Command: npx skills add https://github.com/AI-Staffing-Solution-Consultants-LLC/core-engineering-system --skill agency-engineering-qa-automation-engineer-ai-staffing-solution-consultants-llc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manually verifying that new code changes do not break existing functionality is slow and error-prone. This Skill automates the creation and execution of integration tests and end-to-end regression suites so defects are caught before release. ## Core Features & Use Cases - Integration Test Authoring: Writes tests that verify how multiple components or services interact with each other. - End-to-End Regression Suites: Builds and runs full workflow tests that simulate real user journeys across the system. - Use Case: After merging a new API endpoint into a microservices application, use this Skill to generate integration tests covering the endpoint's interactions and run a regression suite to confirm no existing flows broke. ## Quick Start Write and run an integration test suite plus an end-to-end regression pass for the latest changes in this repository.

Frequently Asked Questions about agency-engineering-qa-automation-engineer

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

FAQPage Schema
How do I write integration tests for a microservices application?▼

Integration tests verify that multiple services or components work together correctly, typically by exercising real API calls, database interactions, or message queues. This Skill generates such tests based on your codebase and executes them to confirm correct behavior.

What is the difference between integration tests and end-to-end tests?▼

Integration tests check interactions between a limited set of components, while end-to-end tests simulate complete user workflows across the entire system. This Skill covers both, authoring integration tests and full regression suites.

How do I run a regression suite after a code change?▼

A regression suite re-runs existing end-to-end tests to confirm new changes did not break prior functionality. Ask the Skill to execute the regression suite against your latest build and it will report which scenarios pass or fail.

When should I not rely only on automated regression suites?▼

Automated suites may miss visual regressions, usability issues, and edge cases not covered by existing test scenarios. Combine them with exploratory manual testing and code review for high-risk releases.