5.9 KiB
description, title, version
| description | title | version |
|---|---|---|
| Legacy OpenClaw AITBC integration - see split skills for focused operations | OpenClaw AITBC Integration (Legacy) | 6.0 - DEPRECATED |
OpenClaw AITBC Integration (Legacy - See Split Skills)
⚠️ This skill has been split into focused skills for better organization:
📚 Current Active OpenClaw Skills
This legacy bundle now maps to the current atomic OpenClaw skill files:
openclaw-agent-communicator.md— agent message handling and responsesopenclaw-session-manager.md— session creation and context managementopenclaw-coordination-orchestrator.md— multi-agent workflow coordinationopenclaw-performance-optimizer.md— agent performance tuning and optimizationopenclaw-error-handler.md— error detection and recovery proceduresopenclaw-agent-testing-skill.md— agent communication validation and performance testing
Archived Blockchain Companion
File: aitbc-blockchain.md
Focus: AITBC blockchain operations and integration retained as an archived companion
- Wallet management and transactions
- AI operations and marketplace
- Node coordination and monitoring
- Smart contract messaging
- Cross-node operations
Use for: Blockchain operations, AI jobs, marketplace participation, node management
Migration Guide
From Legacy to Split Skills
Before (Legacy):
# Mixed OpenClaw + AITBC operations
openclaw agent --agent main --message "Check blockchain and process data" --thinking high
cd /opt/aitbc && source venv/bin/activate && ./aitbc-cli chain
After (Split Skills):
OpenClaw Agent Management:
# Pure agent coordination
openclaw agent --agent coordinator --message "Coordinate blockchain monitoring workflow" --thinking high
# Agent workflow orchestration
SESSION_ID="blockchain-monitor-$(date +%s)"
openclaw agent --agent monitor --session-id $SESSION_ID --message "Monitor blockchain health" --thinking medium
AITBC Blockchain Operations:
# Pure blockchain operations
cd /opt/aitbc && source venv/bin/activate
./aitbc-cli chain
./aitbc-cli ai-submit --wallet genesis-ops --type inference --prompt "Generate image" --payment 100
Why the Split?
Benefits of Focused Skills
-
Clearer Separation of Concerns
- OpenClaw: Agent coordination and workflow management
- AITBC: Blockchain operations and data management
-
Better Documentation Organization
- Each skill focuses on its domain expertise
- Reduced cognitive load when learning
- Easier maintenance and updates
-
Improved Reusability
- OpenClaw skills can be used with any system
- AITBC skills can be used with any agent framework
- Modular combination possible
-
Enhanced Searchability
- Find relevant commands faster
- Domain-specific troubleshooting
- Focused best practices
When to Use Each Skill
Use OpenClaw Agent Management Skill for:
- Multi-agent workflow coordination
- Agent communication patterns
- Session management and context
- Agent performance optimization
- Error handling and debugging
Use AITBC Blockchain Operations Skill for:
- Wallet and transaction management
- AI job submission and monitoring
- Marketplace operations
- Node health and synchronization
- Smart contract messaging
Combine Both Skills for:
- Complete OpenClaw + AITBC integration
- Agent-driven blockchain operations
- Automated blockchain workflows
- Cross-node agent coordination
Legacy Content (Deprecated)
The following content from the original combined skill is now deprecated and moved to the appropriate split skills:
Agent command syntax→ OpenClaw Agent ManagementAITBC CLI commands→ AITBC Blockchain OperationsAI operations→ AITBC Blockchain OperationsBlockchain coordination→ AITBC Blockchain OperationsAgent workflows→ OpenClaw Agent Management
Migration Checklist
✅ Completed
- Created OpenClaw Agent Management skill
- Created AITBC Blockchain Operations skill
- Updated all command references
- Added migration guide
🔄 In Progress
- Update workflow scripts to use split skills
- Update documentation references
- Test split skills independently
📋 Next Steps
- Remove legacy content after validation
- Update integration examples
- Create combined usage examples
Quick Reference
OpenClaw Agent Management
# Agent coordination
openclaw agent --agent coordinator --message "Coordinate workflow" --thinking high
# Session-based workflow
SESSION_ID="task-$(date +%s)"
openclaw agent --agent worker --session-id $SESSION_ID --message "Execute task" --thinking medium
AITBC Blockchain Operations
# Blockchain status
cd /opt/aitbc && source venv/bin/activate
./aitbc-cli chain
# AI operations
./aitbc-cli ai-submit --wallet wallet --type inference --prompt "Generate image" --payment 100
Recommendation: Use the new split skills for all new development. This legacy skill is maintained for backward compatibility but will be deprecated in future versions.
Quick Links to Current Active Skills
- OpenClaw Agent Communicator: ../openclaw-agent-communicator.md
- OpenClaw Session Manager: ../openclaw-session-manager.md
- OpenClaw Coordination Orchestrator: ../openclaw-coordination-orchestrator.md
- OpenClaw Performance Optimizer: ../openclaw-performance-optimizer.md
- OpenClaw Error Handler: ../openclaw-error-handler.md
- OpenClaw Agent Testing Skill: ../openclaw-agent-testing-skill.md
Archived Blockchain Companion
- AITBC Blockchain Operations: aitbc-blockchain.md