Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

cloud-user-tools云用户工具

Agent Skill

cloud-user-tools 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

公开资料未说明

下载量

148
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cloud-user-tools(云用户工具)
来源仓库:https://github.com/vamseeachanta/workspace-hub
仓库路径:skills/cloud-user-tools
安装命令:
npx skills add vamseeachanta/workspace-hub --skill "cloud-user-tools"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add vamseeachanta/workspace-hub --skill "cloud-user-tools"

简介

云用户工具集合面向终端用户的实用小工具,如状态检查、快捷链接等。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中增强人机交互体验。
  • 通常包含轻量级 Web UI 或命令行界面供选择调用。
  • 安装命令:npx skills add vamseeachanta/workspace-hub --skill "cloud-user-tools"。
  • 部分功能可能依赖浏览器环境,注意跨域与安全策略限制。

SKILL.md

Cloud User Tools

Manage user profiles, file storage, real-time subscriptions, and access platform utilities in Flow Nexus.

Quick Start

// Update profile
await mcp__flow-nexus__user_update_profile({
  user_id: "user_id",
  updates: {
    full_name: "Developer Name",
    bio: "AI Developer",
    github_username: "username"
  }
});

// Upload file to storage
await mcp__flow-nexus__storage_upload({
  bucket: "private",
  path: "projects/config.json",
  content: JSON.stringify({ key: "value" }),
  content_type: "application/json"
});

// Subscribe to real-time updates
await mcp__flow-nexus__realtime_subscribe({
  table: "tasks",
  event: "INSERT",
  filter: "status=eq.pending"
});

// Consult Queen Seraphina
const advice = await mcp__flow-nexus__seraphina_chat({
  message: "How should I architect my distributed system?",
  enable_tools: true
});

When to Use

  • Managing user profiles and account settings
  • Uploading and organizing files in cloud storage
  • Setting up real-time notifications and subscriptions
  • Monitoring system health and diagnostics
  • Consulting Queen Seraphina for guidance
  • Tracking execution streams and output files
  • Reviewing audit logs for security

Prerequisites

  • Flow Nexus account with active session
  • MCP server flow-nexus configured
  • Appropriate permissions for storage operations

Core Concepts

Storage Buckets

BucketAccessPurpose
privateUser-onlyPersonal files, configs
publicAnyoneShared assets, downloads
sharedTeamCollaboration files
tempAuto-expireTransient data

Real-time Events

EventDescription
INSERTNew record created
UPDATERecord modified
DELETERecord removed
*All events

Queen Seraphina

AI assistant providing:

  • Architectural guidance
  • Best practices advice
  • Complex decision support
  • Tool execution (when enabled)

MCP Tools Reference

Profile Management

// Get profile
mcp__flow-nexus__user_profile({
  user_id: "user_id"
})
// Returns: { id, email, full_name, bio, tier, created_at }

// Update profile
mcp__flow-nexus__user_update_profile({
  user_id: "user_id",
  updates: {
    full_name: "New Name",
    bio: "Developer bio",
    github_username: "username",
    website: "https://example.com"
  }
})

// Get statistics
mcp__flow-nexus__user_stats({
  user_id: "user_id"
})
// Returns: { apps_published, credits_earned, challenges_completed }

Storage Operations

// Upload file
mcp__flow-nexus__storage_upload({
  bucket: "private",           // private, public, shared, temp
  path: "folder/file.json",
  content: "file content",
  content_type: "application/json"
})

// List files
mcp__flow-nexus__storage_list({
  bucket: "private",
  path: "folder/",             // Path prefix
  limit: 100                   // Max 1000
})
// Returns: { files: [{ name, size, created_at }] }

// Get public URL
mcp__flow-nexus__storage_get_url({
  bucket: "public",
  path: "assets/image.png",
  expires_in: 3600             // Seconds
})
// Returns: { url, expires_at }

// Delete file
mcp__flow-nexus__storage_delete({
  bucket: "private",
  path: "folder/file.json"
})

Real-time Subscriptions

// Subscribe to table changes
mcp__flow-nexus__realtime_subscribe({
  table: "tasks",              // Table name
  event: "INSERT",             // INSERT, UPDATE, DELETE, *
  filter: "status=eq.pending"  // Optional filter
})
// Returns: { subscription_id }

// List subscriptions
mcp__flow-nexus__realtime_list()
// Returns: { subscriptions: [{ id, table, event }] }

// Unsubscribe
mcp__flow-nexus__realtime_unsubscribe({
  subscription_id: "subscription_id"
})

Execution Streams

// Subscribe to execution stream
mcp__flow-nexus__execution_stream_subscribe({
  stream_type: "claude-code",   // claude-code, claude-flow-swarm, github-integration
  sandbox_id: "sandbox_id",
  deployment_id: "deployment_id"
})

// Check stream status
mcp__flow-nexus__execution_stream_status({
  stream_id: "stream_id"
})

// List execution files
mcp__flow-nexus__execution_files_list({
  stream_id: "stream_id",
  created_by: "claude-code",    // claude-code, claude-flow, git-clone, user
  file_type: "js"
})

// Get file content
mcp__flow-nexus__execution_file_get({
  file_id: "file_id",
  file_path: "/path/to/file"
})

Queen Seraphina

mcp__flow-nexus__seraphina_chat({
  message: "Your question or request",
  conversation_history: [       // Optional previous messages
    { role: "user", content: "Previous question" },
    { role: "assistant", content: "Previous answer" }
  ],
  enable_tools: true            // Allow tool execution
})
// Returns: { response, tools_used }

System Utilities

// Check system health
mcp__flow-nexus__system_health()
// Returns: { status, services: { api, database, storage } }

// Get audit logs
mcp__flow-nexus__audit_log({
  user_id: "user_id",           // Optional filter
  limit: 100                    // Max 1000
})
// Returns: { events: [{ timestamp, action, user, details }] }

Usage Examples

Example 1: Complete Profile Setup

// Get current profile
const profile = await mcp__flow-nexus__user_profile({
  user_id: "your_user_id"
});

console.log(`Current profile: ${profile.full_name}`);

// Update with complete information
await mcp__flow-nexus__user_update_profile({
  user_id: "your_user_id",
  updates: {
    full_name: "Alex Developer",
    bio: "Full-stack developer specializing in AI and distributed systems",
    github_username: "alexdev",
    twitter_username: "alexdev",
    website: "https://alexdev.io",
    location: "San Francisco, CA",
    company: "Tech Startup",
    preferences: {
      theme: "dark",
      notifications: true,
      newsletter: true
    }
  }
});

// Get user statistics
const stats = await mcp__flow-nexus__user_stats({
  user_id: "your_user_id"
});

console.log(`
Profile Statistics:
- Apps Published: ${stats.apps_published}
- Credits Earned: ${stats.credits_earned}
- Challenges Completed: ${stats.challenges_completed}
`);

Example 2: File Storage Management

// Upload project configuration
await mcp__flow-nexus__storage_upload({
  bucket: "private",
  path: "projects/my-app/config.json",
  content: JSON.stringify({
    name: "My Application",
    version: "1.0.0",
    settings: {
      debug: false,
      maxConnections: 100
    }
  }, null, 2),
  content_type: "application/json"
});

// Upload public asset
await mcp__flow-nexus__storage_upload({
  bucket: "public",
  path: "assets/logo.svg",
  content: '<svg>...</svg>',
  content_type: "image/svg+xml"
});

// Get public URL for sharing
const logoUrl = await mcp__flow-nexus__storage_get_url({
  bucket: "public",
  path: "assets/logo.svg",
  expires_in: 86400  // 24 hours
});

console.log(`Share this URL: ${logoUrl.url}`);

// List all project files
const files = await mcp__flow-nexus__storage_list({
  bucket: "private",
  path: "projects/my-app/",
  limit: 50
});

console.log("Project files:");
for (const file of files.files) {
  console.log(`- ${file.name} (${file.size} bytes)`);
}

// Clean up old files
await mcp__flow-nexus__storage_delete({
  bucket: "private",
  path: "projects/old-project/config.json"
});

Example 3: Real-time Notifications

// Subscribe to task updates
const taskSub = await mcp__flow-nexus__realtime_subscribe({
  table: "tasks",
  event: "*",
  filter: "user_id=eq.your_user_id"
});

console.log(`Subscribed to tasks: ${taskSub.subscription_id}`);

// Subscribe to workflow completions
const workflowSub = await mcp__flow-nexus__realtime_subscribe({
  table: "workflow_executions",
  event: "UPDATE",
  filter: "status=eq.completed"
});

// Subscribe to new messages
const messageSub = await mcp__flow-nexus__realtime_subscribe({
  table: "messages",
  event: "INSERT"
});

// List all active subscriptions
const subscriptions = await mcp__flow-nexus__realtime_list();

console.log("Active subscriptions:");
for (const sub of subscriptions.subscriptions) {
  console.log(`- ${sub.table}: ${sub.event}`);
}

// Unsubscribe when done
await mcp__flow-nexus__realtime_unsubscribe({
  subscription_id: taskSub.subscription_id
});

Example 4: Consulting Queen Seraphina

// Ask for architectural guidance
const advice = await mcp__flow-nexus__seraphina_chat({
  message: "I need to design a real-time collaborative editing system. What architecture would you recommend?",
  enable_tools: false
});

console.log("Seraphina's advice:", advice.response);

// Follow-up with context
const followUp = await mcp__flow-nexus__seraphina_chat({
  message: "How should I handle conflict resolution in that architecture?",
  conversation_history: [
    { role: "user", content: "I need to design a real-time collaborative editing system..." },
    { role: "assistant", content: advice.response }
  ],
  enable_tools: false
});

// Ask for help with tool execution
const withTools = await mcp__flow-nexus__seraphina_chat({
  message: "Create a mesh swarm with 5 agents for my project",
  enable_tools: true
});

console.log("Tools used:", withTools.tools_used);

Example 5: Execution Stream Monitoring

// Subscribe to Claude Code execution
const stream = await mcp__flow-nexus__execution_stream_subscribe({
  stream_type: "claude-code",
  sandbox_id: "active_sandbox_id"
});

// Check stream status
const status = await mcp__flow-nexus__execution_stream_status({
  stream_id: stream.stream_id
});

console.log(`Stream status: ${status.status}`);
console.log(`Output lines: ${status.output_lines}`);

// List files created during execution
const files = await mcp__flow-nexus__execution_files_list({
  stream_id: stream.stream_id,
  created_by: "claude-code"
});

console.log("Files created:");
for (const file of files.files) {
  console.log(`- ${file.path} (${file.type})`);
}

// Get specific file content
const fileContent = await mcp__flow-nexus__execution_file_get({
  file_id: files.files[0].id
});

console.log("File content:", fileContent.content);

Example 6: System Monitoring and Audit

// Check system health
const health = await mcp__flow-nexus__system_health();

console.log(`System Status: ${health.status}`);
console.log("Services:");
for (const [service, status] of Object.entries(health.services)) {
  console.log(`- ${service}: ${status}`);
}

// Review audit logs
const auditLogs = await mcp__flow-nexus__audit_log({
  user_id: "your_user_id",
  limit: 50
});

console.log("Recent Activity:");
for (const event of auditLogs.events) {
  console.log(`${event.timestamp}: ${event.action} - ${event.details}`);
}

Execution Checklist

  • Complete profile setup with all relevant information
  • Organize storage with proper bucket selection
  • Set up real-time subscriptions for important events
  • Monitor execution streams during development
  • Consult Seraphina for complex decisions
  • Review audit logs periodically
  • Clean up unused subscriptions and files

Best Practices

  1. Profile Completeness: Fill out all profile fields for better discoverability
  2. Bucket Selection: Use appropriate buckets for access control
  3. File Organization: Create clear folder structures in storage
  4. Subscription Hygiene: Unsubscribe when monitoring is complete
  5. Seraphina Usage: Provide context for better advice
  6. Audit Review: Check logs regularly for security

Error Handling

ErrorCauseSolution
profile_not_foundInvalid user_idVerify user_id
storage_upload_failedInvalid bucket or pathCheck bucket name and path format
subscription_failedInvalid table or filterVerify table exists and filter syntax
seraphina_unavailableService temporarily downRetry later
file_not_foundInvalid file_id or pathUse storage_list to find valid files

Metrics & Success Criteria

  • Profile Completeness: 100% of fields filled
  • Storage Organization: Clear folder structure
  • Active Subscriptions: Minimal unused subscriptions
  • Response Time: <2s for storage operations

Integration Points

With Authentication

// Profile updates require authentication
const auth = await mcp__flow-nexus__auth_status({ detailed: true });
if (auth.authenticated) {
  await mcp__flow-nexus__user_update_profile({ user_id: auth.user_id, ... });
}

With Sandboxes

// Monitor sandbox execution
await mcp__flow-nexus__execution_stream_subscribe({
  stream_type: "claude-code",
  sandbox_id: sandbox.sandbox_id
});

Related Skills

References

Version History

  • 1.0.0 (2026-01-02): Initial release - converted from flow-nexus-user-tools agent

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.14%
按下载量换算43

windsurf

21.1%
按下载量换算31

trae

18.89%
按下载量换算28

OpenCode

13.26%
按下载量换算20

Cursor

7.42%
按下载量换算11

Codex

3.43%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills