Reference

Rules

7 standards applied automatically on every task — no command needed. They are the guardrails behind the workflow.

🔍

codebase-first

Always explore the existing project before generating any code. Prevents architecture conflicts, duplicate implementations, and style inconsistencies.

📋

requirements-first

Before implementing any feature, REQUIREMENTS.md must exist and be consulted — the single source of truth for what to build.

🪶

simplicity-first

Write the minimum code that solves the problem. Nothing speculative. If 200 lines could be 50, rewrite it.

📐

platform-conventions

Always follow platform-specific conventions for iOS (Apple HIG) and Android (Material Design 3). Detect the target platform and apply the right guidelines.

🔐

mobile-security

Security best practices applied throughout: data protection, secure storage, network security, and OWASP mobile alignment.

🚀

performance-standards

Performance budgets and thresholds — launch performance, runtime smoothness, and memory usage.

quality-gates

Pre-commit, pre-PR, and pre-release quality checks. Encodes the blocking-gate doctrine that the orchestrated loop enforces.