بنقرة واحدة
sdk-generator
Generate typed client SDKs from OpenAPI specifications for TypeScript, Python, Go, and other languages
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate typed client SDKs from OpenAPI specifications for TypeScript, Python, Go, and other languages
التثبيت باستخدام 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 | sdk-generator |
| description | Generate typed client SDKs from OpenAPI specifications for TypeScript, Python, Go, and other languages |
| allowed-tools | ["Read","Write","Bash","Grep"] |
| effort | high |
// Generated TypeScript SDK usage
import { UsersApi } from '@company/api-sdk';
const api = new UsersApi({ apiKey: process.env.API_KEY });
// List users with pagination
const users = await api.listUsers({ page: 1, limit: 20 });
console.log(users.data); // User[]
console.log(users.meta.total); // number
// Error handling
try {
await api.createUser({ email: 'invalid' });
} catch (err) {
if (err instanceof ValidationError) {
console.log(err.details); // FieldError[]
}
}