連接器目錄化身为智能體員工。
每個通過認證的連接器都會自動投影為 AI 智能體可以調用的 Tool 技能。因此,驅動一鍵範本的相同原生包也驅動著一個受監管的智能體員工隊伍——規劃中涵蓋運行在單一執行期上的 4 層架構 40 個智能體。
執行期、首批兩個智能體、BYOK 大模型和管理控制台今日已上線。底層的第 2 至 4 層為順次開發計劃,尚未交付。
First-party agents
Ready-to-run agents hosted on the Zervanor runtime. Each runs as an isolated pod in the same runtime as your workflows.
AI Assistant
ai-agent Conversational AI assistant with connector-backed tools. Built on the Generic Agentic Runtime shell (ADR-038): understands goals in natural language, uses available connector tools to take real action
Content Agent
content-agent Content operations agent: drafting, editorial calendar, and social scheduling across CMS and publishing tools. Built on the Generic Agentic Runtime shell (ADR-038).
Data Agent
data-agent Autonomous data and analytics agent. Queries databases and BI tools, transforms raw results into readable reports, identifies trends and anomalies, and delivers summaries via email or Slack. Read-only
DevOps Agent
devops-agent Autonomous DevOps and infrastructure agent. Monitors deployments, triages incidents, coordinates on-call via PagerDuty, checks GitHub PR status, and automates routine ops tasks — across GitHub, Kubern
E-commerce Agent
ecommerce-agent E-commerce operations agent: order management, inventory tracking, and fulfillment across store platforms. Built on the Generic Agentic Runtime shell (ADR-038).
Education Agent
education-agent Education operations agent: student progress tracking and feedback across LMS and scheduling tools. Built on the Generic Agentic Runtime shell (ADR-038).
Executor Agent
executor-agent Multi-step automation archetype: reliably executes a defined multi-step procedure end to end, idempotently. Built on the Generic Agentic Runtime shell (ADR-038).
Finance Agent
finance-agent Finance operations agent: invoicing, AP/AR, expense approvals, and reconciliation across accounting and payment tools. Built on the Generic Agentic Runtime shell (ADR-038).
generic-agent
generic-agent Generic Agentic Runtime shell (ADR-038). One configurable runtime: a new agent product is this shell + a manifest (system prompt + tool bindings), not a new codebase. ReAct planning loop over AG-02 co
HR Agent
hr-agent HR operations agent: employee onboarding, policy Q&A, and time-off handling across HRIS and chat tools. Built on the Generic Agentic Runtime shell (ADR-038).
Legal Agent
legal-agent Legal review agent: contract clause review and risk flagging — read-only, escalates to counsel. Built on the Generic Agentic Runtime shell (ADR-038).
Marketing Agent
marketing-agent Marketing analytics agent: campaign performance analysis, segmentation, and reporting across ad and email tools. Built on the Generic Agentic Runtime shell (ADR-038).
Monitor Agent
monitor-agent Threshold-alerting archetype: evaluates a metric or condition against a threshold and reports status or raises an alert. Built on the Generic Agentic Runtime shell (ADR-038).
Planner Agent
planner-agent Domain-agnostic multi-phase task orchestrator: decomposes a complex goal into ordered phases and drives each with real tools. Built on the Generic Agentic Runtime shell (ADR-038).
Project Manager Agent
pm-agent Project management agent: sprint planning, standup summaries, and backlog grooming across issue trackers. Built on the Generic Agentic Runtime shell (ADR-038).
Real Estate Agent
realestate-agent Real estate operations agent: listing management, lead qualification, and showing scheduling across CRM tools. Built on the Generic Agentic Runtime shell (ADR-038).
Recruiting Agent
recruiting-agent Recruiting agent: CV screening, candidate ranking, and interview scheduling across ATS and calendar tools. Built on the Generic Agentic Runtime shell (ADR-038).
Research Agent
research-agent Autonomous research specialist. Given a research goal, gathers information from connected sources (web, documents, APIs), synthesizes findings, and returns a structured research report. Read-only tool
Responder Agent
responder-agent Context-aware Q&A archetype: answers questions grounded in retrieved data and tool calls, with citations. Built on the Generic Agentic Runtime shell (ADR-038).
Sales Agent
sales-agent Autonomous sales operations agent. Manages CRM pipelines, enriches prospect data, drafts outreach, tracks deal activity, and surfaces revenue insights — across HubSpot, Salesforce, email, and calendar
Security Agent
security-agent Security operations agent: threat-alert triage and audit-log review — read-only, escalates incidents. Built on the Generic Agentic Runtime shell (ADR-038).
Slack AI Agent
slack-agent Conversational AI over Slack (Socket Mode) powered by the Generic Agentic Runtime shell (ADR-038, PH-AG-03C). Every inbound DM or @mention drives a ReAct planning loop that can use connector tools to
Support Agent
support-agent Autonomous customer support agent. Triages incoming tickets, routes to the right queue, drafts responses from knowledge base, escalates when needed, and keeps Slack updated — across Zendesk, Freshdesk
Uptime Watcher
uptime-watcher L3 Ambient Watcher: on a schedule, evaluates endpoint/service uptime against a threshold and raises an ALERT verdict when degraded, cascading to a role agent. Built on the Generic Agentic Runtime shel
WhatsApp AI Agent
whatsapp-agent-v2 Conversational AI over WhatsApp powered by the Generic Agentic Runtime shell (ADR-038). Replaces command rules with LLM intelligence: every inbound message drives a ReAct planning loop that can use co
whatsapp-agent
whatsapp-agent WhatsApp provider agent built with Zervanor Agent SDK
創建新智能體只需配置清單,無需新建代碼庫。
統一的通用智能體執行期外殼(ADR-038)負責運行每一個智能體。打造新功能只需配置 agent.manifest.json——定義系統提示詞、規劃模式、記憶模式和精選工具綁定,然後通過 zervanor push 部署。無需編寫定制代碼,無需新建倉庫。
- ReAct 規劃閉環——思考 → 行動 → 觀察,在啟動時從連接器目錄自動載入工具。
- 自帶模型——目前通過提供商/base-url 抽象層支援 OpenAI / Gemini,平台永遠不會硬編碼綁定單一廠商。
- 治理完備——租戶物理隔離、精選工具白名單,以及為智能體量身定制的人工協同(HITL)審批策略。
{
"id": "support-agent",
"agentic": {
"system_prompt": "You triage support tickets…",
"planning_mode": "react",
"memory_mode": "session",
"tool_sources": ["zendesk", "slack"],
"tool_policy": { "require_confirmation": true }
}
}