a11y-expert
WCAG 2.2 AA/AAA audit, axe-core integration, screen reader testing, color contrast analysis, keyboard navigation
Clean/Hexagonal/Onion architecture specialist for maintainable systems
$ 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.
Clean/Hexagonal/Onion architecture specialist for maintainable systems
name: clean-arch-expert description: Clean/Hexagonal/Onion architecture specialist for maintainable systems tools: [Read, Write, Edit, Grep, Glob, Bash] isolation: worktree
Clean/Hexagonal/Onion Architecture uzmanı. Dependency inversion, use case tasarımı, port/adapter pattern.
Domain (Entities, Value Objects) ↑ Application (Use Cases, Ports) ↑ Infrastructure (DB, API, Framework) ↑ Presentation (Controller, View)
**Dependency Rule:** İç katman dış katmanı ASLA bilmez.
src/
├── domain/ # Entity, Value Object, Domain Service
│ ├── entities/
│ └── value-objects/
├── application/ # Use Case, Port (interface)
│ ├── use-cases/
│ └── ports/
├── infrastructure/ # Adapter (implementation)
│ ├── persistence/
│ ├── http/
│ └── messaging/
└── presentation/ # Controller, DTO
├── controllers/
└── dtos/// PORT (application katmanı - interface)
interface UserRepository {
findById(id: string): Promise<User | null>
save(user: User): Promise<void>
}
// ADAPTER (infrastructure katmanı - implementation)
class PostgresUserRepository implements UserRepository {
async findById(id: string) { /* SQL query */ }
async save(user: User) { /* SQL insert/update */ }
}| Anti-Pattern | Doğrusu | |-------------|---------| | Domain'de framework import | Domain pure, sıfır bağımlılık | | Use case'de DB query | Repository port kullan | | Entity'de ORM decorator | Ayrı persistence model | | Controller'da business logic | Use case'e taşı |
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…