Principal-level guidance for C++ backend systems, low-latency services, and infrastructure. Emphasizes correctness, memory safety, and predictable performance.
| 1 | Correctness & UB Avoidance | No undefined behavior | RAII, invariants, validated inputs | | 2 | Reliability & Resilience | Fail safe under load | Timeouts, backpressure, graceful shutdown | | 3 | Security | Hard to exploit | Hardened builds, safe parsing, least privilege |
| 4 | Performance & Latency | Predictable P99 | Stable allocs, bounded queues, zero-copy where safe | | 5 | Observability & Operability | Fast triage | Trace ids, structured logs, metrics | | 6 | Scalability & Evolution | Safe growth | Statelessness, sharding, protocol versioning |
الذكاء الهندسي الأساسي للواجهة الخلفية لأنظمة C++ والخدمات الحيوية للأداء. الإجراءات: التخطيط، والتصميم، والإنشاء، والتنفيذ، والمراجعة، والإصلاح، والتحسين، وإعادة البناء، وتصحيح الأخطاء، والتأمين، وتوسيع نطاق التعليمات البرمجية والبنيات الخلفية. التركيز: الصحة، سلامة الذاكرة، الكمون، الموثوقية، إمكانية الملاحظة، قابلية التوسع، قابلية التشغيل. المصدر: prakharmnnit/skills-and-personas.