flow-nexus-platform
SolidComprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges
API & Backend 360 stars
29 forks Updated today
Install
Quality Score: 86/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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({
...
Details
- Author
- aiskillstore
- Repository
- aiskillstore/marketplace
- Created
- 5 months ago
- Last Updated
- today
- Language
- Python
- License
- None
Related Skills
API & Backend Featured
api-endpoint-builder
Builds production-ready REST API endpoints with validation, error handling, authentication, and documentation. Follows best practices for security and scalability.
40,863 Updated today
sickn33 API & Backend Featured
database
Database development and operations workflow covering SQL, NoSQL, database design, migrations, optimization, and data engineering.
40,863 Updated today
sickn33 API & Backend Featured
firebase
Firebase gives you a complete backend in minutes - auth, database, storage, functions, hosting. But the ease of setup hides real complexity. Security rules are your last line of defense, and they're often wrong.
40,863 Updated today
sickn33