Proxy's live, shared point-and-comment layer for design review. Clients annotate any page in the browser; comments save instantly to one shared backend and show up for everyone. One script tag drops it onto any site… Astro, WordPress, a live client build, or a portal.
Paste this once before </body>. It stays inert (zero load / SEO impact) until someone appends #gizmonote to the URL; then the review layer wakes up.
<script> // namespaces this site's comments (pick a short slug) window.GIZMONOTE = { project: 'your-project' }; </script> <script src="https://gizmo.madebyproxy.com/gizmonote-loader.js" defer></script>
For a staging build where every visitor should see the layer, load the widget directly and set the comment bucket for that page:
<script> window.GIZMONOTE = { project: 'your-project', page: 'home', api: 'https://gizmo.madebyproxy.com' }; </script> <script src="https://gizmo.madebyproxy.com/v1/gizmonote.js"></script>
One shared backend, CORS-open, namespaced by project. You don't re-host per client.