Rename openclaw to hermes across documentation and workflows
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Has been cancelled
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
Documentation Validation / validate-policies-strict (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
CLI Tests / test-cli (push) Has been cancelled
Blockchain Synchronization Verification / sync-verification (push) Successful in 11s
Contract Performance Benchmarks / benchmark-gas-usage (push) Successful in 1m36s
Contract Performance Benchmarks / benchmark-execution-time (push) Successful in 1m24s
Contract Performance Benchmarks / benchmark-throughput (push) Successful in 1m25s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Successful in 2s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 5s
Cross-Chain Functionality Tests / test-cross-chain-bridge (push) Has been skipped
Cross-Chain Functionality Tests / test-multi-chain-consensus (push) Successful in 3s
Cross-Chain Functionality Tests / aggregate-results (push) Has been skipped
Multi-Chain Island Architecture Tests / test-multi-chain-island (push) Successful in 2s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 3s
P2P Network Verification / p2p-verification (push) Successful in 2s
Smart Contract Tests / test-solidity (map[name:aitbc-contracts path:contracts]) (push) Failing after 1m28s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 21s
Smart Contract Tests / test-foundry (push) Failing after 20s
Smart Contract Tests / lint-solidity (push) Successful in 30s
Smart Contract Tests / deploy-contracts (push) Successful in 1m40s
Systemd Sync / sync-systemd (push) Successful in 26s
Contract Performance Benchmarks / compare-benchmarks (push) Successful in 4s

- Update workflow paths from docs/openclaw to docs/hermes
- Rename skill prefixes from openclaw-* to hermes-*
- Update agent skill references in refactoring and analysis docs
- Rename OPENCLAW_AITBC_MASTERY_PLAN.md to reflect hermes branding
- Update CLI examples and command references throughout documentation
This commit is contained in:
aitbc
2026-05-07 11:42:06 +02:00
parent 151aae1916
commit 852f2e5a8a
307 changed files with 3333 additions and 2837 deletions

View File

@@ -46,7 +46,7 @@ docs/11_agents/
├── project-structure.md # Architecture overview
├── advanced-ai-agents.md # Multi-modal and adaptive agents
├── collaborative-agents.md # Agent networks and learning
├── openclaw-integration.md # Edge deployment guide
├── hermes-integration.md # Edge deployment guide
├── development/
│ └── contributing.md # GitHub contribution workflow
└── swarm/

View File

@@ -389,7 +389,7 @@ aitbc optimize reset agent_123 --preserve-learning
## Next Steps
- [Agent Collaboration](collaborative-agents.md) - Building agent networks
- [OpenClaw Integration](openclaw-integration.md) - Edge deployment
- [Hermes Integration](hermes-integration.md) - Edge deployment
- [Swarm Intelligence](swarm.md) - Collective optimization
---

View File

@@ -495,7 +495,7 @@ aitbc agent consensus configure research_team \
## Next Steps
- [Advanced AI Agents](advanced-ai-agents.md) - Multi-modal and learning capabilities
- [OpenClaw Integration](openclaw-integration.md) - Edge deployment options
- [hermes Integration](hermes-integration.md) - Edge deployment options
- [Swarm Intelligence](swarm.md) - Collective optimization
---

View File

@@ -67,7 +67,7 @@ required_files=(
"compute-provider.md"
"advanced-ai-agents.md"
"collaborative-agents.md"
"openclaw-integration.md"
"hermes-integration.md"
)
for file in "${required_files[@]}"; do
@@ -222,7 +222,7 @@ test_urls = [
"/agent-api-spec.json",
"/advanced-ai-agents.md",
"/collaborative-agents.md",
"/openclaw-integration.md"
"/hermes-integration.md"
]
for url_path in test_urls:

View File

@@ -1,17 +1,17 @@
# OpenClaw Edge Integration
# Hermes Edge Integration
This guide covers deploying and managing AITBC agents on the OpenClaw edge network, enabling distributed AI processing with low latency and high performance.
This guide covers deploying and managing AITBC agents on the Hermes edge network, enabling distributed AI processing with low latency and high performance.
## Overview
OpenClaw provides a distributed edge computing platform that allows AITBC agents to deploy closer to data sources and users, reducing latency and improving performance for real-time AI applications.
Hermes provides a distributed edge computing platform that allows AITBC agents to deploy closer to data sources and users, reducing latency and improving performance for real-time AI applications.
## OpenClaw Architecture
## Hermes Architecture
### Edge Network Topology
```
OpenClaw Edge Network
Hermes Edge Network
├── Core Nodes (Central Coordination)
├── Edge Nodes (Distributed Processing)
├── Micro-Edges (Local Processing)
@@ -22,13 +22,13 @@ OpenClaw Edge Network
```bash
# Centralized deployment
OpenClaw Core → Agent Coordination → Edge Processing
Hermes Core → Agent Coordination → Edge Processing
# Distributed deployment
OpenClaw Edge → Local Agents → Direct Processing
Hermes Edge → Local Agents → Direct Processing
# Hybrid deployment
OpenClaw Core + Edge → Coordinated Agents → Optimized Processing
Hermes Core + Edge → Coordinated Agents → Optimized Processing
```
## Agent Deployment
@@ -36,15 +36,15 @@ OpenClaw Core + Edge → Coordinated Agents → Optimized Processing
### Basic Edge Deployment
```bash
# Deploy agent to OpenClaw edge
aitbc openclaw deploy agent_123 \
# Deploy agent to Hermes edge
aitbc hermes deploy agent_123 \
--region us-west \
--instances 3 \
--auto-scale \
--edge-optimization true
# Deploy to specific edge locations
aitbc openclaw deploy agent_123 \
aitbc hermes deploy agent_123 \
--locations "us-west,eu-central,asia-pacific" \
--strategy latency \
--redundancy 2
@@ -87,13 +87,13 @@ aitbc openclaw deploy agent_123 \
```bash
# Deploy to micro-edge locations
aitbc openclaw micro-deploy agent_123 \
aitbc hermes micro-deploy agent_123 \
--locations "retail_stores,manufacturing_facilities" \
--device-types edge_gateways,iot_hubs \
--offline-capability true
# Configure offline processing
aitbc openclaw offline-enable agent_123 \
aitbc hermes offline-enable agent_123 \
--cache-size 5GB \
--sync-frequency hourly \
--fallback-local true
@@ -105,13 +105,13 @@ aitbc openclaw offline-enable agent_123 \
```bash
# Optimize for low latency
aitbc openclaw optimize agent_123 \
aitbc hermes optimize agent_123 \
--objective latency \
--target "<30ms" \
--regions user_proximity
# Configure edge routing
aitbc openclaw routing agent_123 \
aitbc hermes routing agent_123 \
--strategy nearest_edge \
--failover nearest_available \
--health-check 10s
@@ -121,13 +121,13 @@ aitbc openclaw routing agent_123 \
```bash
# Optimize bandwidth usage
aitbc openclaw optimize-bandwidth agent_123 \
aitbc hermes optimize-bandwidth agent_123 \
--compression true \
--batch-processing true \
--delta-updates true
# Configure data transfer
aitbc openclaw transfer agent_123 \
aitbc hermes transfer agent_123 \
--protocol http/2 \
--compression lz4 \
--chunk-size 1MB
@@ -137,13 +137,13 @@ aitbc openclaw transfer agent_123 \
```bash
# Optimize compute resources
aitbc openclaw compute-optimize agent_123 \
aitbc hermes compute-optimize agent_123 \
--gpu-acceleration true \
--memory-pool shared \
--processor-affinity true
# Configure resource allocation
aitbc openclaw resources agent_123 \
aitbc hermes resources agent_123 \
--gpu-memory 8GB \
--cpu-cores 4 \
--memory 16GB
@@ -155,13 +155,13 @@ aitbc openclaw resources agent_123 \
```bash
# Configure intelligent edge routing
aitbc openclaw routing agent_123 \
aitbc hermes routing agent_123 \
--strategy intelligent \
--factors latency,load,cost \
--weights 0.5,0.3,0.2
# Set up routing rules
aitbc openclaw routing-rules agent_123 \
aitbc hermes routing-rules agent_123 \
--rule "high_priority:nearest_edge" \
--rule "batch_processing:cost_optimized" \
--rule "real_time:latency_optimized"
@@ -171,13 +171,13 @@ aitbc openclaw routing-rules agent_123 \
```bash
# Configure geographic routing
aitbc openclaw geo-routing agent_123 \
aitbc hermes geo-routing agent_123 \
--user-location-based true \
--radius_threshold 500km \
--fallback nearest_available
# Update routing based on user location
aitbc openclaw update-routing agent_123 \
aitbc hermes update-routing agent_123 \
--user-location "lat:37.7749,lon:-122.4194" \
--optimal-region us-west
```
@@ -186,7 +186,7 @@ aitbc openclaw update-routing agent_123 \
```bash
# Configure load-based routing
aitbc openclaw load-routing agent_123 \
aitbc hermes load-routing agent_123 \
--strategy least_loaded \
--thresholds cpu<70%,memory<80% \
--predictive_scaling true
@@ -198,13 +198,13 @@ aitbc openclaw load-routing agent_123 \
```bash
# Connect IoT devices
aitbc openclaw iot-connect agent_123 \
aitbc hermes iot-connect agent_123 \
--devices sensor_array_1,camera_cluster_2 \
--protocol mqtt \
--data-format json
# Process IoT data at edge
aitbc openclaw iot-process agent_123 \
aitbc hermes iot-process agent_123 \
--device-group sensors \
--processing-location edge \
--real-time true
@@ -214,13 +214,13 @@ aitbc openclaw iot-process agent_123 \
```bash
# Configure 5G edge deployment
aitbc openclaw 5g-deploy agent_123 \
aitbc hermes 5g-deploy agent_123 \
--network_operator verizon \
--edge-computing mec \
--slice_urlllc low_latency
# Optimize for 5G characteristics
aitbc openclaw 5g-optimize agent_123 \
aitbc hermes 5g-optimize agent_123 \
--network-slicing true \
--ultra_low_latency true \
--massive_iot_support true
@@ -230,13 +230,13 @@ aitbc openclaw 5g-optimize agent_123 \
```bash
# Configure cloud-edge hybrid
aitbc openclaw hybrid agent_123 \
aitbc hermes hybrid agent_123 \
--cloud-role coordination \
--edge-role processing \
--sync-frequency realtime
# Set up data synchronization
aitbc openclaw sync agent_123 \
aitbc hermes sync agent_123 \
--direction bidirectional \
--data-types models,results,metrics \
--conflict_resolution latest_wins
@@ -248,13 +248,13 @@ aitbc openclaw sync agent_123 \
```bash
# Monitor edge performance
aitbc openclaw monitor agent_123 \
aitbc hermes monitor agent_123 \
--metrics latency,throughput,resource_usage \
--locations all \
--real-time true
# Generate edge performance report
aitbc openclaw report agent_123 \
aitbc hermes report agent_123 \
--type edge_performance \
--period 24h \
--include recommendations
@@ -264,13 +264,13 @@ aitbc openclaw report agent_123 \
```bash
# Monitor edge health
aitbc openclaw health agent_123 \
aitbc hermes health agent_123 \
--check connectivity,performance,security \
--alert-thresholds latency>100ms,cpu>90% \
--notification slack,email
# Auto-healing configuration
aitbc openclaw auto-heal agent_123 \
aitbc hermes auto-heal agent_123 \
--enabled true \
--actions restart,redeploy,failover \
--conditions failure_threshold>3
@@ -280,13 +280,13 @@ aitbc openclaw auto-heal agent_123 \
```bash
# Monitor resource utilization
aitbc openclaw resources agent_123 \
aitbc hermes resources agent_123 \
--metrics gpu_usage,memory_usage,network_io \
--alert-thresholds gpu>90%,memory>85% \
--auto-scale true
# Predictive resource management
aitbc openclaw predict agent_123 \
aitbc hermes predict agent_123 \
--horizon 6h \
--metrics resource_demand,user_load \
--action proactive_scaling
@@ -298,13 +298,13 @@ aitbc openclaw predict agent_123 \
```bash
# Configure edge security
aitbc openclaw security agent_123 \
aitbc hermes security agent_123 \
--encryption end_to_end \
--authentication mutual_tls \
--access_control zero_trust
# Security monitoring
aitbc openclaw security-monitor agent_123 \
aitbc hermes security-monitor agent_123 \
--threat_detection anomaly,intrusion \
--response automatic_isolation \
--compliance gdpr,hipaa
@@ -314,13 +314,13 @@ aitbc openclaw security-monitor agent_123 \
```bash
# Configure data privacy at edge
aitbc openclaw privacy agent_123 \
aitbc hermes privacy agent_123 \
--data-residency local \
--encryption_at_rest true \
--anonymization differential_privacy
# GDPR compliance
aitbc openclaw gdpr agent_123 \
aitbc hermes gdpr agent_123 \
--data-localization eu_residents \
--consent_management explicit \
--right_to_deletion true
@@ -330,13 +330,13 @@ aitbc openclaw gdpr agent_123 \
```bash
# Configure compliance
aitbc openclaw compliance agent_123 \
aitbc hermes compliance agent_123 \
--standards iso27001,soc2,hipaa \
--audit_logging true \
--reporting automated
# Compliance monitoring
aitbc openclaw compliance-monitor agent_123 \
aitbc hermes compliance-monitor agent_123 \
--continuous_monitoring true \
--alert_violations true \
--remediation automated
@@ -354,7 +354,7 @@ aitbc openclow ai-accelerate agent_123 \
--model_quantization true
# Configure model optimization
aitbc openclaw model-optimize agent_123 \
aitbc hermes model-optimize agent_123 \
--target edge_devices \
--optimization pruning,quantization \
--accuracy_threshold 0.95
@@ -364,13 +364,13 @@ aitbc openclaw model-optimize agent_123 \
```bash
# Enable federated learning at edge
aitbc openclaw federated agent_123 \
aitbc hermes federated agent_123 \
--learning_strategy federated \
--edge_participation 10_sites \
--privacy_preserving true
# Coordinate federated training
aitbc openclaw federated-train agent_123 \
aitbc hermes federated-train agent_123 \
--global_rounds 100 \
--local_epochs 5 \
--aggregation_method fedavg
@@ -380,13 +380,13 @@ aitbc openclaw federated-train agent_123 \
```bash
# Configure edge analytics
aitbc openclaw analytics agent_123 \
aitbc hermes analytics agent_123 \
--processing_location edge \
--real_time_analytics true \
--batch_processing nightly
# Stream processing at edge
aitbc openclaw stream agent_123 \
aitbc hermes stream agent_123 \
--source iot_sensors,user_interactions \
--processing window 1s \
--output alerts,insights
@@ -398,13 +398,13 @@ aitbc openclaw stream agent_123 \
```bash
# Optimize edge costs
aitbc openclaw cost-optimize agent_123 \
aitbc hermes cost-optimize agent_123 \
--strategy spot_instances \
--scheduling flexible \
--resource_sharing true
# Cost monitoring
aitbc openclaw cost-monitor agent_123 \
aitbc hermes cost-monitor agent_123 \
--budget 1000 AITBC/month \
--alert_threshold 80% \
--optimization_suggestions true
@@ -414,7 +414,7 @@ aitbc openclaw cost-monitor agent_123 \
```bash
# Improve resource efficiency
aitbc openclaw efficiency agent_123 \
aitbc hermes efficiency agent_123 \
--metrics resource_utilization,cost_per_inference \
--target_improvement 20% \
--optimization_frequency weekly
@@ -427,13 +427,13 @@ aitbc openclaw efficiency agent_123 \
**Connectivity Problems**
```bash
# Diagnose connectivity
aitbc openclaw diagnose agent_123 \
aitbc hermes diagnose agent_123 \
--issue connectivity \
--locations all \
--detailed true
# Repair connectivity
aitbc openclaw repair-connectivity agent_123 \
aitbc hermes repair-connectivity agent_123 \
--locations affected_sites \
--failover backup_sites
```
@@ -441,19 +441,19 @@ aitbc openclaw repair-connectivity agent_123 \
**Performance Degradation**
```bash
# Diagnose performance issues
aitbc openclaw diagnose agent_123 \
aitbc hermes diagnose agent_123 \
--issue performance \
--metrics latency,throughput,errors
# Performance recovery
aitbc openclaw recover agent_123 \
aitbc hermes recover agent_123 \
--action restart,rebalance,upgrade
```
**Resource Exhaustion**
```bash
# Handle resource exhaustion
aitbc openclaw handle-exhaustion agent_123 \
aitbc hermes handle-exhaustion agent_123 \
--resource gpu_memory \
--action scale_up,optimize,compress
```
@@ -481,7 +481,7 @@ aitbc openclaw handle-exhaustion agent_123 \
```bash
# Deploy retail analytics agent
aitbc openclaw deploy retail_analytics \
aitbc hermes deploy retail_analytics \
--locations store_locations \
--edge-processing customer_behavior,inventory_optimization \
--real_time_insights true
@@ -491,7 +491,7 @@ aitbc openclaw deploy retail_analytics \
```bash
# Deploy manufacturing agent
aitbc openclaw deploy manufacturing_ai \
aitbc hermes deploy manufacturing_ai \
--locations factory_sites \
--edge-processing quality_control,predictive_maintenance \
--latency_target "<10ms"
@@ -501,7 +501,7 @@ aitbc openclaw deploy manufacturing_ai \
```bash
# Deploy healthcare agent
aitbc openclaw deploy healthcare_ai \
aitbc hermes deploy healthcare_ai \
--locations hospitals,clinics \
--edge-processing medical_imaging,patient_monitoring \
--compliance hipaa,gdpr
@@ -515,4 +515,4 @@ aitbc openclaw deploy healthcare_ai \
---
**OpenClaw edge integration enables AITBC agents to deploy at the network edge, providing low-latency AI processing and real-time insights for distributed applications.**
**Hermes edge integration enables AITBC agents to deploy at the network edge, providing low-latency AI processing and real-time insights for distributed applications.**