database
Installation
SKILL.md
Critical Patterns
Naming Conventions (REQUIRED)
-- ✅ ALWAYS: snake_case for tables and columns
CREATE TABLE user_accounts (
user_id UUID PRIMARY KEY,
first_name VARCHAR(100),
created_at TIMESTAMP DEFAULT NOW()
);
-- ❌ NEVER: Mixed case or camelCase
CREATE TABLE UserAccounts (
userId UUID,
firstName VARCHAR(100)
);
Related skills
More from poletron/custom-rules
cpp
>
104lancedb
>
17clean-code
Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
10vulnerability-scanner
Advanced vulnerability analysis principles. OWASP 2025, Supply Chain Security, attack surface mapping, risk prioritization.
8trpc
>
8web-performance-optimization
Optimize website and web application performance including loading speed, Core Web Vitals, bundle size, caching strategies, and runtime performance
7