Skip to main content
ClaudeWave
Slash Command745 repo starsupdated 20d ago

flow-nexus-auth

The flow-nexus-auth command provides account management operations for Flow Nexus users, including registration, login, logout, password reset, and profile updates. Use this when implementing user authentication flows, managing user sessions, checking authentication status, or allowing users to modify their account information and credentials.

Install in Claude Code
Copy
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/ruvnet/agentic-flow/HEAD/.claude/commands/flow-nexus/login-registration.md -o ~/.claude/commands/flow-nexus-auth.md
Then start a new Claude Code session; the slash command loads automatically.

login-registration.md

# Flow Nexus Authentication

Quick commands for Flow Nexus login and registration.

## Register New Account
```javascript
mcp__flow-nexus__user_register({
  email: "user@example.com",
  password: "secure_password",
  full_name: "Your Name" // optional
})
```

## Login
```javascript
mcp__flow-nexus__user_login({
  email: "user@example.com",
  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: "user@example.com" })

// 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
base-template-generatorSubagent

Use this agent when you need to create foundational templates, boilerplate code, or starter configurations for new projects, components, or features. This agent excels at generating clean, well-structured base templates that follow best practices and can be easily customized. Examples: <example>Context: User needs to start a new React component and wants a solid foundation. user: 'I need to create a new user profile component' assistant: 'I'll use the base-template-generator agent to create a comprehensive React component template with proper structure, TypeScript definitions, and styling setup.' <commentary>Since the user needs a foundational template for a new component, use the base-template-generator agent to create a well-structured starting point.</commentary></example> <example>Context: User is setting up a new API endpoint and needs a template. user: 'Can you help me set up a new REST API endpoint for user management?' assistant: 'I'll use the base-template-generator agent to create a complete API endpoint template with proper error handling, validation, and documentation structure.' <commentary>The user needs a foundational template for an API endpoint, so use the base-template-generator agent to provide a comprehensive starting point.</commentary></example>

claude-flow-helpSlash Command

Show Claude-Flow commands and usage

claude-flow-memorySlash Command

Interact with Claude-Flow memory system

claude-flow-swarmSlash Command

Coordinate multi-agent swarms for complex tasks

flow-nexus-app-storeSlash Command

Browse, publish, and deploy applications

flow-nexus-challengesSlash Command

Coding challenges, achievements, and leaderboards

flow-nexus-neuralSlash Command

Train and deploy neural networks in distributed sandboxes

flow-nexus-paymentsSlash Command

Credit management, billing, and payment configuration