Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

cloud-neural云神经

Agent Skill

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

总安装

528

周安装

22

GitHub Stars

公开资料未说明

下载量

176
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

云神经技能用于发现并集成其他 AI 代理可用的扩展功能模块。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 中动态加载新能力的场景。
  • 通过元数据匹配实现技能推荐与快速部署。
  • 安装命令:npx skills add vamseeachanta/workspace-hub --skill "cloud-neural"。
  • 依赖上游仓库更新,建议定期检查兼容性以避免运行时错误。

SKILL.md

Cloud Neural Network

Train, deploy, and manage neural networks at scale using Flow Nexus cloud-powered distributed computing.

Quick Start

// 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

TypeUse Case
FeedforwardClassification, regression
LSTM/RNNTime series, NLP sequences
TransformerAdvanced NLP, multimodal
CNNComputer vision, image processing
GANData generation, augmentation
AutoencoderDimensionality reduction, anomaly detection

Training Tiers

TierResourcesCost
nanoMinimal, quick testsLow
miniSmall modelsLow
smallStandard trainingMedium
mediumLarge modelsHigh
largeProduction scaleHighest

Distributed Consensus Protocols

  • proof-of-learning: Training contribution verification
  • byzantine: Fault-tolerant distributed consensus
  • raft: Leader-based coordination
  • gossip: Decentralized information propagation

MCP Tools Reference

Single-Node Training

mcp__flow-nexus__neural_train({
  config: {
    architecture: {
      type: "feedforward",  // lstm, gan, autoencoder, transformer
      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,
      optimizer: "adam"
    },
    divergent: {
      enabled: false,
      pattern: "lateral",  // quantum, chaotic, associative, evolutionary
      factor: 0.1
    }
  },
  tier: "small",            // nano, mini, small, medium, large
  user_id: "user_id"
})

Distributed Cluster Training

// Initialize distributed cluster
mcp__flow-nexus__neural_cluster_init({
  name: "training-cluster",
  architecture: "transformer",  // transformer, cnn, rnn, gnn, hybrid
  topology: "mesh",             // mesh, ring, star, hierarchical
  consensus: "proof-of-learning",
  daaEnabled: true,
  wasmOptimization: true
})

// Deploy worker nodes
mcp__flow-nexus__neural_node_deploy({
  cluster_id: "cluster_id",
  node_type: "worker",    // worker, parameter_server, aggregator, validator
  model: "base",          // base, large, xl, custom
  capabilities: ["training", "inference"],
  autonomy: 0.8
})

// Connect nodes based on topology
mcp__flow-nexus__neural_cluster_connect({
  cluster_id: "cluster_id",
  topology: "mesh"
})

// Start distributed training
mcp__flow-nexus__neural_train_distributed({
  cluster_id: "cluster_id",
  dataset: "dataset_id",
  epochs: 10,
  batch_size: 32,
  learning_rate: 0.001,
  optimizer: "adam",
  federated: false
})

// Check cluster status
mcp__flow-nexus__neural_cluster_status({ cluster_id: "cluster_id" })

// Terminate when done
mcp__flow-nexus__neural_cluster_terminate({ cluster_id: "cluster_id" })

Inference

// Single-node inference
mcp__flow-nexus__neural_predict({
  model_id: "model_id",
  input: [[0.5, 0.3, 0.2]],
  user_id: "user_id"
})

// Distributed inference
mcp__flow-nexus__neural_predict_distributed({
  cluster_id: "cluster_id",
  input_data: "[0.5, 0.3, 0.2]",
  aggregation: "mean"  // mean, majority, weighted, ensemble
})

Template Management

// List templates
mcp__flow-nexus__neural_list_templates({
  category: "classification",  // timeseries, regression, nlp, vision, anomaly, generative, reinforcement, custom
  tier: "free",               // free, paid
  search: "sentiment",
  limit: 20
})

// Deploy template
mcp__flow-nexus__neural_deploy_template({
  template_id: "template_id",
  custom_config: { epochs: 50 },
  user_id: "user_id"
})

// Publish your model as template
mcp__flow-nexus__neural_publish_template({
  model_id: "model_id",
  name: "Sentiment Analyzer",
  description: "LSTM-based sentiment analysis model",
  category: "nlp",
  price: 0,
  user_id: "user_id"
})

// Rate a template
mcp__flow-nexus__neural_rate_template({
  template_id: "template_id",
  rating: 5,
  review: "Excellent model, fast and accurate",
  user_id: "user_id"
})

Model Management

// List user models
mcp__flow-nexus__neural_list_models({
  user_id: "user_id",
  include_public: false
})

// Check training status
mcp__flow-nexus__neural_training_status({ job_id: "job_id" })

// Create validation workflow
mcp__flow-nexus__neural_validation_workflow({
  model_id: "model_id",
  validation_type: "comprehensive",  // performance, accuracy, robustness, comprehensive
  user_id: "user_id"
})

// Run performance benchmarks
mcp__flow-nexus__neural_performance_benchmark({
  model_id: "model_id",
  benchmark_type: "comprehensive"  // inference, throughput, memory, comprehensive
})

Usage Examples

Example 1: Classification Model Training

// Train a feedforward classifier
const trainingJob = await mcp__flow-nexus__neural_train({
  config: {
    architecture: {
      type: "feedforward",
      layers: [
        { type: "dense", units: 256, activation: "relu" },
        { type: "batch_norm" },
        { type: "dropout", rate: 0.3 },
        { type: "dense", units: 128, activation: "relu" },
        { type: "dropout", rate: 0.2 },
        { type: "dense", units: 10, activation: "softmax" }
      ]
    },
    training: {
      epochs: 100,
      batch_size: 64,
      learning_rate: 0.001,
      optimizer: "adam"
    }
  },
  tier: "small"
});

// Monitor training
const status = await mcp__flow-nexus__neural_training_status({
  job_id: trainingJob.job_id
});

console.log(`Epoch: ${status.current_epoch}, Loss: ${status.loss}`);

// Run inference on trained model
const prediction = await mcp__flow-nexus__neural_predict({
  model_id: trainingJob.model_id,
  input: [[0.1, 0.2, 0.3, 0.4, 0.5]]
});

Example 2: Distributed Transformer Training

// Initialize distributed cluster
const cluster = await mcp__flow-nexus__neural_cluster_init({
  name: "transformer-cluster",
  architecture: "transformer",
  topology: "mesh",
  consensus: "proof-of-learning",
  daaEnabled: true,
  wasmOptimization: true
});

// Deploy 4 worker nodes
for (let i = 0; i < 4; i++) {
  await mcp__flow-nexus__neural_node_deploy({
    cluster_id: cluster.cluster_id,
    node_type: "worker",
    model: "large",
    capabilities: ["training", "inference"]
  });
}

// Deploy parameter server
await mcp__flow-nexus__neural_node_deploy({
  cluster_id: cluster.cluster_id,
  node_type: "parameter_server",
  model: "base"
});

// Connect nodes
await mcp__flow-nexus__neural_cluster_connect({
  cluster_id: cluster.cluster_id
});

// Start distributed training
await mcp__flow-nexus__neural_train_distributed({
  cluster_id: cluster.cluster_id,
  dataset: "large_nlp_dataset",
  epochs: 50,
  batch_size: 128,
  learning_rate: 0.0001,
  optimizer: "adam"
});

// Monitor and validate
const clusterStatus = await mcp__flow-nexus__neural_cluster_status({
  cluster_id: cluster.cluster_id
});

// Cleanup
await mcp__flow-nexus__neural_cluster_terminate({
  cluster_id: cluster.cluster_id
});

Example 3: Using Pre-built Templates

// Find NLP templates
const templates = await mcp__flow-nexus__neural_list_templates({
  category: "nlp",
  tier: "free",
  search: "sentiment"
});

// Deploy the best-rated template
const deployment = await mcp__flow-nexus__neural_deploy_template({
  template_id: templates.templates[0].id,
  custom_config: {
    epochs: 25,
    learning_rate: 0.0005
  }
});

// Validate model performance
await mcp__flow-nexus__neural_validation_workflow({
  model_id: deployment.model_id,
  validation_type: "comprehensive"
});

// Benchmark performance
const benchmark = await mcp__flow-nexus__neural_performance_benchmark({
  model_id: deployment.model_id,
  benchmark_type: "comprehensive"
});

console.log(`Inference latency: ${benchmark.inference_latency_ms}ms`);

Execution Checklist

  • Design neural architecture for task requirements
  • Select appropriate training tier based on model size
  • Configure training hyperparameters
  • Initialize training (single or distributed)
  • Monitor training progress and metrics
  • Validate model performance
  • Run benchmarks for production readiness
  • Deploy for inference or publish as template
  • Cleanup cluster resources when complete

Best Practices

  1. Start Small: Begin with nano or mini tier for testing, scale up for production
  2. Proper Validation: Always run validation workflow before production deployment
  3. Hyperparameter Tuning: Use grid search or Bayesian optimization for best results
  4. Distributed Training: Use for large models; single-node for smaller experiments
  5. Checkpoint Frequently: Enable checkpointing for long training runs
  6. Monitor Drift: Implement drift detection for production models

Error Handling

ErrorCauseSolution
training_failedInvalid architecture configVerify layer compatibility and types
cluster_init_failedInvalid topology or architectureCheck supported combinations
insufficient_creditsTraining tier exceeds balanceReduce tier or add credits
model_not_foundInvalid model_idUse neural_list_models to verify
node_deploy_failedCluster capacity reachedTerminate unused nodes

Metrics & Success Criteria

  • Training Convergence: Loss decreasing over epochs
  • Validation Accuracy: Target >90% for classification
  • Inference Latency: <100ms for production
  • Memory Efficiency: <80% resource utilization
  • Model Size: Appropriate for deployment target

Integration Points

With Swarms

// Deploy neural agent in swarm
await mcp__flow-nexus__agent_spawn({
  type: "analyst",
  name: "ML Analyst",
  capabilities: ["neural_training", "model_evaluation"]
});

With Workflows

// ML pipeline workflow
await mcp__flow-nexus__workflow_create({
  name: "ML Training Pipeline",
  steps: [
    { id: "preprocess", action: "data_prep" },
    { id: "train", action: "neural_train", depends: ["preprocess"] },
    { id: "validate", action: "neural_validate", depends: ["train"] },
    { id: "deploy", action: "neural_deploy", depends: ["validate"] }
  ]
});

Related Skills

References

Version History

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

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude Code

29.9%
按下载量换算53

windsurf

22%
按下载量换算39

trae

21.21%
按下载量换算37

OpenCode

13.06%
按下载量换算23

Cursor

8.03%
按下载量换算14

Codex

3.7%
按下载量换算7

安全审计

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

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills