Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

cloud-auth云认证

Agent Skill

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

总安装

419

周安装

18

GitHub Stars

公开资料未说明

下载量

147
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add vamseeachanta/workspace-hub --skill "cloud-auth"

简介

cloud-auth 用于安全审计和权限检查,识别凭据风险和认证漏洞。

  • 适用于系统加固、依赖风险排查等安全相关任务,需分析配置细节。
  • 通过 npx skills add vamseeachanta/workspace-hub --skill "cloud-auth" 安装,需确认权限和操作边界。
  • 建议避免直接输出密钥或令牌,优先提供脱敏建议和复核清单。
  • cloud-auth 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Cloud Authentication

Handle Flow Nexus user authentication, registration, session management, and account operations.

Quick Start

// Register a new user
await mcp__flow-nexus__user_register({
  email: "user@example.com",
  password: "secure_password",
  full_name: "User Name"
});

// Login
const session = await mcp__flow-nexus__user_login({
  email: "user@example.com",
  password: "secure_password"
});

// Check auth status
const status = await mcp__flow-nexus__auth_status({ detailed: true });

// Logout
await mcp__flow-nexus__user_logout();

When to Use

  • Registering new users on Flow Nexus platform
  • Logging in existing users and managing sessions
  • Resetting forgotten passwords
  • Verifying email addresses
  • Updating user profiles and account settings
  • Upgrading user subscription tiers
  • Troubleshooting authentication issues

Prerequisites

  • MCP server flow-nexus configured
  • Valid email address for registration
  • Secure password meeting requirements

Core Concepts

Authentication Flow

Register → Verify Email → Login → Session Active → Logout
                ↑                       ↓
          Reset Password ←────── Forgot Password

User Tiers

TierCreditsFeatures
Free100/monthBasic features, community support
Pro1000/monthPriority access, email support
EnterpriseUnlimitedDedicated resources, SLA

Session Management

  • Sessions are token-based
  • Auto-expiration after inactivity
  • Secure logout clears session data

MCP Tools Reference

Authentication Status

// Check current auth status
mcp__flow-nexus__auth_status({
  detailed: true             // Include detailed auth info
})
// Returns: { authenticated, user_id, tier, session_expires }

// Initialize authentication mode
mcp__flow-nexus__auth_init({
  mode: "user"               // user or service
})

User Registration

mcp__flow-nexus__user_register({
  email: "user@example.com",
  password: "secure_password",  // Minimum 8 characters
  username: "username",         // Optional
  full_name: "Full Name"        // Optional
})
// Returns: { user_id, email, verification_sent }

User Login/Logout

// Login
mcp__flow-nexus__user_login({
  email: "user@example.com",
  password: "password"
})
// Returns: { user_id, token, expires_at, tier }

// Logout
mcp__flow-nexus__user_logout()
// Returns: { success: true }

Profile Management

// Get profile
mcp__flow-nexus__user_profile({
  user_id: "user_id"
})
// Returns: { id, email, full_name, tier, created_at }

// Update profile
mcp__flow-nexus__user_update_profile({
  user_id: "user_id",
  updates: {
    full_name: "New Name",
    bio: "Developer",
    github_username: "username"
  }
})

// Get user statistics
mcp__flow-nexus__user_stats({
  user_id: "user_id"
})
// Returns: { apps_published, credits_earned, challenges_completed }

Password Management

// Request password reset
mcp__flow-nexus__user_reset_password({
  email: "user@example.com"
})
// Returns: { email_sent: true }

// Update password with reset token
mcp__flow-nexus__user_update_password({
  token: "reset_token",
  new_password: "new_secure_password"
})

Email Verification

mcp__flow-nexus__user_verify_email({
  token: "verification_token"
})
// Returns: { verified: true }

Tier Upgrade

mcp__flow-nexus__user_upgrade({
  user_id: "user_id",
  tier: "pro"                // pro or enterprise
})
// Returns: { new_tier, effective_date }

Usage Examples

Example 1: Complete Registration Flow

// Step 1: Register user
const registration = await mcp__flow-nexus__user_register({
  email: "newuser@example.com",
  password: "SecurePass123!",
  full_name: "New User"
});

console.log("Registration successful. Check email for verification link.");

// Step 2: User clicks verification link (token from email)
const verified = await mcp__flow-nexus__user_verify_email({
  token: "verification_token_from_email"
});

if (verified.verified) {
  console.log("Email verified! You can now login.");
}

// Step 3: Login
const session = await mcp__flow-nexus__user_login({
  email: "newuser@example.com",
  password: "SecurePass123!"
});

console.log(`Welcome! Your tier: ${session.tier}`);
console.log(`Session expires: ${session.expires_at}`);

Example 2: Password Reset Flow

// User forgot password
await mcp__flow-nexus__user_reset_password({
  email: "user@example.com"
});

console.log("Password reset email sent.");

// User receives email with reset token
// User clicks link and provides new password
await mcp__flow-nexus__user_update_password({
  token: "reset_token_from_email",
  new_password: "NewSecurePass456!"
});

console.log("Password updated. Please login with new password.");

// Login with new password
const session = await mcp__flow-nexus__user_login({
  email: "user@example.com",
  password: "NewSecurePass456!"
});

Example 3: Profile Management

// Check current auth status
const status = await mcp__flow-nexus__auth_status({
  detailed: true
});

if (!status.authenticated) {
  console.log("Please login first.");
  return;
}

// Get current profile
const profile = await mcp__flow-nexus__user_profile({
  user_id: status.user_id
});

console.log(`Current name: ${profile.full_name}`);
console.log(`Tier: ${profile.tier}`);

// Update profile
await mcp__flow-nexus__user_update_profile({
  user_id: status.user_id,
  updates: {
    full_name: "Updated Name",
    bio: "Full-stack developer specializing in AI",
    github_username: "myusername",
    website: "https://mywebsite.com"
  }
});

// Get user statistics
const stats = await mcp__flow-nexus__user_stats({
  user_id: status.user_id
});

console.log(`
User Statistics:
- Apps Published: ${stats.apps_published}
- Credits Earned: ${stats.credits_earned}
- Challenges Completed: ${stats.challenges_completed}
`);

Example 4: Tier Upgrade

// Check current status
const status = await mcp__flow-nexus__auth_status({ detailed: true });

console.log(`Current tier: ${status.tier}`);

if (status.tier === "free") {
  // Upgrade to Pro
  const upgrade = await mcp__flow-nexus__user_upgrade({
    user_id: status.user_id,
    tier: "pro"
  });

  console.log(`Upgraded to: ${upgrade.new_tier}`);
  console.log(`Effective: ${upgrade.effective_date}`);
  console.log("You now have access to 1000 credits/month and priority features!");
}

Execution Checklist

For Registration

  • Provide valid email address
  • Create secure password (8+ characters)
  • Complete registration
  • Check email for verification
  • Click verification link
  • Login with credentials

For Password Reset

  • Request password reset
  • Check email for reset link
  • Click reset link
  • Enter new secure password
  • Login with new password

Best Practices

  1. Strong Passwords: Use 8+ characters with mix of letters, numbers, symbols
  2. Email Verification: Always verify email before accessing features
  3. Session Security: Logout when done, especially on shared devices
  4. Profile Completeness: Fill out profile for better experience
  5. Regular Password Changes: Update password periodically
  6. Two-Factor Auth: Enable 2FA when available

Error Handling

ErrorCauseSolution
registration_failedInvalid email or weak passwordVerify email format, strengthen password
login_failedWrong credentials or unverified emailCheck credentials, verify email
session_expiredToken expiredLogin again
email_not_verifiedAccount not verifiedCheck email for verification link
password_reset_failedInvalid or expired tokenRequest new reset link
unauthorizedNot logged inLogin first

Metrics & Success Criteria

  • Login Success Rate: >99% for valid credentials
  • Registration Completion: >90% complete verification
  • Password Reset Success: >95% successful resets
  • Session Duration: Average session length tracking

Integration Points

With User Tools

// After login, configure user settings
await mcp__flow-nexus__user_update_profile({
  user_id: session.user_id,
  updates: { preferences: { theme: "dark" } }
});

With Payments

// After login, check balance
const balance = await mcp__flow-nexus__check_balance();
console.log(`Available credits: ${balance.credits}`);

Related Skills

Security Guidelines

  1. Never share passwords - Use password reset if needed
  2. Check URLs - Verify you're on official Flow Nexus site
  3. Report suspicious activity - Contact support immediately
  4. Secure email - Protect the email linked to your account
  5. Logout on public devices - Clear sessions on shared computers

References

Version History

  • 1.0.0 (2026-01-02): Initial release - converted from flow-nexus-auth agent

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

26.87%
按下载量换算39

windsurf

22.73%
按下载量换算33

trae

15.98%
按下载量换算23

OpenCode

12.45%
按下载量换算18

Cursor

8.23%
按下载量换算12

Codex

3.65%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills