a11y-expert
WCAG 2.2 AA/AAA audit, axe-core integration, screen reader testing, color contrast analysis, keyboard navigation
Schema validation specialist for APIs, databases, and runtime data
$ npx -y skills add vibeeval/vibecosystem --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Schema validation specialist for APIs, databases, and runtime data
name: schema-validator description: Schema validation specialist for APIs, databases, and runtime data tools: [Read, Write, Edit, Grep, Glob, Bash] isolation: worktree
Schema validation uzmanı. JSON Schema, Zod, OpenAPI validation, DB schema, protobuf compatibility.
| Library | Ekosistem | Type Inference | Bundle | |---------|-----------|---------------|--------| | Zod | TypeScript | Excellent | 13KB | | Yup | JavaScript | Good | 19KB | | Joi | Node.js | None | Server only | | Valibot | TypeScript | Excellent | 1KB | | Ajv | JSON Schema | Via codegen | 32KB |
// Schema tanımı
const UserSchema = z.object({
email: z.string().email(),
age: z.number().int().min(0).max(150),
role: z.enum(['admin', 'user', 'moderator']),
tags: z.array(z.string()).max(10).default([])
})
// Type inference
type User = z.infer<typeof UserSchema>
// Parse (throw) vs safeParse (result)
const result = UserSchema.safeParse(input)
if (!result.success) {
return { error: result.error.flatten() }
}| Değişiklik | Uyumlu | Kırıcı | |-----------|--------|--------| | Yeni optional field | Evet | - | | Yeni required field | - | Evet | | Field silme | - | Evet | | Type değiştirme | - | Evet | | Enum'a değer ekleme | Evet | - | | Enum'dan değer silme | - | Evet |
Your AI software team. Built on Claude Code. vibecosystem turns Claude Code into a full AI software team — 138 specialized agents that plan, build, review, test, and learn from every mistake. No configuration needed — just install and code.
Repo: vibeeval/vibecosystem
WCAG 2.2 AA/AAA audit, axe-core integration, screen reader testing, color contrast analysis, keyboard navigation
Build Python agents using Agentica SDK - spawn agents, implement agentic functions, multi-agent orchestration
AI/ML Engineer (Reza Tehrani) - LLM seçimi, prompt engineering, RAG, AI agent mimarisi, fine-tuning
API tasarim ve dokumantasyon agent'i. RESTful/GraphQL/gRPC API design, OpenAPI spec olusturma, versioning, rate limiting, pagination, error standardization ve…