Install
openclaw skills install evoagentx-workflowBridge EvoAgentX (1000+ star open-source framework) with OpenClaw. Enables self-evolving agentic workflows - workflows that automatically improve over time t...
openclaw skills install evoagentx-workflowIntegrates the EvoAgentX framework with OpenClaw for self-evolving agentic workflows.
Use this skill when:
This skill provides a command-line interface for EvoAgentX operations:
# Check if EvoAgentX is installed
python3 scripts/evoagentx_cli.py status
# Get installation instructions
python3 scripts/evoagentx_cli.py install
# Show usage examples
python3 scripts/evoagentx_cli.py examples
# Create a workflow template
python3 scripts/evoagentx_cli.py create-workflow \
--name ResearchWorkflow \
--description "A research automation workflow"
# Check EvoAgentX status
python3 scripts/evoagentx_cli.py check
# Install EvoAgentX framework
pip install evoagentx
# Verify installation
python3 -c "import evoagentx; print(evoagentx.__version__)"
After running create-workflow, edit the generated Python file:
from evoagentx import Agent, Workflow
class MyWorkflow(Workflow):
async def execute(self, context):
# Your workflow logic here
result = await self.run_agents(context)
return result
from evoagentx.evolution import EvolutionEngine
engine = EvolutionEngine()
optimized_workflow = await engine.evolve(
workflow=MyWorkflow(),
iterations=10,
evaluation_criteria={"accuracy": 0.95}
)
Encoded success patterns containing:
# Start with basic research workflow
workflow = ResearchWorkflow()
# Evolve for better results
evolution = await workflow.evolve(
dataset=research_queries,
metric="comprehensiveness"
)
# EvoAgentX automatically selects optimal tools
workflow = AgentWorkflow(
tools=["web_search", "browser", "file_io"],
auto_select=True
)
1.0.0 - Initial release with core EvoAgentX integration