user-tools
From ruvnet
User management, storage, and system utilities
Install
/user-toolsFacts
- Repository
- ruvnet/ruflo
- Status
- Actively maintained
- Last commit
- Source file
- .claude/commands/flow-nexus/user-tools.md
Source preview
The instructions Claude Code reads when this command runs.
# Flow Nexus User Tools
Utilities for user management, storage, and system operations.
## 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",
bio: "Developer interested in AI",
github_username: "username"
}
})
// Get statistics
mcp__flow-nexus__user_stats({
user_id: "your_id"
})
```
## Storage Management
```javascript
// Upload file
mcp__flow-nexus__storage_upload({
bucket: "my-bucket",
path: "data/file.json",
content: JSON.stringify(data),
content_type: "application/json"
})
// List files
mcp__flow-nexus__storage_list({
bucket: "my-bucket",
path: "data/",
limit: 100
})
// Get public URL
mcp__flow-nexus__storage_get_url({
bucket: "my-bucket",
path: "data/file.json",
expires_in: 3600 // seconds
})
// Delete file
mcp__flow-nexus__storage_delete({
bucket: "my-bucket",
path: "data/file.json"
})
```
## Real-time Subscriptions
```javascript
// Subscribe to database changes
mcp__flow-nexus__realtime_subscribe({
table: "tasks",
event: "INSERT", // UPDATE, DELETE, *
filter: "status=eq.pending"
})
// List subscriptions
mcp__flow-nexus__realtime_list()
// Unsubscribe
mcp__flow-nexus__realtime_unsubscribe({
subscription_id: "sub_id"
})
```
## Execution Monitoring
```View 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