type-level-architect
Enforces advanced TypeScript patterns for contract safety and domain-driven design.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Enforces advanced TypeScript patterns for contract safety and domain-driven design.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Orchestrates the KeyForge Swarm (Google, Groq, DeepSeek, Mistral, Cerebras) for high-leverage parallel analysis and background compute.
Interactive architectural discussion and logic brainstorming mode. Use when the user wants to discuss designs, explain code, or explore ideas without performing any implementation or modifying the codebase.
Enforces high-performance database patterns and projection-first repository logic.
Workspace stabilization and 'mop-up' mode. Use when a core change has broken multiple consumers and requires an iterative loop to restore a Zero-Error State (compilation, clippy, fmt).
Enforces Vercel-standard performance optimizations for React and Next.js applications.
Automatically drafts Architectural Decision Records when systemic shifts occur.
| name | Type-Level Architect |
| description | Enforces advanced TypeScript patterns for contract safety and domain-driven design. |
| version | 1.0.0 |
Enforces advanced TypeScript patterns for contract safety and domain-driven design.
CorpusId, LayoutId) to prevent illegal mixing of primitive strings/numbers.type CorpusId = string & { readonly __brand: 'CorpusId' }.Pick<T, K> and Omit<T, K> to derive DTOs from domain models.Readonly<T> for all props and state objects to ensure immutability.never type to ensure exhaustive pattern matching in switch statements or conditional types.Required<T> and NonNullable<T> for validated data paths.tsc --noEmit to verify type integrity.any or unsafe casts in domain logic.