general-best-practices
General software development best practices covering code quality, testing, security, performance, and maintainability across technology stacks
What this skill does
# General Best Practices A comprehensive collection of software development best practices applicable across various technology stacks and project types. ## Code Quality ### Readability and Maintainability Write short, focused functions with a single responsibility. Use clear, descriptive names for variables, functions, and classes. Avoid deep nesting; prefer early returns and guard clauses. Keep functions and methods to a reasonable length (typically under 30 lines). ### Error Handling Always handle errors explicitly rather than silently ignoring them. Use wrapped errors for traceability and context. Provide meaningful error messages that help with debugging. Fail fast and fail loudly during development. ### Code Organization Organize code into logical modules and packages. Separate concerns: keep business logic separate from infrastructure code. Use consistent file and folder naming conventions. Follow the principle of least surprise in API design. ## Architecture ### Clean Architecture Principles Structure code into distinct layers: - **Presentation/Handlers**: Handle external requests and responses - **Application/Services**: Orchestrate business operations - **Domain**: Core business logic and entities - **Infrastructure**: External systems, databases, and frameworks ### Design Principles Prefer composition over inheritance. Program to interfaces, not implementations. Use dependency injection for testability and flexibility. Design for change: isolate business logic and minimize framework lock-in. Apply SOLID principles where appropriate. ## Testing ### Unit Testing Write tests that are fast, isolated, and repeatable. Use table-driven tests for testing multiple scenarios. Mock external dependencies cleanly. Aim for high test coverage of business-critical code. ### Integration Testing Test interactions between components and external systems. Use separate test configurations and databases. Clean up test data after each test run. ### Test Organization Separate fast unit tests from slower integration tests. Run fast tests frequently during development. Include tests in CI/CD pipelines. ## Security ### Input Validation Validate all inputs at service boundaries. Never trust user input; sanitize and validate everything. Use parameterized queries to prevent SQL injection. ### Authentication and Authorization Use secure defaults for tokens and sessions. Implement proper access control at every layer. Store secrets securely; never commit them to version control. ### Network Security Use HTTPS for all communications. Implement rate limiting to prevent abuse. Use circuit breakers for external service calls. ## Performance ### Optimization Principles Profile before optimizing; avoid premature optimization. Measure and benchmark regularly. Focus on hot paths and frequently executed code. ### Resource Management Minimize memory allocations in critical paths. Use connection pooling for database and network connections. Implement proper resource cleanup and disposal. ### Caching Cache expensive computations and frequently accessed data. Use appropriate cache invalidation strategies. Consider cache consistency and freshness requirements. ## Observability ### Logging Use structured logging (JSON format for production). Include relevant context: request IDs, user IDs, timestamps. Log at appropriate levels: DEBUG, INFO, WARN, ERROR. Avoid logging sensitive information. ### Metrics Track key metrics: latency, throughput, error rates. Set up alerts for anomalies and threshold violations. Use dashboards for visibility into system health. ### Tracing Implement distributed tracing for microservices. Propagate trace context across service boundaries. Record important attributes in spans for debugging. ## Documentation ### Code Documentation Document public APIs with clear descriptions. Explain the "why" not just the "what". Keep documentation close to the code it describes. Update documentation when code changes. ### Project Documentation Maintain a clear README with setup instructions. Document architecture decisions (ADRs). Provide contribution guidelines for team members. ## Version Control ### Commit Practices Write clear, concise commit messages. Make atomic commits that represent a single logical change. Keep commits small and focused. ### Branch Strategy Use feature branches for new development. Keep the main branch stable and deployable. Review code before merging to main. ## Tooling and Automation ### Continuous Integration Run tests automatically on every commit. Enforce code formatting and linting. Include security scanning in the pipeline. ### Development Environment Use consistent development environments across the team. Document setup steps and prerequisites. Automate common development tasks.
Related in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.