mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-23 04:27:11 +00:00
Analysis module: - Add complexity analysis (cyclomatic, cognitive, Halstead metrics) - Add security scanning (SQL injection, XSS, command injection detection) - Add pattern detection (code smells, design patterns) Workers module: - Add native worker implementation for parallel processing - Add benchmark worker for performance testing - Add worker type definitions Core improvements: - Add adaptive embedder with dynamic model selection - Add ONNX optimized embeddings with caching - Update intelligence engine with enhanced learning - Update parallel workers with better concurrency Dashboard enhancements: - Add relay client service for Edge-Net communication - Update network stats and specialized networks components - Update network store with improved state management - Update type definitions Configuration: - Add custom workers skill - Add agentic-flow and ruvector fast scripts - Update settings and gitignore 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
592 B
YAML
27 lines
592 B
YAML
# Custom Workers Configuration
|
|
# Save as workers.yaml or .agentic-flow/workers.yaml
|
|
|
|
version: "1.0"
|
|
workers:
|
|
- name: my-scanner
|
|
description: Custom code scanner
|
|
triggers:
|
|
- scan-my
|
|
priority: medium
|
|
timeout: 120000
|
|
phases:
|
|
- type: file-discovery
|
|
- type: pattern-extraction
|
|
- type: security-analysis
|
|
- type: summarization
|
|
capabilities:
|
|
onnxEmbeddings: true
|
|
vectorDb: true
|
|
output:
|
|
format: detailed
|
|
includeSamples: true
|
|
settings:
|
|
defaultCapabilities:
|
|
progressEvents: true
|
|
maxConcurrent: 3
|
|
debug: false
|