원클릭으로
api-validation
Comprehensive API endpoint validation including schema validation, authentication testing, and error handling
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Comprehensive API endpoint validation including schema validation, authentication testing, and error handling
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Creates well-structured Claude Skills with proper YAML frontmatter, clear instructions, and supporting files. Activates when the user wants to create a new skill, add capabilities to their AI assistant, encode team preferences, or structure any reusable instruction set. Covers the full lifecycle from intent capture through writing, testing, and refinement.
Shows all available skills, platform support, common workflows, and troubleshooting for the @terrazul/assistant-creator package. Activates when the user asks for help, wants to know what's available, or needs guidance on using the package.
Interactive wizard to set up MCP server credentials in your shell environment (~/.zshenv, ~/.bashrc, etc.). Activates when the user needs to configure API keys, tokens, or environment variables for MCP servers, or after adding new MCP integrations that require authentication.
Searches mcp.so marketplace for MCP servers and configures them for Claude, Codex, or Gemini. Use when user wants to add external tool integrations, find MCP servers, or configure model context protocol.
Converts Claude SKILL.md files to Gemini-compatible format. Use when user wants to use a Claude skill with Gemini CLI, or needs to make skills cross-platform compatible.
Create well-formed Claude agents with proper YAML frontmatter, system prompts, and examples. Use when user wants to create a new agent, customize Claude behavior, or needs help structuring an agent definition.
| name | api-validation |
| description | Comprehensive API endpoint validation including schema validation, authentication testing, and error handling |
Thorough validation of API endpoints including schema compliance, authentication, authorization, error handling, and performance.
Understand the API:
Create comprehensive test cases:
For Each Endpoint:
Run tests systematically:
For each response, verify:
Document findings:
Use the api-validation skill to validate all CRUD operations on the /api/users endpoint
Tests:
Use the api-validation skill to thoroughly test authentication on /api/auth endpoints
Tests:
Use the api-validation skill to verify authorization on /api/admin endpoints
Tests:
For each response field, verify:
| Field | Type | Required | Validation |
|-------|------|----------|------------|
| id | string | yes | UUID format |
| email | string | yes | email format |
| name | string | yes | min 1, max 100 |
| status | string | yes | enum: active, inactive |
| createdAt | string | yes | ISO date format |
| metadata | object | no | can be empty |
Use the api-validation skill to thoroughly validate the /api/products endpoint including all HTTP methods, authentication, and error handling
Use the api-validation skill to test authentication and authorization across all protected endpoints
Use the api-validation skill to verify all API responses match the OpenAPI schema
Use the api-validation skill to test input validation on POST /api/orders with various invalid payloads
# API Validation Report: [Endpoint]
**Date**: [Date]
**Endpoint**: [PATH]
**Methods Tested**: GET, POST, PUT, DELETE
## Summary
| Category | Tests | Passed | Failed |
|----------|-------|--------|--------|
| Authentication | X | X | X |
| Authorization | X | X | X |
| Schema | X | X | X |
| Validation | X | X | X |
| Error Handling | X | X | X |
| Performance | X | X | X |
## Detailed Results
### Authentication Tests
[Results table]
### Schema Validation
[Field-by-field results]
### Issues Found
[List with severity]
## Recommendations
[Action items]