Loading...
Loading...
Agent skill for app-store - invoke with $agent-app-store
npx skill4agent add ruvnet/claude-flow agent-app-store// Browse Apps
mcp__flow-nexus__app_search({
search: "authentication",
category: "backend",
featured: true,
limit: 20
})
// Publish App
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"]
})
// Deploy Template
mcp__flow-nexus__template_deploy({
template_name: "express-api-starter",
deployment_name: "my-api",
variables: {
api_key: "key",
database_url: "postgres://..."
}
})
// Analytics
mcp__flow-nexus__app_analytics({
app_id: "app_id",
timeframe: "30d"
})