πŸ’‘ Production Examples

Battle-tested demos showcasing Agent OS in real-world scenarios

Each example includes full source code, Docker deployment, and performance benchmarks. Battle-tested in production environments with impressive metrics.

4 Complete Demos
100% Docker Ready
<200ms Response Times

Why These Examples?

Each demo solves a real problem in a regulated industryβ€”with metrics that matter.

🎯

Production-Grade

Not toy demos. These handle real data volumes, real latency requirements, and real compliance needs.

πŸ“Š

Benchmarked

Every example includes performance metrics: latency, throughput, accuracy, and resource usage.

🐳

One-Command Deploy

Full Docker Compose setups. Clone, configure, run. Production-ready in minutes.

Featured Examples

Running Examples

Every example runs with Docker. No complex setup required.

1

Clone the Repository

git clone https://github.com/imran-siddique/agent-os.git
cd agent-os/examples
2

Configure Environment

# Copy example env file
cp .env.example .env

# Add your API keys
echo "OPENAI_API_KEY=sk-..." >> .env
echo "ANTHROPIC_API_KEY=sk-ant-..." >> .env
3

Run with Docker Compose

# Run Carbon Auditor example
cd carbon-auditor
docker-compose up -d

# View logs
docker-compose logs -f agent

# Run tests
docker-compose exec agent pytest tests/
4

Access the Dashboard

# Most examples include a monitoring dashboard
open http://localhost:8080

# Grafana metrics (if included)
open http://localhost:3000
πŸ’‘

Resource Requirements

Most examples require 4GB RAM and 2 CPU cores minimum. Grid Balancing (100 agents) needs 8GB RAM and 4 cores for full performance.

Source Code

All examples are MIT licensed. Fork, modify, and deploy.

πŸ“‚ examples/ directory structure
examples/
β”œβ”€β”€ carbon-auditor/
β”‚   β”œβ”€β”€ docker-compose.yml
β”‚   β”œβ”€β”€ src/
β”‚   β”‚   β”œβ”€β”€ agent.py          # Main agent logic
β”‚   β”‚   β”œβ”€β”€ cmvk_config.py    # CMVK verification setup
β”‚   β”‚   └── policies/         # Governance policies
β”‚   β”œβ”€β”€ tests/
β”‚   └── README.md
β”œβ”€β”€ grid-balancing/
β”‚   β”œβ”€β”€ docker-compose.yml
β”‚   β”œβ”€β”€ k8s/                  # Kubernetes manifests
β”‚   β”œβ”€β”€ src/
β”‚   └── README.md
β”œβ”€β”€ defi-sentinel/
β”‚   └── ...
└── pharma-compliance/
    └── ...

Contributing Examples

Have a production use case? Share it with the community.

πŸ“‹ Example Requirements

  • βœ“ Solves a real-world problem
  • βœ“ Includes Docker Compose setup
  • βœ“ Has comprehensive tests
  • βœ“ Documents performance metrics
  • βœ“ Follows Agent OS best practices

πŸš€ Submission Process

  1. Fork the repository
  2. Create your example in examples/
  3. Add tests and documentation
  4. Open a pull request
  5. Pass code review
πŸ†

Featured Contributors

Outstanding examples get featured on the Agent OS homepage and documentation. Contributors receive attribution and a spot in our Hall of Fame.

Read Contributing Guide β†’ Propose an Example