Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges
用和首页一致的趋势图,快速判断这个 skill 最近是否还在被持续下载和使用。
---
name: flow-nexus-platform
description: Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges
category: platform
version: 1.0.0
author: Flow Nexus
tags: [authentication, sandboxes, deployment, payments, gamification, cloud]
---
# Flow Nexus Platform Management
Comprehensive platform management for Flow Nexus - covering authentication, sandbox execution, app deployment, credit management, and coding challenges.
## Table of Contents
1. [Authentication & User Management](#authentication--user-management)
2. [Sandbox Management](#sandbox-management)
3. [App Store & Deployment](#app-store--deployment)
4. [Payments & Credits](#payments--credits)
5. [Challenges & Achievements](#challenges--achievements)
6. [Storage & Real-time](#storage--real-time)
7. [System Utilities](#system-utilities)
---
## Authentication & User Management
### Registration & Login
**Register New Account**
```javascript
mcp__flow-nexus__user_register({
email: "user@example.com",
password: "secure_password",
full_name: "Your Name",
username: "unique_username" // optional
})
```
**Login**
```javascript
mcp__flow-nexus__user_login({
email: "user@example.com",
password: "your_password"
})
```
**Check Authentication Status**
```javascript
mcp__flow-nexus__auth_status({ detailed: true })
```
**Logout**
```javascript
mcp__flow-nexus__user_logout()
```
### Password Management
**Request Password Reset**
```javascript
mcp__flow-nexus__user_reset_password({
email: "user@example.com"
})
```
**Update Password with Token**
```javascript
mcp__flow-nexus__user_update_password({
token: "reset_token_from_email",
new_password: "new_secure_password"
})
```
**Verify Email**
```javascript
mcp__flow-nexus__user_verify_email({
token: "verification_token_from_email"
})
```
### Profile Management
**Get User Profile**
```javascript
mcp__flow-nexus__user_profile({
user_id: "your_user_id"
})
```
**Update Profile**
```javascript
mcp__flow-nexus__user_update_profile({
user_id: "your_user_id",
updates: {
full_name: "Updated Name",
bio: "AI Developer and researcher",
github_username: "yourusername",
twitter_handle: "@yourhandle"
}
})
```
**Get User Statistics**
```javascript
mcp__flow-nexus__user_stats({
user_id: "your_user_id"
})
```
**Upgrade User Tier**
```javascript
mcp__flow-nexus__user_upgrade({
user_id: "your_user_id",
tier: "pro" // pro, enterprise
})
```
---
## Sandbox Management
### Create & Configure Sandboxes
**Create Sandbox**
```javascript
mcp__flow-nexus__sandbox_create({
预览已截断。下载完整技能包可查看全部文件内容。
1. 先判断它是否匹配你的任务、运行环境和依赖边界。
2. 再结合最近 7 天下载趋势,决定是直接安装还是先下载完整包审阅。
3. 需要程序化集成时,再去 Docs 查看 API 和 OpenAPI 描述。
暂无同分类相关技能。