Matrixly Matrixly Deploy pack

Starter bundle · Ready to use

Matrixly Starter Pack

Three production agents for support, appointments, and invoices — plus one unified dashboard to monitor, configure, and embed them. Built for SMBs who want agentic ops without assembling a toolchain from scratch.

3 agents 1 dashboard HITL Port 8800

SUP

SupportForge

Triage, KB answers, escalation, chat widget, audit.

Agent page →

BOOK

BookWise

Availability, bookings, reminders, calendar sync.

Agent page →

INV

InvoiceForge

Extract, validate, post, exceptions, AR reminders.

Agent page →

Deploy the pack

Code: agents/starter-pack · Guide: agents/starter-pack/README.md

cd agents/starter-pack
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -r requirements.txt
copy .env.example .env
# Start support-forge :8787, book-wise :8790, invoice-forge :8791 first
python scripts/smoke_test.py
python -m src.cli serve
# Dashboard → http://localhost:8800

# Or full stack:
# docker compose up --build
Safety: Each agent keeps HITL on sensitive actions. The pack dashboard uses a separate admin API key.

Embed widgets

<!-- SupportForge -->
<script src="https://YOUR_SUPPORT_HOST/static/widget/embed.js"
  data-api="https://YOUR_SUPPORT_HOST" data-key="pk_live_..." async></script>

<!-- BookWise -->
<script src="https://YOUR_BOOK_HOST/static/widget/embed.js"
  data-api="https://YOUR_BOOK_HOST" data-key="pk_live_..." async></script>

<!-- Starter Pack dashboard launcher -->
<script src="https://YOUR_PACK_HOST/static/widget/embed-pack.js"
  data-api="https://YOUR_PACK_HOST" async></script>