원클릭으로
api-test-generator
Generate comprehensive API test suites — contract tests, integration tests, and load tests from OpenAPI specs
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate comprehensive API test suites — contract tests, integration tests, and load tests from OpenAPI specs
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Orchestrate multi-agent teams in Claude Code — set up coordinated sessions with task delegation, inter-agent communication, and parallel execution
Leverage Claude Code's ultra-deep planning mode for complex architecture decisions, multi-file refactors, and system design
Deep code review using Claude Code's thorough analysis mode — security, performance, correctness, and maintainability
Safe isolated testing environment for multi-agent swarm topologies before production deployment
Automatically summarizes the current session context to prevent token window overflow.
Claude Code context pruner: slash command to summarize session and reset token bloat
| name | api-test-generator |
| description | Generate comprehensive API test suites — contract tests, integration tests, and load tests from OpenAPI specs |
| allowed-tools | ["Read","Write","Bash","Grep"] |
| effort | high |
// Contract test — GET /users/{id}
describe('GET /users/{id}', () => {
it('returns 200 with valid user schema', async () => {
const res = await request.get('/users/123', { headers: authHeader });
expect(res.status).toBe(200);
expect(res.body).toMatchSchema(userSchema);
expect(res.headers['content-type']).toContain('application/json');
});
it('returns 404 for non-existent user', async () => {
const res = await request.get('/users/000000', { headers: authHeader });
expect(res.status).toBe(404);
expect(res.body.error.code).toBe('USER_NOT_FOUND');
});
});