claudegoodies
Command

login-registration

From ruvnet

Flow Nexus authentication and user management

Install

/login-registration

Facts

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 service
View full source on GitHub →

Other slash commands