Files
aitbc/.windsurf/skills/archive/openclaw-aitbc.md
aitbc 27993bee72
Some checks failed
API Endpoint Tests / test-api-endpoints (push) Successful in 15s
Blockchain Synchronization Verification / sync-verification (push) Failing after 1s
CLI Tests / test-cli (push) Failing after 5s
Cross-Chain Functionality Tests / test-cross-chain-sync (push) Successful in 3s
Cross-Chain Functionality Tests / test-cross-chain-transactions (push) Successful in 4s
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
Cross-Node Transaction Testing / transaction-test (push) Successful in 12s
Deploy to Testnet / deploy-testnet (push) Successful in 1m12s
Documentation Validation / validate-docs (push) Successful in 11s
Documentation Validation / validate-policies-strict (push) Successful in 6s
Integration Tests / test-service-integration (push) Successful in 2m39s
Multi-Node Blockchain Health Monitoring / health-check (push) Successful in 2s
Multi-Node Stress Testing / stress-test (push) Successful in 2s
Node Failover Simulation / failover-test (push) Successful in 2s
P2P Network Verification / p2p-verification (push) Successful in 2s
Package Tests / Python package - aitbc-agent-sdk (push) Failing after 30s
Package Tests / Python package - aitbc-core (push) Successful in 14s
Package Tests / Python package - aitbc-crypto (push) Successful in 8s
Package Tests / Python package - aitbc-sdk (push) Successful in 9s
Package Tests / JavaScript package - aitbc-sdk-js (push) Successful in 7s
Package Tests / JavaScript package - aitbc-token (push) Successful in 19s
Python Tests / test-python (push) Successful in 14s
Security Scanning / security-scan (push) Failing after 31s
Deploy to Testnet / notify-deployment (push) Successful in 2s
Update documentation to reflect 12 atomic skills and current service ports
2026-05-02 14:38:19 +02:00

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 responses
  • openclaw-session-manager.md — session creation and context management
  • openclaw-coordination-orchestrator.md — multi-agent workflow coordination
  • openclaw-performance-optimizer.md — agent performance tuning and optimization
  • openclaw-error-handler.md — error detection and recovery procedures
  • openclaw-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

  1. Clearer Separation of Concerns

    • OpenClaw: Agent coordination and workflow management
    • AITBC: Blockchain operations and data management
  2. Better Documentation Organization

    • Each skill focuses on its domain expertise
    • Reduced cognitive load when learning
    • Easier maintenance and updates
  3. Improved Reusability

    • OpenClaw skills can be used with any system
    • AITBC skills can be used with any agent framework
    • Modular combination possible
  4. 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 syntaxOpenClaw Agent Management
  • AITBC CLI commandsAITBC Blockchain Operations
  • AI operationsAITBC Blockchain Operations
  • Blockchain coordinationAITBC Blockchain Operations
  • Agent workflowsOpenClaw 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.

Archived Blockchain Companion