بنقرة واحدة
global-best-practices
Universal principles for clean, maintainable, and robust code across all environments.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Universal principles for clean, maintainable, and robust code across all environments.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Foundational "High-Density" standard for token-optimized agent instructions and CLI-based automated activation.
Standards for performing high-quality, readable code reviews.
Essential rules for code comments, READMEs, and technical documentation.
CRITICAL - Before ANY file write, audit loaded skills for violations. Auto-report via feedback command.
Universal standards for version control, branching, and team collaboration.
Motion design principles for mobile apps. Covers timing curves, transitions, gestures, and performance-conscious animations.
استنادا إلى تصنيف SOC المهني
| name | Global Best Practices |
| description | Universal principles for clean, maintainable, and robust code across all environments. |
| metadata | {"labels":["best-practices","solid","clean-code","architecture"],"triggers":{"keywords":["solid","kiss","dry","yagni","naming","conventions"]}} |
@override carefully.isUserAuthenticated > checkUser).camelCase: Variables/Functions (JS/Java/Dart).snake_case: Variables/Functions (Python/Ruby).PascalCase: Classes/Types (universal).kebab-case: Files/CSS/URLs.**No Hardcoded Constants**: Use named constants or config.**No Deep Nesting**: Use guard clauses and early returns.**No Global State**: Use dependency injection or state management.**No Empty Catch**: Always handle, log, or rethrow errors.