1.7 KiB
1.7 KiB
Aether Development SOP (Frontend)
Version: 1.0 (2026-02-11) Location: documentation/GUIDE__DEVELOPMENT.md
1. 🛡️ Verification (The "Test-First" Mandate)
Rule: No code is to be committed unless it has passed local verification. Skipping this is a violation of the Aether Dev Protocol.
Required Checks:
- Svelte Integrity:
npx svelte-check - Type Safety: Ensure interfaces in
src/lib/types/ae_types.tsmatch backend schemas. - Reactivity Check: Verify Svelte 5 runes (
$state,$derived) are not creating race conditions with DexieliveQuery. - Build Check: For major changes, run
npm run buildto ensure no SSR or build-time failures.
2. 📝 Commit & Sync Policy
- Atomic Commits: One component or one logic fix per commit. Do not batch unrelated changes.
- Verification Log: Mention the verification steps taken in your work log (
ae_log_work). - Safety: Use
~/tmp/gemini_trashfor removals; never usermdirectly on source files.
3. 🤝 The Handshake (Coordination)
You are not working in a vacuum. You MUST coordinate with the Backend Agent.
Mandatory Messaging Triggers:
- Data Requirements: When a UI feature requires a new field or endpoint.
- API Failures: When a V3 endpoint returns unexpected data or 500s.
- Status: Update your shared Journal in
~/agents_sync/aether/journals/after significant milestones.
Tool: Use the message tool to communicate with the Backend Agent.
🧠 Continuity
Before starting work:
- Read
~/agents_sync/README.mdto understand the fleet status and cross-agent tasks. - Check
README.mdin the project root for technical specs. - Review your local
documentation/AGENT_TODO.mdfor active tasks.