webapp-testing-start-server-before-testing

Sub-skill of webapp-testing: Start Server Before Testing (+1).

5 stars

Best use case

webapp-testing-start-server-before-testing is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Sub-skill of webapp-testing: Start Server Before Testing (+1).

Teams using webapp-testing-start-server-before-testing should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/start-server-before-testing/SKILL.md --create-dirs "https://raw.githubusercontent.com/vamseeachanta/workspace-hub/main/.agents/skills/_archive/development/webapp-testing/start-server-before-testing/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/start-server-before-testing/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How webapp-testing-start-server-before-testing Compares

Feature / Agentwebapp-testing-start-server-before-testingStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Sub-skill of webapp-testing: Start Server Before Testing (+1).

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Start Server Before Testing (+1)

## Start Server Before Testing


```python
import subprocess
import time
from playwright.sync_api import sync_playwright

# Start server
server = subprocess.Popen(
    ["npm", "run", "dev"],
    stdout=subprocess.PIPE,
    stderr=subprocess.PIPE

*See sub-skills for full details.*

## Check Server Status


```python
import requests

def is_server_running(url="http://localhost:3000"):
    try:
        response = requests.get(url, timeout=2)
        return response.status_code == 200
    except:
        return False
```

Related Skills

verify-Codex-run-commit-vs-working-tree-before-closing

5
from vamseeachanta/workspace-hub

After a Codex implementation run, verify the claimed file set against the actual commit and working tree before treating the issue as fully complete.

session-start-dirty-state-triage-with-background-agents

5
from vamseeachanta/workspace-hub

Distinguish real implementation dirt from generated session-state churn when resuming a repo with active overnight/background agents.

modal-serverless-gpu

5
from vamseeachanta/workspace-hub

Serverless GPU cloud platform for running ML workloads. Use when you need on-demand GPU access without infrastructure management, deploying ML models as APIs, or running batch jobs with automatic scaling.

minecraft-modpack-server

5
from vamseeachanta/workspace-hub

Set up a modded Minecraft server from a CurseForge/Modrinth server pack zip. Covers NeoForge/Forge install, Java version, JVM tuning, firewall, LAN config, backups, and launch scripts.

webapp-testing

5
from vamseeachanta/workspace-hub

Web application testing toolkit using Playwright with Python. Use for verifying frontend functionality, debugging UI behavior, capturing browser screenshots, viewing browser logs, and automating web interactions.

testing-tdd-london

5
from vamseeachanta/workspace-hub

TDD London School (mockist) specialist for mock-driven, outside-in development. Use for behavior verification testing, contract-driven development, testing object collaborations, or when focusing on HOW objects interact rather than WHAT they contain.

testing-production

5
from vamseeachanta/workspace-hub

Production validation specialist ensuring applications are fully implemented and deployment-ready. Use to verify no mock/stub/fake implementations remain, validate against real databases and APIs, perform end-to-end testing with actual systems, and confirm production readiness.

session-start-routine

5
from vamseeachanta/workspace-hub

Pre-flight checks at session start — load context, check prior state, validate env, check for in-flight work from other terminals

mkdocs-line-number-start

5
from vamseeachanta/workspace-hub

Sub-skill of mkdocs: Line Number Start.

git-sync-manager-1-always-check-before-operating

5
from vamseeachanta/workspace-hub

Sub-skill of git-sync-manager: 1. Always Check Before Operating (+4).

clean-code-step-1-api-compatibility-check-mandatory-before-wr

5
from vamseeachanta/workspace-hub

Sub-skill of clean-code: Step 1: API Compatibility Check (MANDATORY before writing shims) (+2).

agent-teams-subagent-startup-convention

5
from vamseeachanta/workspace-hub

Sub-skill of agent-teams: Subagent startup convention (+2).