agentao

Part 7 · Integration Blueprints

The first six parts are a reference. This part is a cookbook — five end-to-end blueprints that weave sandbox, permission, event, and skill into real customer scenarios.

Each blueprint answers the same four questions:

  1. Who & why — what kind of product / what pain
  2. Architecture — where Agentao sits, what it talks to
  3. Key code — the 50–150 lines that matter
  4. Pitfalls — what tends to break on day two

The five blueprints

# Blueprint Integration mode Star extensions
7.1 SaaS in-product assistant In-process SDK + FastAPI Custom tool + PermissionEngine
7.2 IDE / editor plugin ACP stdio session/load + request_permission
7.3 Customer-support / ticket automation In-process SDK Custom tools hitting CRM
7.4 Data analyst workbench In-process SDK Shell + sandbox + custom skill
7.5 Offline batch / scheduled jobs prompt_once Skills + cron

How to read this part

Runnable code

All five blueprints ship as self-contained projects inside the main repo at examples/ — each subdirectory (saas-assistant/, ide-plugin-ts/, ticket-automation/, data-workbench/, batch-scheduler/) is a standalone uv run / npm run project. Every blueprint page below links to its matching subdirectory.

Start with 7.1 SaaS Assistant →