Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

cloud-app-store云应用商店

Agent Skill

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

总安装

445

周安装

18

GitHub Stars

公开资料未说明

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add vamseeachanta/workspace-hub --skill "cloud-app-store"

简介

cloud-app-store 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 适用于应用市场研究或工具发现类任务,支持基于来源线索匹配内容。
  • 通过 npx skills add vamseeachanta/workspace-hub --skill "cloud-app-store" 安装,需验证权限范围。
  • 建议安装前检查维护状态及是否涉及联网、命令执行等潜在风险操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cloud App Store

Manage the Flow Nexus application marketplace: discover, publish, deploy, and analyze applications and templates.

Quick Start

// Search for authentication apps
const apps = await mcp__flow-nexus__app_search({
  search: "authentication",
  category: "backend",
  featured: true
});

// Deploy a template
await mcp__flow-nexus__template_deploy({
  template_name: "express-api-starter",
  deployment_name: "my-api",
  variables: {
    api_key: "your_api_key",
    database_url: "postgres://..."
  }
});

// Publish your own app
await mcp__flow-nexus__app_store_publish_app({
  name: "My Auth Service",
  description: "JWT-based authentication microservice",
  category: "backend",
  source_code: sourceCode,
  tags: ["auth", "jwt", "express"]
});

When to Use

  • Discovering pre-built applications and templates
  • Publishing applications to the marketplace
  • Deploying templates for rapid project setup
  • Analyzing app performance and user engagement
  • Managing installed applications
  • Tracking marketplace trends and statistics

Prerequisites

  • Flow Nexus account with active session
  • MCP server flow-nexus configured
  • Publishing requires verified developer status

Core Concepts

App Categories

CategoryDescription
Web APIsRESTful APIs, microservices, backend frameworks
FrontendReact, Vue, Angular apps and component libraries
Full-StackComplete applications with frontend and backend
CLI ToolsCommand-line utilities and productivity tools
Data ProcessingETL pipelines, analytics, transformation tools
ML ModelsPre-trained models, inference services
BlockchainWeb3, smart contracts, DeFi protocols
MobileReact Native apps, mobile-first solutions

Template Types

  • Starter Templates: Basic project scaffolding
  • Feature Templates: Pre-built feature modules
  • Full Applications: Complete, deployable apps
  • Component Libraries: Reusable UI components

MCP Tools Reference

App Discovery

// Search apps
mcp__flow-nexus__app_search({
  search: "query string",      // Search term
  category: "backend",         // Category filter
  featured: true,              // Featured apps only
  limit: 20                    // Max results (1-100)
})
// Returns: { apps: [{ id, name, description, category, rating }] }

// Get app details
mcp__flow-nexus__app_get({
  app_id: "app_id"
})
// Returns: { id, name, description, version, author, downloads, rating }

// List installed apps
mcp__flow-nexus__app_installed({
  user_id: "user_id"
})
// Returns: { installed_apps: [{ app_id, installed_at, version }] }

Template Management

// List templates
mcp__flow-nexus__template_list({
  category: "backend",
  featured: true,
  limit: 20
})

// Alternative: app store templates
mcp__flow-nexus__app_store_list_templates({
  category: "frontend",
  tags: ["react", "typescript"],
  limit: 20
})

// Get template details
mcp__flow-nexus__template_get({
  template_name: "express-api-starter"
})
// Returns: { id, name, description, variables, requirements }

// Deploy template
mcp__flow-nexus__template_deploy({
  template_id: "template_id",    // Or use template_name
  template_name: "express-api-starter",
  deployment_name: "my-project",
  variables: {
    api_key: "key",
    database_url: "postgres://..."
  },
  env_vars: {
    NODE_ENV: "production"
  }
})
// Returns: { deployment_id, url, status }

App Publishing

mcp__flow-nexus__app_store_publish_app({
  name: "App Name",
  description: "Detailed description of the app",
  category: "backend",
  source_code: "// Your source code here",
  version: "1.0.0",
  tags: ["tag1", "tag2", "tag3"],
  metadata: {
    author: "Your Name",
    repository: "https://github.com/..."
  }
})
// Returns: { app_id, status, review_pending }

App Management

// Update app
mcp__flow-nexus__app_update({
  app_id: "app_id",
  updates: {
    description: "Updated description",
    version: "1.1.0"
  }
})

// Get analytics
mcp__flow-nexus__app_analytics({
  app_id: "app_id",
  timeframe: "30d"           // 24h, 7d, 30d, 90d
})
// Returns: { downloads, active_users, rating, revenue }

// Get market data
mcp__flow-nexus__market_data()
// Returns: { total_apps, total_downloads, trending, categories }

Usage Examples

Example 1: Finding and Deploying an API Template

// Search for API templates
const templates = await mcp__flow-nexus__template_list({
  category: "backend",
  featured: true
});

// Find the Express starter
const expressTemplate = templates.templates.find(
  t => t.name.includes("express")
);

// Get template details
const details = await mcp__flow-nexus__template_get({
  template_id: expressTemplate.id
});

console.log("Required variables:", details.variables);

// Deploy the template
const deployment = await mcp__flow-nexus__template_deploy({
  template_id: expressTemplate.id,
  deployment_name: "my-express-api",
  variables: {
    database_url: process.env.DATABASE_URL,
    jwt_secret: process.env.JWT_SECRET,
    port: "3000"
  },
  env_vars: {
    NODE_ENV: "production"
  }
});

console.log(`Deployed at: ${deployment.url}`);

Example 2: Publishing a New Application

// Prepare your application
const sourceCode = `
const express = require('express');
const jwt = require('jsonwebtoken');

const app = express();
app.use(express.json());

// JWT authentication middleware
const authenticate = (req, res, next) => {
  const token = req.headers.authorization?.split(' ')[1];
  if (!token) return res.status(401).json({ error: 'Unauthorized' });

  try {
    req.user = jwt.verify(token, process.env.JWT_SECRET);
    next();
  } catch {
    res.status(401).json({ error: 'Invalid token' });
  }
};

// Routes
app.post('/login', (req, res) => {
  const { username, password } = req.body;
  // Authentication logic
  const token = jwt.sign({ username }, process.env.JWT_SECRET);
  res.json({ token });
});

app.get('/protected', authenticate, (req, res) => {
  res.json({ message: 'Protected data', user: req.user });
});

module.exports = app;
`;

// Publish to app store
const published = await mcp__flow-nexus__app_store_publish_app({
  name: "JWT Auth Service",
  description: "A complete JWT authentication service with Express.js. Includes login, token verification, and protected route middleware.",
  category: "backend",
  source_code: sourceCode,
  version: "1.0.0",
  tags: ["authentication", "jwt", "express", "middleware", "security"],
  metadata: {
    author: "Your Name",
    license: "MIT",
    repository: "https://github.com/yourname/jwt-auth-service"
  }
});

console.log(`App published with ID: ${published.app_id}`);

Example 3: Analyzing App Performance

// Get your app's analytics
const analytics = await mcp__flow-nexus__app_analytics({
  app_id: "your_app_id",
  timeframe: "30d"
});

console.log(`
App Performance Report (Last 30 Days):
- Total Downloads: ${analytics.downloads}
- Active Users: ${analytics.active_users}
- Average Rating: ${analytics.rating}/5
- Revenue: ${analytics.revenue} rUv credits
`);

// Get market trends
const market = await mcp__flow-nexus__market_data();

console.log(`
Market Overview:
- Total Apps: ${market.total_apps}
- Total Downloads: ${market.total_downloads}
- Trending Categories: ${market.trending.categories.join(', ')}
`);

Example 4: Managing Installed Apps

// List installed apps
const installed = await mcp__flow-nexus__app_installed({
  user_id: "your_user_id"
});

for (const app of installed.installed_apps) {
  // Get details for each installed app
  const details = await mcp__flow-nexus__app_get({
    app_id: app.app_id
  });

  console.log(`${details.name} v${app.version} - Installed: ${app.installed_at}`);
}

Execution Checklist

For App Discovery

  • Search with relevant keywords and filters
  • Review app details and documentation
  • Check ratings and reviews
  • Verify category and template requirements
  • Deploy with appropriate configuration

For App Publishing

  • Prepare clean, well-documented source code
  • Write comprehensive description
  • Add relevant tags for discoverability
  • Set appropriate version number
  • Include metadata (author, license, repository)
  • Submit for review

Best Practices

  1. Clear Descriptions: Write detailed, helpful app descriptions
  2. Proper Tagging: Use relevant tags for discoverability
  3. Version Management: Follow semantic versioning
  4. Documentation: Include README and usage examples
  5. Security Scanning: Ensure code passes security checks
  6. Regular Updates: Keep apps updated and maintained

Error Handling

ErrorCauseSolution
app_not_foundInvalid app_idUse app_search to find valid IDs
publish_failedInvalid source code or metadataVerify all required fields
template_deploy_failedMissing required variablesCheck template requirements
unauthorizedNot logged in or insufficient permissionsAuthenticate first
duplicate_app_nameApp name already existsChoose unique name

Metrics & Success Criteria

  • App Downloads: Track total and daily downloads
  • User Rating: Target >4.0/5 average rating
  • Active Users: Monitor engagement over time
  • Revenue: Track rUv credit earnings
  • Deployment Success: >95% successful deployments

Integration Points

With Sandboxes

// Deploy template to sandbox for testing
const sandbox = await mcp__flow-nexus__sandbox_create({
  template: "node"
});

await mcp__flow-nexus__template_deploy({
  template_name: "express-api-starter",
  variables: { sandbox_id: sandbox.sandbox_id }
});

With Payments

// Track app revenue
const balance = await mcp__flow-nexus__ruv_balance({
  user_id: "publisher_id"
});

// Revenue from published apps appears in balance

Related Skills

References

Version History

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

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

27.95%
按下载量换算39

windsurf

21.89%
按下载量换算31

trae

18.38%
按下载量换算26

OpenCode

11.4%
按下载量换算16

Cursor

7.39%
按下载量换算10

Codex

3.37%
按下载量换算5

安全审计

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

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills