CoolFace
Apppublic

JamesUMD23/agent-business

sourceHugging Facemitupdated 4mo agoView on Hugging Face
0likes
App README

Agent Factory — Mission Control

A Reflex web app where a Claude Opus 4.7 Orchestrator coordinates specialist sub-agents (currently a Haiku 4.5 Business-Acquisition Scout) and you watch them work in real time.

What it does

  • —Submit search criteria (industry, max price, location)
  • —Orchestrator plans the run and spawns the Scout
  • —Scout searches BizBuySell / BizQuest / BusinessesForSale via Anthropic web_search, fetches listings (Safari UA bypasses bot detection), scores them with the local investment calculator, and saves the best ones
  • —Orchestrator emails the digest when the run finishes
  • —The dashboard streams every step live

See INSTRUCTIONS.md for the full architecture.

Local dev

bash
pip install -r requirements.txt
cp .env.example .env  # then fill in keys
reflex run

Frontend → http://localhost:3000 · Backend → http://localhost:8000

Deploy to a HuggingFace Space

  1. 1.Create a new Space (SDK = Docker, hardware = CPU upgrade)
  2. 2.Add Secrets in Settings: CLAUDE_API_KEY, EMAIL, EMAIL_PASSWORD
  3. 3.Push this repo to the Space's git remote
  4. 4.The Dockerfile uses reflex run --single-port so the whole app runs on :7860