login-registration
From ruvnet
Flow Nexus authentication and user management
Install
/login-registrationFacts
- Repository
- ruvnet/ruflo
- Status
- Actively maintained
- Last commit
Source preview
The instructions Claude Code reads when this command runs.
# Flow Nexus Authentication
Quick commands for Flow Nexus login and registration.
## Register New Account
```javascript
mcp__flow-nexus__user_register({
email: "[email protected]",
password: "secure_password",
full_name: "Your Name" // optional
})
```
## Login
```javascript
mcp__flow-nexus__user_login({
email: "[email protected]",
password: "your_password"
})
```
## Check Auth Status
```javascript
mcp__flow-nexus__auth_status({ detailed: true })
```
## Logout
```javascript
mcp__flow-nexus__user_logout()
```
## Password Reset
```javascript
// Request reset
mcp__flow-nexus__user_reset_password({ email: "[email protected]" })
// Update with token
mcp__flow-nexus__user_update_password({
token: "reset_token",
new_password: "new_secure_password"
})
```
## Profile Management
```javascript
// Get profile
mcp__flow-nexus__user_profile({ user_id: "your_id" })
// Update profile
mcp__flow-nexus__user_update_profile({
user_id: "your_id",
updates: { full_name: "New Name" }
})
```
## Quick Start
1. Register with your email
2. Check your email for verification
3. Login to access all features
4. Configure auto-refill for uninterrupted serviceView full source on GitHub →Other slash commands
feature-development
★ 229,918Workflow command scaffold for feature-development in everything-claude-code.
affaan-mupdated 15d agoMITdatabase-migration
★ 229,918Workflow command scaffold for database-migration in everything-claude-code.
affaan-mupdated 15d agoMITadd-language-rules
★ 229,918Workflow command scaffold for add-language-rules in everything-claude-code.
affaan-mupdated 15d agoMITcommit-push-pr
★ 137,934Commit, push, and open a PR
anthropicsupdated 14d agodedupe
★ 137,934Find duplicate GitHub issues
anthropicsupdated 14d agotriage-issue
★ 137,934Triage GitHub issues by analyzing and applying labels
anthropicsupdated 14d ago