This directory contains examples demonstrating various features and capabilities of the Claude Flow system, organized by category.
examples/
├── 01-configurations/ # System and workflow configuration examples
├── 02-workflows/ # Multi-agent workflow definitions
├── 03-demos/ # Live demonstration scripts
├── 04-testing/ # Testing and validation examples
├── 05-swarm-apps/ # Applications created by the swarm system
├── 06-tutorials/ # Step-by-step guides and tutorials
└── README.md # This file
- New to Claude Flow? Start with
01-configurations/basic-config.json - Want to see it in action? Run
03-demos/quick-demo.sh - Building an app? Check
05-swarm-apps/for complete examples - Testing your setup? Use
04-testing/test-swarm-cli.sh
System and workflow configuration files showing how to set up Claude Flow for different use cases.
Multi-agent workflow definitions demonstrating parallel execution, task dependencies, and agent coordination.
Shell scripts that demonstrate the swarm system creating various types of applications.
Scripts for testing Claude Flow features, SPARC modes, and system functionality.
Complete applications created by the swarm system, including source code, tests, and documentation.
Step-by-step guides for common tasks and advanced features.
Most shell script examples can be run directly:
cd examples/03-demos
./quick-demo.shFor configuration examples, use them with Claude Flow commands:
cd examples
../claude-flow swarm create "Your task description" --config ./01-configurations/basic/simple-config.jsonOr from the project root:
./claude-flow swarm create "Your task description" --config ./examples/01-configurations/basic/simple-config.jsonWhen adding new examples:
- Place them in the appropriate category folder
- Include clear comments and documentation
- Test the example thoroughly
- Update this README if adding new categories