一键导入
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]