social-auth-setup

social-auth-setup is a skill for Claude Code, Codex from Ampli-Group/agentic-mobile-blueprint. It costs 49 tokens per session (2,252 once invoked), scanned A, original, MIT.

A setup guide for adding Sign in with Apple and Sign in with Google through Supabase Auth, a service that handles user accounts and login.

In plain words
What is it for?
It is for creating Apple and Google login credentials, configuring callback URLs, setting up Apple services and keys, and connecting Google Play Console with Google Cloud.
Why use it?
It helps avoid errors caused by configuring the provider consoles, Supabase, and the mobile app inconsistently, especially incorrect OAuth redirect addresses.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

Good fit It is for creating Apple and Google login credentials, configuring callback URLs, setting up Apple services and keys, and connecting Google Play Console with Google Cloud.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ampli-group/agentic-mobile-blueprint/social-auth-setup
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Ampli-Group/agentic-mobile-blueprint --skill social-auth-setup
Clone the repo
git clone --depth 1 https://github.com/Ampli-Group/agentic-mobile-blueprint

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for social-auth-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/ampli-group/agentic-mobile-blueprint/social-auth-setup/github.svg)](https://agentmods.dev/skills/ampli-group/agentic-mobile-blueprint/social-auth-setup)
Your own site
<a href="https://agentmods.dev/skills/ampli-group/agentic-mobile-blueprint/social-auth-setup"><img src="https://agentmods.dev/badge/skills/ampli-group/agentic-mobile-blueprint/social-auth-setup/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for social-auth-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/ampli-group/agentic-mobile-blueprint/social-auth-setup"><img src="https://agentmods.dev/badge/skills/ampli-group/agentic-mobile-blueprint/social-auth-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,252 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.02252
Opus 5 $0.00024 $0.01126
Sonnet 5 $0.00010 $0.00450
Haiku 4.5 $0.00005 $0.00225

Measured 10d ago against content hash 1fc2169dbdd8, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

social-auth-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/social-auth-setup/SKILL.md · 247 lines

How it starts

The opening of the file, as written. The whole thing — 247 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Social Auth Setup (Apple + Google)

Overview

Both providers require setup in three places:

  1. The provider's developer console (Apple Developer Portal / Google Cloud Console)
  2. Supabase Auth settings
  3. Mobile app (app.json + Expo config)

Sign in with Apple

Step 1: Enable Sign in with Apple on the App ID

  1. developer.apple.com/account/resources/identifiers
  2. Click your App ID (the one matching your ios.bundleIdentifier)
  3. Scroll to Sign in with Apple → Enable → Edit
  4. Leave as "Enable as a primary App ID" → Save

Step 2: Create a Services ID (for web/Supabase callback)

This is separate from your App ID — it's used for the OAuth redirect flow.

  1. Identifiers → +Services IDs → Continue
  2. Description: Your App Name Sign In
  3. Identifier: com.yourorg.appname.siwa (convention: bundle ID + .siwa)
  4. Register
  5. Click the new Services ID → Enable Sign in with AppleConfigure
  6. Add your Supabase callback URL:
    • Primary App ID: select your app
    • Domains: YOUR_PROJECT.supabase.co
    • Return URLs: https://YOUR_PROJECT.supabase.co/auth/v1/callback
  7. SaveContinueRegister

Step 3: Create a Private Key

  1. developer.apple.com/account/resources/authkeys+
  2. Name: Sign in with Apple - Your App
  3. Enable Sign in with Apple → Configure → select your App ID
  4. ContinueRegister
  5. Download the .p8 file — one-time download, save it
  6. Note the Key ID (10 chars)

Step 4: Configure Supabase

  1. Supabase Dashboard → AuthenticationProvidersApple
  2. Fill in:
    • Service ID: the Services ID from Step 2 (e.g. com.yourorg.appname.siwa)
    • Team ID: your 10-char Apple Team ID (top-right of developer.apple.com)
    • Key ID: from the key you downloaded
    • Private Key: paste the full contents of the .p8 file
  3. Save

Read the full file on GitHub · 247 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 247 lines · 49 tokens per session scan A 1fc2169dbdd8

Subscribe to this mod's changes

social-auth-setup is a skill published in the GitHub repository Ampli-Group/agentic-mobile-blueprint (4 stars, last pushed 1mo ago), licensed MIT. It adds 49 tokens to every session and 2,252 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

core-architecture-patterns

Use when adding a segment type, platform adapter, editor manager, core service, or descriptor effect (look/grade/motion/section-audio field) in packages/ffmpeg-video-composer, or when wiring new dependencies into the tsyringe container.

heristop/leclap · 58 tokens

dpf-bring-work-under-formula

Use when adding a DPF work carrier or lifecycle. Routes it through one case, a WorkUnit adapter, the source registry, and canonical status projection.

OpenDigitalProductFactory/opendigitalproductfactory · 40 tokens

rn-app-builder

A build workflow for React Native mobile apps, including Expo setup, shared code in a monorepo, login routing, APIs, themes, and releases. A monorepo stores multiple related packages in one code repository.

LSTM-Kirigaya/jinhui-skills · 53 tokens

native-ui

Building native mobile UIs with Expo Router and React Native. Covers routing, navigation, styling, native controls, animations, and platform conventions following Apple Human Interface Guidelines.

wpank/ai · 36 tokens

expo-native-ui

Build beautiful native iOS/Android apps with Expo Router. Covers route structure, native tabs, animations, blur effects, liquid glass, SF Symbols, and platform patterns.

wpank/ai · 38 tokens

copilotkit-upgrade

Use when migrating a CopilotKit v1 application to v2 -- updating package imports, replacing deprecated hooks and components, switching from GraphQL runtime to AG-UI protocol runtime, and resolving breaking API changes.

CopilotKit/CopilotKit · 48 tokens