Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计异常

authenticate-wallet验证钱包

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

210

周安装

9

GitHub Stars

2

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ahmetenesdur/starkfi --skill authenticate-wallet

简介

authenticate-wallet 管理 StarkFi CLI 的认证会话,采用邮箱 OTP 登录。

  • 支持两步验证流程,依赖远程 Auth Server 和 Privy TEE 安全机制。
  • 登录后生成有效会话,供其他交易类技能调用。
  • 需确保 Auth Server 正常运行,且用户提供可访问的邮箱地址。
  • 通过 auth login <email> 和 auth verify <email> <code> 完成身份验证。

SKILL.md

Authenticate Wallet

Manage authentication sessions for the StarkFi CLI. StarkFi uses a remote Auth Server with Privy TEE for email-based one-time password (OTP) authentication. A valid session is required before any transactional skill can operate.

Prerequisites

  • The StarkFi Auth Server (starkfi-server) must be running and accessible.
  • An email address the user has access to (for receiving OTP codes).

Authentication Flow

The login process is a two-step OTP flow:

  1. Initiateauth login <email> sends an OTP code to the email.
  2. Verifyauth verify <email> <code> completes authentication.

The agent CANNOT guess or auto-fill the OTP code — it must wait for the user to provide it after checking their email.

Rules

  1. ALWAYS run npx starkfi@latest status first to check if the user already has an active session. If they do, skip the login flow — just inform them.
  2. After auth login, you MUST wait for the user to provide their OTP code. Do NOT ask more than once; just say you're waiting.
  3. After auth verify, you MUST run npx starkfi@latest status to confirm the session is active.
  4. deploy is idempotent — it's safe to run multiple times. It deploys the smart account contract on-chain if not already deployed.
  5. If any other skill reports Not authenticated, direct the user to this skill.

Commands

# Step 1: Send OTP to email
npx starkfi@latest auth login <email>

# Step 2: Verify OTP code
npx starkfi@latest auth verify <email> <code>

# Check session status
npx starkfi@latest status

# Display wallet address
npx starkfi@latest address

# Deploy smart account on-chain
npx starkfi@latest deploy

# End session
npx starkfi@latest auth logout

Parameters

ParameterTypeDescriptionRequired
emailstringUser's email addressYes
codestringOne-time password from emailYes

Examples

User: "Log me in with user@example.com"

npx starkfi@latest status
# If not authenticated:
npx starkfi@latest auth login user@example.com
# Wait for user to provide OTP code (e.g. "123456")
npx starkfi@latest auth verify user@example.com 123456
npx starkfi@latest status

User: "What's my wallet address?"

npx starkfi@latest address

User: "Deploy my account"

npx starkfi@latest deploy

User: "Log me out"

npx starkfi@latest auth logout

Error Handling

ErrorAction
Invalid OTP codeAsk the user to check their email and retry auth verify.
Session expiredRestart from auth login.
Server unreachableEnsure starkfi-server is running at the configured URL.
Rate limitWait 60 seconds before retrying.
Deployment failedCheck balance — send ETH/STRK to the address, or enable gasfree mode first.
Insufficient balanceFor deploy: npx starkfi@latest config set-gasfree on to bypass gas costs.

Related Skills

  • All other skills depend on this skill — if any reports Not authenticated, use this.
  • Use config to enable gasfree mode if the user can't afford deployment gas.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.08%
按下载量换算26

Claude

27.47%
按下载量换算20

Cursor

18.03%
按下载量换算13

Gemini CLI

9.92%
按下载量换算7

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills