npx skills add https://github.com/petrkindlmann/qa-skills
aj-geddes/useful-ai-prompts
synthetic-monitoring
Implement synthetic monitoring and automated testing to simulate user behavior and detect issues before users. Use when creating end-to-end test scenarios, monitoring API flows, or validating user workflows.
Installation
npx skills add aj-geddes/useful-ai-prompts --skill synthetic-monitoring
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Installs, configures, and troubleshoots Network Flow Monitor agents on EC2 instances to monitor…
3.2K installsSetup Sentry AI Agent Monitoring in any project. Use when asked to monitor LLM calls, track AI …
2.8K installsTrack reviews, ratings, sentiment, and brand mentions across Google Maps, Booking.com, TripAdvi…
2.5K installsTrack and analyze portfolio company performance against plan. Ingests monthly/quarterly financi…
8 installsSetup Sentry AI Agent Monitoring in any project. Use when asked to monitor LLM calls, track AI …
808 installs>- **ANALYSIS SKILL** - Observe Aspire apps: logs, traces, metrics, resource state, telemetry e…
7 installsAlso in this package
Other skills from aj-geddes/useful-ai-prompts · top by installs.
npx skills add aj-geddes/useful-ai-prompts
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
npx skills add smithery/aj-geddes --skill synthetic-monitoring
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,638 B -
docs
SUMMARY.md2,508 B
History
- First seen on skills.sh
- First recorded snapshot · 405 installs
SKILL.md
Synthetic Monitoring
Table of Contents
- [Overview](#overview)
- [When to Use](#when-to-use)
- [Quick Start](#quick-start)
- [Reference Guides](#reference-guides)
- [Best Practices](#best-practices)
Overview
Set up synthetic monitoring to automatically simulate real user journeys, API workflows, and critical business transactions to detect issues and validate performance.
When to Use
- End-to-end workflow validation
- API flow testing
- User journey simulation
- Transaction monitoring
- Critical path validation
Quick Start
Minimal working example:
// synthetic-tests.js
const { chromium } = require("playwright");
class SyntheticMonitor {
constructor(config = {}) {
this.baseUrl = config.baseUrl || "https://app.example.com";
this.timeout = config.timeout || 30000;
}
async testUserFlow() {
const browser = await chromium.launch();
const page = await browser.newPage();
const metrics = { steps: {} };
const startTime = Date.now();
try {
// Step 1: Navigate to login
let stepStart = Date.now();
await page.goto(`${this.baseUrl}/login`, { waitUntil: "networkidle" });
metrics.steps.navigation = Date.now() - stepStart;
// Step 2: Perform login
stepStart = Date.now();
await page.fill('input[name="email"]', "[email protected]");
await page.fill('input[name="password"]', "password123");
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| [Synthetic Tests with Playwright](references/synthetic-tests-with-playwright.md) | Synthetic Tests with Playwright |
| [API Synthetic Tests](references/api-synthetic-tests.md) | API Synthetic Tests |
| [Scheduled Synthetic Monitoring](references/scheduled-synthetic-monitoring.md) | Scheduled Synthetic Monitoring |
Best Practices
✅ DO
- Test critical user journeys
- Simulate real browser conditions
- Monitor from multiple locations
- Track response times
- Alert on test failures
- Rotate test data
- Test mobile and desktop
- Include error scenarios
❌ DON'T
- Test with production data
- Reuse test accounts
- Skip timeout configurations
- Ignore test maintenance
- Test too frequently
- Hard-code credentials
- Ignore geographic variations
- Test only happy paths