service-test

Validate deployed TrueFoundry services with health checks and endpoint smoke tests.

13|Updated Feb 13, 2026
One-click install
npx skills add https://github.com/truefoundry/tfy-agent-skills --skill service-test
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: service-test
Source: https://github.com/truefoundry/tfy-agent-skills/tree/main/skills/service-test
Command: npx skills add https://github.com/truefoundry/tfy-agent-skills --skill service-test

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill automatically verifies that your deployed TrueFoundry services are running correctly, responding to requests, and meeting performance expectations.

Core Features & Use Cases

  • Platform Check: Confirms the application pod is running and healthy.
  • Health Endpoint Validation: Tests standard health check endpoints (/health, /healthz).
  • Endpoint Smoke Tests: Verifies key API routes return expected responses.
  • Optional Load Soak Testing: Assesses service stability under repeated requests.
  • Use Case: After deploying a new version of your FastAPI application, use this Skill to run a full suite of tests to ensure it's operational before it receives live traffic.

Quick Start

Run a full test suite on the 'my-api' service in the 'production' workspace.

Frequently Asked Questions about service-test

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

FAQPage Schema
How do I run a health check on a deployed service to verify it is responsive?

Health check validation tests standard endpoints like `/health` and `/healthz` on your deployed service. It verifies the application pod is running, healthy, and responding correctly to requests before receiving live traffic.

Can I run a smoke test for REST API routes after deploying a new version?

Endpoint smoke tests verify key REST API routes return expected responses after deployment. You can run a full test suite against your service in a specific workspace to ensure all endpoints are operational and responsive.

What's the best way to load test a deployed API for performance stability?

Optional load soak testing assesses service stability by sending repeated requests to your deployed API. This validates basic performance stability and ensures the service maintains responsiveness under sustained traffic load.

Do I need to install special dependencies to validate deployed service endpoints?

Service validation requires only Bash and curl for execution, with no additional dependencies needed. It uses standard command-line tools to perform automated health checks, endpoint smoke tests, and load soak tests on your deployed services.

When should I use automated service validation instead of manual endpoint testing?

Automated service validation is ideal after deploying new application versions to ensure operational readiness. It provides comprehensive platform health checks, endpoint responsiveness verification, and performance stability assessment without manual intervention.