app-store
From ruvnet
Browse, publish, and deploy applications
Install
/app-storeFacts
- Repository
- ruvnet/ruflo
- Status
- Actively maintained
- Last commit
- Source file
- .claude/commands/flow-nexus/app-store.md
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
feature-development
★ 229,918Workflow command scaffold for feature-development in everything-claude-code.
affaan-mupdated 14d agoMITdatabase-migration
★ 229,918Workflow command scaffold for database-migration in everything-claude-code.
affaan-mupdated 14d agoMITadd-language-rules
★ 229,918Workflow command scaffold for add-language-rules in everything-claude-code.
affaan-mupdated 14d agoMITcommit-push-pr
★ 137,934Commit, push, and open a PR
anthropicsupdated 13d agodedupe
★ 137,934Find duplicate GitHub issues
anthropicsupdated 13d agotriage-issue
★ 137,934Triage GitHub issues by analyzing and applying labels
anthropicsupdated 13d ago