Google-only website login
Production web access uses Google OAuth. Desktop password setup happens after the trusted web session exists.
Link Peeler avoids fragile inbound desktop access. Web handles identity and relay contracts while the desktop pulls work, signs requests, and stores local device state.
Production web access uses Google OAuth. Desktop password setup happens after the trusted web session exists.
API requests are signed and checked with nonce replay protection before work reaches the platform queue.
Repeated client requests can safely replay known results instead of duplicating task side effects.
The desktop asks the cloud for work. The public relay does not need to call into a user's machine.
Membership controls offer limits and Pro-only integration surfaces before expensive work starts.
Refresh tokens, device keys, and runtime metadata stay anchored to the account and device chain.
Security is part of the operating model: public identity, signed external entry, replay control, outbound desktop execution, quota gates, and audit state all have separate jobs.
Production website sessions are anchored by Google OAuth. Desktop password setup is downstream of that trusted account session.
Link Peeler separates public identity, device credentials, external API signing, replay protection, idempotent queueing, and quota gates so each sensitive boundary has a specific control.
Website sessions are anchored by Google login in production.
Desktop credentials and device keys stay local to the user machine.
External scripts use signed requests instead of unauthenticated webhooks.
Nonce and idempotency records block duplicate side effects.
Plan limits are checked before expensive work starts.
The security model is written as operational controls, not abstract promises. Each control names the risk it blocks and the evidence operators can inspect.
Prevents unauthenticated public account creation from becoming a trusted desktop runtime credential.
Prevents unsigned webhooks and replayed requests from creating new link-fetch tasks.
Prevents duplicate side effects and blocks expensive production work before entitlement checks pass.
Prevents the cloud from needing inbound access to a user's machine while keeping local context intact.
Yes. API calls use HMAC signing with nonce checks so replayed requests can be rejected before they create work.
No. The desktop pulls queued work outbound, which avoids requiring an inbound public tunnel for task execution.
Google login anchors the public account. A separate desktop password is created only after the web account is trusted.
Idempotency keys allow known request replays to return a previous result instead of creating duplicate queue entries.