Productivity & Collaboration multi-agent-orchestrationragfastapinextjschromadbexecutive-advisorbusiness-strategy

OpenExecutive Virtual Executive Team

An AI-powered virtual executive team: eight specialist Claude agents delivering a single coherent executive voice across strategy, finance, HR, legal, and more.

FollowAgents review · FARS-2.1
Not recommended
43/ 100 5-point scale 2.2 / 5
1 2 3 4 5 6
1Trust7 / 29 · 1.2/5

Evidence shows: README describes access control (Google sign-in + shared secret), single-instance scheduler, and data flow (RAG injected into user turn, not cached system prompt). However, user confirmation mechanism (e.g., before outbound actions) is absent, least privilege not explicit (e.g., API key scope), data flow transparency limited (no detail on what data is sent to Anthropic). Dependency security not mentioned (no dependency audit or vulnerability scanning). External effects described (outbound messages, MCP tools) but no user confirmation or revocation mechanism. Rollback mentioned in deployment docs but no concrete steps. Source attribution: Apache 2.0 license and contributor statement present, but publisher unverified. Deductions: user confirmation missing, least privilege not explicit, dependency security not mentioned, external effects lack user control.

2Reliability6 / 14 · 2.1/5

Evidence shows: README and CI config are consistent, architecture described clearly, tests exist (unit tests, CI runs). However, dependency availability not verified (e.g., heavy deps like ChromaDB, PyTorch availability not stated), failure messages not provided (e.g., API error handling, user-visible error prompts). Deductions: dependency availability not verified, failure messages missing.

3Adaptability12 / 18 · 3.3/5

Evidence shows: README describes multiple usage scenarios (Web, Slack, Email, Telegram, Google Chat, Discord, CLI), capability boundaries stated (e.g., single-instance limit, local model limitations), trigger precision described (e.g., scheduler, routing), environment fit documented (Fly.io, local, Docker). However, capability boundaries not fully explicit (e.g., specific limits of each agent), trigger precision lacks concrete examples. Deductions: capability boundaries and trigger precision not specific enough.

4Convention9 / 18 · 2.5/5

Evidence shows: README provides clear architecture, install steps, configuration, examples (CLI, API), known limitations (single-instance, local model limits), license (Apache 2.0). However, naming stability not verified (no version history), versioning/changelog missing, maintenance responsibility not explicit (no maintainer info). Deductions: versioning/changelog missing, maintenance responsibility not explicit.

5Effectiveness7 / 13 · 2.7/5

Evidence shows: README describes output (consistent executive voice, actionable advice), marginal value (8 specialist agents, memory, scheduler), cost-benefit (prompt caching, local model options). However, cost-benefit not quantified (e.g., API cost estimates), output usability lacks concrete examples. Deductions: cost-benefit not quantified, output examples missing.

6Verifiability2 / 8 · 1.3/5

Evidence shows: README claims (e.g., Harvard MBA-level knowledge, 85% cache hit rate) lack supporting evidence, cross-source corroboration missing (no independent tests or third-party verification), fact vs. inference not clearly separated (e.g., 'Harvard MBA-level' is inference). Deductions: claims lack evidence, cross-source corroboration missing, fact vs. inference not separated.

Evidence confidence: Low Reviewed Aug 31, 2026 Reviewed revision 2d1b54c8bf49
The upstream repository has new commits since this review. The score still applies to the reviewed revision shown and may not cover the latest changes.
Safety controls not found in source: confirmation before acting, dependency security
Before you use it
  • Publisher identity unverified; treat source with caution.
  • Lack of user confirmation mechanism; outbound actions (e.g., sending messages, calling external tools) may occur without explicit user consent.
  • Dependency security not mentioned; audit dependencies for vulnerabilities yourself.
  • Versioning and changelog missing; difficult to track updates and rollback.
Review evidence [1][2][3][4][5][6]
See the full review method →

What does this agent do, and when should you use it?

OpenExecutive, by SenteLabsAI, is an AI system that acts as a company's virtual executive team. It exposes one consistent executive persona backed by eight specialist Claude agents (CSO, CFO, CHRO, GC, COO, CMO, CPO, Board Communications). The backend is Python 3.11+ FastAPI; the frontend is Next.js 15. Knowledge is stored in ChromaDB, combining built-in MBA-level Markdown and uploaded company documents, with a RAG pipeline injecting context per turn. It maintains episodic memory in SQLite across sessions and includes a built-in scheduler for proactive follow-ups. Users interact via Web UI, Slack, Email, Telegram, Google Chat, Discord, and a CLI. Deployment is supported through Docker and Fly.io configurations, with a focus on single-instance operation for the scheduler.

When a user sends a message, the Executive Orchestrator (claude-sonnet-4-6) routes the intent and invokes relevant specialists in parallel. Each specialist retrieves context from ChromaDB (built-in knowledge + company docs) and generates a domain response. The orchestrator synthesizes these into a single executive answer. After each response, a background claude-haiku-4-5 pass extracts decisions and initiatives into SQLite for episodic memory. The scheduler uses UPDATE...RETURNING to claim due actions, preventing double-firing. Users can upload documents via CLI (openexecutive upload) or REST API (POST /documents).

  1. Startup founders: get strategic advice on market positioning, fundraising, or M&A from CSO/CFO agents.
  2. HR leads: use CHRO agent to design hiring plans, compensation structures, or performance frameworks.
  3. Operations managers: leverage COO agent for process design, vendor management, or scaling operations.
  4. Marketing/product teams: get GTM strategy or roadmap inputs from CMO/CPO agents.
  5. Companies needing continuity: episodic memory recalls past recommendations in subsequent sessions.

What are this agent's strengths and limitations?

Pros
  • Unified executive voice masks internal multi-agent complexity, providing a coherent user experience
  • Built-in MBA knowledge plus company-specific RAG gives context-aware advice
  • Episodic memory across sessions enables continuity and follow-up
  • Multi-channel integration (Web, Slack, Email, Telegram, Google Chat, Discord, CLI) maximizes accessibility
  • Local model support (Ollama, etc.) or OpenRouter reduces vendor lock-in
Limitations
  • Complex setup requires Python 3.11+, Node 22+, uv, and multiple configuration steps
  • Scheduler restricts to single-instance API; horizontal scaling requires gating it off
  • Default dependence on Anthropic API incurs usage costs and requires API key management
  • First build is heavy due to ML dependencies and model download; initial startup is slow
  • Cloud deployment sends prompts to Anthropic; privacy relies on Anthropic's data policy

How do you install or deploy this agent?

Clone the repo, copy .env.example to .env, set ANTHROPIC_API_KEY (or enable local models/OpenRouter). Run make dev (first run downloads ~90MB model). Alternatively, cd packages/core && uv sync && source .venv/bin/activate && uvicorn openexecutive.api.main:app --port 8000, and in another terminal cd packages/ui && npm install && npm run dev.

How do you use this agent?

Open http://localhost:3000 and complete the onboarding wizard to set up your company profile. Then chat via the web UI, or integrate with Slack, email, Telegram, Google Chat, or Discord. Upload documents via CLI (openexecutive upload strategy.md) or API (curl -X POST http://localhost:8000/documents -F '[email protected]'). Use the scheduler to set proactive actions.

FAQ

Which model providers does OpenExecutive support?
It primarily uses Anthropic Claude (default claude-sonnet-4-6 and claude-opus-4-7), but can route to OpenRouter or local OpenAI-compatible servers (Ollama, LM Studio, vLLM) via configuration.
What are the deployment constraints?
For production, ensure the scheduler runs on a single instance (Fly.io sets max_machines_running=1). Required secrets include ANTHROPIC_API_KEY, and optional integration tokens. Access control uses Google sign-in with an allow-list.
How do I add a new specialist agent?
Follow the contribution guide: create an agent extending BaseAgent, add a domain prompt, register in the router, add a retriever alias, add built-in knowledge, and include at least two eval scenarios.
How is user data handled?
The company/ directory is gitignored and contains profile, docs, and vector store. Data stays local or on your own Fly volume except for prompts sent to Anthropic API; Anthropic does not train on API data.

Related agents