Demo

All demos run without API keys using the built-in DemoBackend — real tool execution, real multi-agent coordination, zero credentials required.

Prerequisites: Rust 1.80+ and git clone https://github.com/fboiero/Agentor

Available Demos

Full Pipeline

8-step pipeline: file I/O, shell, vector memory, report generation. The canonical end-to-end showcase.

cargo run -p argentor-cli --example demo_full_pipeline

DevOps Team

4 specialised agents (Planner, Coder, Tester, Reviewer) working as a team. Demonstrates Orchestrator-Workers pattern.

cargo run -p argentor-cli --example demo_team

Skills Toolkit

Showcases 18 built-in utility skills: crypto, datetime, math, JSON transform, markdown, HTTP mock, and more.

cargo run -p argentor-cli --example demo_skills_toolkit

SaaS Factory

Multi-agent pipeline that generates a SaaS backend specification, scaffolds files, and writes tests.

cargo run -p argentor-cli --example demo_saas_factory

Security Challenge

A penetration-testing agent that tries to bypass Argentor's own guardrails. Useful for red-team exercises.

cargo run -p argentor-cli --example demo_security_challenge

Gateway Dashboard

Start the full HTTP/WebSocket gateway and explore the control plane, playground, and metrics live.

cargo run -p argentor-cli -- serve --bind 0.0.0.0:8080

Example: Full Pipeline Output

What you see when you run demo_full_pipeline:

$ cargo run -p argentor-cli --example demo_full_pipeline

[ argentor ] Starting demo pipeline — DemoBackend (no API keys)
[ step 1/8 ] Initialising skill registry... 50 skills registered
[ step 2/8 ] Writing task manifest to /tmp/demo/tasks.json
file_write: tasks.json (1.2 KB)
[ step 3/8 ] Running shell analysis
shell_exec: uname -a → Linux demo 6.6.0
[ step 4/8 ] Embedding documents into vector store
memory_store: 5 documents, 384-dim embeddings
[ step 5/8 ] Semantic search: "security guardrails"
memory_search: 3 results (top score 0.94)
[ step 6/8 ] Guardrail scan on retrieved context
No PII or injection detected — PASS
[ step 7/8 ] LLM synthesis (DemoBackend)
Agent response: 312 tokens
[ step 8/8 ] Writing final report
file_write: /tmp/demo/report.md (2.4 KB)

Pipeline complete — 8 steps, 148 ms, 0 errors

Web UI — Gateway Dashboard

Start the gateway and open http://localhost:8080/dashboard to access:

Recording

An asciinema recording of the full pipeline demo is embedded on the landing page. To play it locally:

asciinema play docs/demo_pipeline.cast

Source Code

All demo source files live in examples/ and crates/argentor-cli/examples/.