update agents.md (#331)

authored by zzstoatzz.io and committed by GitHub ebe5050d 6e0f41ac

Changed files
+1 -1
+1 -1
AGENTS.md
··· 8 8 * Use **GitHub Issues** (not Linear). 9 9 * **PRs:** Always create for review; never push to main directly. 10 10 * **Deploy:** Automated via Actions (Backend: Fly.io, Frontend: Cloudflare Pages). Never deploy locally. 11 - * **ATProto Namespaces:** namespaces are environment-aware via settings (e.g., `fm.plyr.dev`, `fm.plyr`). **Never** hardcode outside of scripts 11 + * **ATProto NSIDs:** namespaces are environment-aware via settings (e.g., `fm.plyr.dev` (dev), `fm.plyr` (prod)). **Never** hardcode outside of scripts. these are fully-qualified hostname in Reverse Domain-Name Order, not urls. 12 12 * **Auth Security:** Session IDs live in HttpOnly cookies. **Never** touch `localStorage` for auth. 13 13 * **Async Everywhere:** Never block the event loop. Use `anyio`/`aiofiles`. 14 14 * **Type Hints:** Required everywhere (Python & TypeScript).