Agent skill · AI & Agents

cloud-neural

Neural network training and deployment in Flow Nexus cloud. Use for distributed ML training, model inference, and neural network lifecycle management.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill cloud-neural --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 13 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/ai-ml/cloud-neural/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Cloud Neural Network > Train, deploy, and manage neural networks at scale using Flow Nexus cloud-powered distributed computing. ## Quick Start ```javascript // Train a basic neural network mcp__flow-nexus__neural_train({ config: { architecture: { type: "feedforward", layers: [ { type: "dense", units: 128, activation: "relu" }, { type: "dropout", rate: 0.2 }, { type: "dense", units: 10, activation: "softmax" } ] }, training: { epochs: 100, batch_size: 32, learning_rate: 0.001 } }, tier: "small" }) // Run inference mcp__flow-nexus__neural_predict({ model_id: "trained_model_id", input: [[0.5, 0.3, 0.2]] }) ``` ## When to Use - Training neural networks for classification, regression, or generation tasks - Deploying distributed training across multiple cloud sandboxes - Running model inference on trained models - Managing model lifecycle from training to production deployment - Implementing federated learning or ensemble methods - Fine-tuning pre-trained models for specific domains ## Prerequisites - Flow Nexus account with active session - MCP server `flow-nexus` configured - Sufficient rUv credits for training tier selected ## Core Concepts ### Neural Architectures | Type | Use Case

What's inside
Steps it walks through
  1. Quick Start
  2. When to Use
  3. Prerequisites
  4. Core Concepts
  5. Neural Architectures
  6. Training Tiers
  7. Distributed Consensus Protocols
  8. MCP Tools Reference
  9. Single-Node Training
  10. Distributed Cluster Training
  11. Inference
  12. Template Management
  13. Model Management
  14. Usage Examples
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the cloud-neural skill do?

Neural network training and deployment in Flow Nexus cloud. Use for distributed ML training, model inference, and neural network lifecycle management.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill cloud-neural --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going