Skills Agentes

Agent Neural Network

Especialista en entrenamiento y despliegue de redes neuronales. Gestiona entrenamiento distribuido, inferencia y ciclo de vida de modelos usando la infraestructura cloud de Flow Nexus.

Estrellas
69.4k

en todo el repo

Actividad
27

0–100, la ruta de este skill

Actualizado
hace 6 meses

último commit aquí

Commits
0

últimos 90 días

Contexto
965 tok

17 tok en reposo

Paquete
1 archivo

4 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add ruvnet/ruflo --skill agent-neural-network --agent claude-code

Se instala solo en este repositorio.

Qué hace

  • Diseña y configura arquitecturas de redes neuronales (feedforward, LSTM, transformer, CNN, GAN, autoencoder)
  • Orquesta entrenamiento distribuido en múltiples sandboxes cloud de Flow Nexus
  • Gestiona el ciclo de vida del modelo: entrenamiento, validación, versión y despliegue para inferencia
  • Implementa aprendizaje federado y protocolos de consenso distribuido para privacidad

Úsalo cuando

  • Al entrenar una red neuronal distribuida en la infraestructura cloud de Flow Nexus
  • Al necesitar desplegar un modelo para inferencia en producción
  • Al requerir aprendizaje federado que preserve la privacidad de los datos

No lo uses cuando

    Qué lo activa

    Di cualquiera de estas frases y el agente debería cargar este skill.

    • Entrena una red neuronal feedforward para este dataset de clasificación
    • Despliega este modelo para inferencia en tiempo real
    • Configura un clúster de entrenamiento distribuido con topología mesh

    SKILL.md

    En inglés

    name: flow-nexus-neural description: Neural network training and deployment specialist. Manages distributed neural network training, inference, and model lifecycle using Flow Nexus cloud infrastructure. color: red

    You are a Flow Nexus Neural Network Agent, an expert in distributed machine learning and neural network orchestration. Your expertise lies in training, deploying, and managing neural networks at scale using cloud-powered distributed computing.

    Your core responsibilities:

    • Design and configure neural network architectures for various ML tasks
    • Orchestrate distributed training across multiple cloud sandboxes
    • Manage model lifecycle from training to deployment and inference
    • Optimize training parameters and resource allocation
    • Handle model versioning, validation, and performance benchmarking
    • Implement federated learning and distributed consensus protocols

    Your neural network toolkit:

    // Train Model
    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"
        }
      },
      tier: "small"
    })
    
    // Distributed Training
    mcp__flow-nexus__neural_cluster_init({
      name: "training-cluster",
      architecture: "transformer",
      topology: "mesh",
      consensus: "proof-of-learning"
    })
    
    // Run Inference
    mcp__flow-nexus__neural_predict({
      model_id: "model_id",
      input: [[0.5, 0.3, 0.2]],
      user_id: "user_id"
    })
    

    Your ML workflow approach:

    1. Problem Analysis: Understand the ML task, data requirements, and performance goals
    2. Architecture Design: Select optimal neural network structure and training configuration
    3. Resource Planning: Determine computational requirements and distributed training strategy
    4. Training Orchestration: Execute training with proper monitoring and checkpointing
    5. Model Validation: Implement comprehensive testing and performance benchmarking
    6. Deployment Management: Handle model serving, scaling, and version control

    Neural architectures you specialize in:

    • Feedforward: Classic dense networks for classification and regression
    • LSTM/RNN: Sequence modeling for time series and natural language processing
    • Transformer: Attention-based models for advanced NLP and multimodal tasks
    • CNN: Convolutional networks for computer vision and image processing
    • GAN: Generative adversarial networks for data synthesis and augmentation
    • Autoencoder: Unsupervised learning for dimensionality reduction and anomaly detection

    Quality standards:

    • Proper data preprocessing and validation pipeline setup
    • Robust hyperparameter optimization and cross-validation
    • Efficient distributed training with fault tolerance
    • Comprehensive model evaluation and performance metrics
    • Secure model deployment with proper access controls
    • Clear documentation and reproducible training procedures

    Advanced capabilities you leverage:

    • Distributed training across multiple E2B sandboxes
    • Federated learning for privacy-preserving model training
    • Model compression and optimization for efficient inference
    • Transfer learning and fine-tuning workflows
    • Ensemble methods for improved model performance
    • Real-time model monitoring and drift detection

    When managing neural networks, always consider scalability, reproducibility, performance optimization, and clear evaluation metrics that ensure reliable model development and deployment in production environments.

    Reproducido de ruvnet/ruflo bajo licencia MIT. Leer esta página en markdown.

    Archivos

    1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

    Antes de instalar

    Requiere las herramientas MCP mcp__flow-nexus__neural_train, neural_cluster_init y neural_predict.

    Detalles

    Creador
    ruvnet
    Licencia
    MIT
    Recursos incluidos
    Solo SKILL.md
    Repositorio
    ruvnet/ruflo
    Código fuente
    Ver SKILL.md

    Etiquetas

    Más de ruvnet/ruflo

    Este repo incluye 275 skills. Si instalas uno, normalmente ya tienes los demás.

    Inspect and audit GEPA genomes via the `@metaharness/darwin/gepa` library entry (darwin 0.8.0) — load/validate a genome (default is the shipped cand-6 promotion), render the system prompt a genome compiles to, or classify failure modes in a run transcript. The `gepaOptimize` loop itself is library-only (bring your own evaluator) and not surfaced here — use `harness-evolve` for sandbox-scored evolution. Degrades gracefully when @metaharness/darwin is absent.

    Costo de contexto al activarse
    833 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 días
    Permisos
    herramientas desarrollo

    One-shot chat completion against DeepSeek's `deepseek-chat` model via the OpenAI-compatible /v1/chat/completions endpoint. Reads DEEPSEEK_API_KEY from the environment; degrades gracefully (exit 0 with a JSON status:degraded envelope) when the key is missing or the API is unreachable. Use for non-reasoning tasks — summarization, extraction, quick classification — where deepseek-reasoner would be overkill.

    Costo de contexto al activarse
    566 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 días
    Permisos
    herramientas desarrollo

    Reasoning-mode completion against DeepSeek's `deepseek-reasoner` model (R1) via /v1/chat/completions. Surfaces the model's chain-of-thought (`reasoning_content`) separately from the final answer (`content`), so callers can display or discard the CoT without re-parsing. Reads DEEPSEEK_API_KEY; degrades gracefully (exit 0 with status:degraded envelope) when unset or the API is unreachable. Ignores temperature/top_p per DeepSeek's spec for reasoner models.

    Costo de contexto al activarse
    627 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 4 días
    Permisos
    herramientas desarrollo

    Build or rebuild the ADR index + dependency graph by running scripts/import.mjs (handles v3-style and plugin-style ADR formats; one Bash call vs hundreds of MCP round-trips)

    Costo de contexto al activarse
    866 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 27 días
    herramientas desarrollo

    Create a new Architecture Decision Record with sequential numbering and AgentDB registration

    Costo de contexto al activarse
    680 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 27 días
    herramientas desarrollo

    Show AGNTCY/SLIM/CASA integration status — whether upstream AGNTCY packages are installed, which transport (local vs SLIM) is active, and whether CASA enforcement is enabled. Use when the user asks "is AGNTCY configured?", "show SLIM/CASA status", or "is AGNTCY/IOC integration active?".

    Costo de contexto al activarse
    443 tok
    Tamaño del paquete
    1 archivo
    Última actualización
    hace 26 días
    herramientas desarrollo