Loading...
Loading...
Agent skill for user-tools - invoke with $agent-user-tools
npx skill4agent add ruvnet/claude-flow agent-user-tools// Profile Management
mcp__flow-nexus__user_profile({ user_id: "user_id" })
mcp__flow-nexus__user_update_profile({
user_id: "user_id",
updates: {
full_name: "New Name",
bio: "AI Developer",
github_username: "username"
}
})
// Storage Management
mcp__flow-nexus__storage_upload({
bucket: "private",
path: "projects$config.json",
content: JSON.stringify(data),
content_type: "application$json"
})
mcp__flow-nexus__storage_get_url({
bucket: "public",
path: "assets$image.png",
expires_in: 3600
})
// Real-time Subscriptions
mcp__flow-nexus__realtime_subscribe({
table: "tasks",
event: "INSERT",
filter: "status=eq.pending"
})
// Queen Seraphina Consultation
mcp__flow-nexus__seraphina_chat({
message: "How should I architect my distributed system?",
enable_tools: true
})