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

authenticate-wallet验证钱包

Agent Skill

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

总安装

329

周安装

14

GitHub Stars

公开资料未说明

下载量

115
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于管理 fibx CLI 钱包认证会话,支持邮箱 OTP 和私钥导入两种方式。

  • 邮箱登录不索取私钥,私钥导入时会加密存储并提示风险,需用户确认继续。
  • 认证流程分两步:先 auth login 建立会话,再 auth verify 验证有效性。
  • 私钥经 AES-256-GCM 加密后本地保存,每台机器自动生成密钥,不可跨设备恢复。
  • authenticate-wallet 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Wallet Authentication

Manage the authentication session for the fibx CLI. Supports two methods: email OTP (via Privy server wallets) and private key import (local wallet).

Prerequisites

  • No active session required — this skill creates one

Rules

  1. For email login, NEVER ask the user for a private key.
  2. For private key import, warn the user: *"Your private key will be encrypted with AES-256-GCM and stored locally. The encryption key is auto-generated per machine. Shall I proceed?"*
  3. You MUST complete auth login before auth verify. They are sequential steps.
  4. After successful auth verify or auth import, ALWAYS run npx fibx@latest status to confirm the session is active.
  5. NEVER store or log private keys, OTP codes, or session tokens in conversation history.

Commands

Email OTP Login (2-step)

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

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

Private Key Import

npx fibx@latest auth import
INTERACTIVE COMMAND: This opens a prompt for the user to paste their private key. The agent CANNOT pass the key as a CLI argument. Instruct the user to enter it in the terminal prompt, or run it via the agent's terminal tool and let the user type the key.

Session Management

# Check current session status
npx fibx@latest status

# End session
npx fibx@latest auth logout

Parameters

ParameterTypeDescriptionRequired
emailstringUser's email addressYes (email OTP)
codestringOne-time password received via emailYes (verify step)

Session Details

  • Privy sessions: JWT-based, 7-day expiry. After expiry, the user must re-authenticate via auth login.
  • Private key sessions: No expiry. Session persists until auth logout.
  • Storage: Sessions are stored in an OS-dependent config directory (e.g. ~/.config/fibx-nodejs/session.json on Linux, ~/Library/Preferences/fibx-nodejs/session.json on macOS).
  • Encryption: Private keys are encrypted at rest using AES-256-GCM. The encryption key is auto-generated per machine in the OS config directory (e.g. ~/.config/fibx-nodejs/encryption-key on Linux). Legacy plaintext keys are auto-migrated on first load.
  • CI/Docker: Set FIBX_SESSION_SECRET environment variable (64-char hex) to use a custom encryption key instead of the auto-generated one.

Examples

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

npx fibx@latest auth login user@example.com
# Wait for user to provide the OTP code (e.g. "123456")
npx fibx@latest auth verify user@example.com 123456
npx fibx@latest status

User: "Import my private key"

# Warn user first, then:
npx fibx@latest auth import
npx fibx@latest status

User: "Log me out"

npx fibx@latest auth logout

Error Handling

ErrorAction
Invalid codeAsk the user to check their email and retry verify.
Rate limitWait 60 seconds before retrying.
Session expiredPrivy JWT expired (7 days). Restart from auth login.
Not authenticatedRun the full login flow before other skills.

Related Skills

  • Use status to verify your session is active before any operation.
  • Run balance after authentication to see available funds.
  • Run portfolio after authentication to see a full cross-chain overview with USD values.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.31%
按下载量换算38

Claude

32.12%
按下载量换算37

Cursor

17.57%
按下载量换算20

Gemini CLI

9.24%
按下载量换算11

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills