claudegoodies
Command

app-store

From ruvnet

Browse, publish, and deploy applications

Install

/app-store

Facts

Repository
ruvnet/ruflo
Status
Actively maintained
Last commit

Source preview

The instructions Claude Code reads when this command runs.

# Flow Nexus App Store

Browse templates, publish apps, and deploy solutions.

## Browse Apps
```javascript
// Search apps
mcp__flow-nexus__app_search({
  search: "authentication",
  category: "backend",
  featured: true,
  limit: 20
})

// Get app details
mcp__flow-nexus__app_get({ app_id: "app_id" })

// List templates
mcp__flow-nexus__app_store_list_templates({
  category: "web-api",
  tags: ["express", "jwt"],
  limit: 20
})
```

## Publish App
```javascript
mcp__flow-nexus__app_store_publish_app({
  name: "My Auth Service",
  description: "JWT-based authentication microservice",
  category: "backend",
  version: "1.0.0",
  source_code: sourceCode,
  tags: ["auth", "jwt", "express"],
  metadata: {
    author: "Your Name",
    license: "MIT",
    repository: "github.com/user/repo"
  }
})
```

## Deploy Templates
```javascript
// Get template details
mcp__flow-nexus__template_get({
  template_name: "express-api-starter"
})

// Deploy template
mcp__flow-nexus__template_deploy({
  template_name: "express-api-starter",
  deployment_name: "my-api",
  variables: {
    api_key: "your_key",
    database_url: "postgres://..."
  },
  env_vars: {
    NODE_ENV: "production"
  }
})
```

## Analytics
```javascript
// Get app analytics
mcp__flow-nexus__app_analytics({
  app_id: "your_app_id",
  timeframe: "30d" // 24h, 7d, 30d, 90d
})

// View installed apps
mcp__flow-nexus__app_installed(
View full source on GitHub →

Other slash commands