Install
openclaw skills install agent-architecture-patternsAI Agent architecture patterns library with 10 patterns for single and multi-agent systems
openclaw skills install agent-architecture-patternsThis skill provides a comprehensive library of AI Agent architecture patterns to help developers:
Ask questions like:
Browse patterns/ directory for detailed pattern docs.
Run example code from examples/ directory.
const agent = new ReActAgent({
tools: [search, calculate],
maxSteps: 10
});
const answer = await agent.execute("What's the temperature in Beijing today?");
const workers = [
new WorkerAgent('worker-1', ['javascript'], { codeReview: true }),
new WorkerAgent('worker-2', ['python'], { dataAnalysis: true })
];
const manager = new ManagerAgent(workers);
const result = await manager.coordinate("Review this codebase");
clawhub install agent-architecture-patterns
npm test
# Runs 30 test cases for ReAct and Manager-Worker implementations
MIT
AI-Agent