Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

epds-loginEPDS 登录

Agent Skill

epds-login 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

256

周安装

11

GitHub Stars

2

下载量

90
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:epds-login(EPDS 登录)
来源仓库:https://github.com/hypercerts-org/epds
仓库路径:skills/epds-login
安装命令:
npx skills add https://github.com/hypercerts-org/epds --skill epds-login
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/hypercerts-org/epds --skill epds-login

简介

EPDS 登录技能实现基于 AT Protocol 的标准化身份认证流程,支持邮箱 OTP、Google、GitHub 等多种登录方式。

  • 适用于 Bluesky 等 AT Protocol 应用的用户接入场景,自动完成 DID、handle 和数据仓库的初始化配置。
  • 采用 OAuth PAR+PKCE+DPoP 标准协议,调用前需确认目标平台是否支持相关认证规范。
  • 安装命令为 npx skills add https://github.com/hypercerts-org/epds --skill epds-login。
  • 涉及用户凭证和社交账号绑定时,应优先验证授权范围和隐私合规边界,避免越权访问。

SKILL.md

Implementing ePDS Login

ePDS lets your users sign in to AT Protocol apps — like Bluesky — using familiar login methods: email OTP, Google, GitHub, or any other provider Better Auth supports. Under the hood it is a standard AT Protocol PDS wrapped with a pluggable authentication layer. Users just sign in with their email or social account and get a presence in the AT Protocol universe (a DID, a handle, a data repository) automatically provisioned.

From your app's perspective, ePDS uses standard AT Protocol OAuth (PAR + PKCE + DPoP). The reference implementation is packages/demo in the ePDS repository.

Two Flows

Flow 1Flow 2
App collects email?YesNo
PAR includesNothing extraNothing extra
Auth server showsOTP input directlyEmail form first
Redirect includes&login_hint=<email>Nothing extra
Important: login_hint must never go in the PAR body when the value is an email address. The PDS core (AT Protocol layer) validates login_hint as an ATProto identity (handle like user.bsky.social or DID like did:plc:…) and rejects email addresses with Invalid login_hint. Put login_hint only on the auth redirect URL — that request goes to the ePDS auth service (Better Auth layer), which accepts emails and uses them to skip the email-collection step.

Quick Start

1. Client Metadata

Host at your client_id URL (must be HTTPS in production):

{
  "client_id": "https://yourapp.example.com/client-metadata.json",
  "client_name": "Your App",
  "redirect_uris": ["https://yourapp.example.com/api/oauth/callback"],
  "scope": "atproto transition:generic",
  "grant_types": ["authorization_code", "refresh_token"],
  "response_types": ["code"],
  "token_endpoint_auth_method": "none",
  "dpop_bound_access_tokens": true
}

Optional branding fields: logo_uri, email_template_uri, email_subject_template, brand_color, background_color.

2. Login Handler

// GET /api/oauth/login?email=user@example.com  (Flow 1)
// GET /api/oauth/login                         (Flow 2)

const { privateKey, publicJwk, privateJwk } = generateDpopKeyPair()
const codeVerifier = generateCodeVerifier()
const codeChallenge = generateCodeChallenge(codeVerifier)
const state = generateState()

const parBody = new URLSearchParams({
  client_id: clientId,
  redirect_uri: redirectUri,
  response_type: 'code',
  scope: 'atproto transition:generic',
  state,
  code_challenge: codeChallenge,
  code_challenge_method: 'S256',
})

// PAR always requires a DPoP nonce retry — handle it:
let parRes = await fetch(PAR_ENDPOINT, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded',
    DPoP: createDpopProof({
      privateKey,
      jwk: publicJwk,
      method: 'POST',
      url: PAR_ENDPOINT,
    }),
  },
  body: parBody.toString(),
})
if (!parRes.ok) {
  const nonce = parRes.headers.get('dpop-nonce')
  if (nonce && parRes.status === 400) {
    parRes = await fetch(PAR_ENDPOINT, {
      method: 'POST',
      headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        DPoP: createDpopProof({
          privateKey,
          jwk: publicJwk,
          method: 'POST',
          url: PAR_ENDPOINT,
          nonce,
        }),
      },
      body: parBody.toString(),
    })
  }
}

const { request_uri } = await parRes.json()

// Save state in signed HttpOnly cookie (maxAge: 600 to match request_uri lifetime)
const loginHintParam = email ? `&login_hint=${encodeURIComponent(email)}` : ''
const authUrl = `${AUTH_ENDPOINT}?client_id=${encodeURIComponent(clientId)}&request_uri=${encodeURIComponent(request_uri)}${loginHintParam}`
// redirect to authUrl

3. Callback Handler

// GET /api/oauth/callback?code=...&state=...

const {
  codeVerifier,
  dpopPrivateJwk,
  state: savedState,
} = getSessionFromCookie()
if (params.state !== savedState) throw new Error('state mismatch')

const { privateKey, publicJwk } = restoreDpopKeyPair(dpopPrivateJwk)

// Token exchange — also requires DPoP nonce retry:
let tokenRes = await fetch(TOKEN_ENDPOINT, {
  method: 'POST',
  headers: {
    'Content-Type': 'application/x-www-form-urlencoded',
    DPoP: createDpopProof({
      privateKey,
      jwk: publicJwk,
      method: 'POST',
      url: TOKEN_ENDPOINT,
    }),
  },
  body: new URLSearchParams({
    grant_type: 'authorization_code',
    code,
    redirect_uri: redirectUri,
    client_id: clientId,
    code_verifier: codeVerifier,
  }).toString(),
})
if (!tokenRes.ok) {
  const nonce = tokenRes.headers.get('dpop-nonce')
  if (nonce) {
    tokenRes = await fetch(TOKEN_ENDPOINT, {
      method: 'POST',
      headers: {
        'Content-Type': 'application/x-www-form-urlencoded',
        DPoP: createDpopProof({
          privateKey,
          jwk: publicJwk,
          method: 'POST',
          url: TOKEN_ENDPOINT,
          nonce,
        }),
      },
      body: /* same body */ '',
    })
  }
}

const { sub: userDid } = await tokenRes.json()
// sub is a DID e.g. "did:plc:abc123..." — resolve to handle via PLC directory

Common Pitfalls

PitfallFix
Flash of email formInclude login_hint on the auth redirect URL only (never in the PAR body)
Invalid login_hint from PARRemove login_hint from the PAR body — PDS core only accepts ATProto handles/DIDs, not emails
auth_failed immediatelyCheck Caddy logs — likely a DNS/upstream name mismatch
DPoP rejectedAlways implement the nonce retry loop (ePDS always demands a nonce)
Cannot find package in testsRun pnpm build before pnpm test — vitest needs dist/
Token exchange failsRestore the DPoP key pair from the session cookie, don't generate a new one
Double OTP emailNormal on duplicate GET — otpAlreadySent flag suppresses auto-send on reload

Handles

ePDS generates random handles, not email-derived ones. When a user signs up with alice@example.com, their handle will be something like a3x9kf.pds.example (random prefix + PDS hostname), not alice.pds.example. Resolve the handle from the DID via the PLC directory after login (shown in the callback handler).

ePDS Endpoints (defaults)

PAR:   https://<pds-hostname>/oauth/par
Auth:  https://auth.<pds-hostname>/oauth/authorize
Token: https://<pds-hostname>/oauth/token

Reference Files

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.44%
按下载量换算32

Claude

32.26%
按下载量换算29

Cursor

18.63%
按下载量换算17

Gemini CLI

9.4%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills