Replaces ops coordinator
Project coordination, customer success, support, and finance ops. Keep your company running while you focus on building.
Each role includes a system prompt, recommended modules, and department classification.
Tracks milestones, assigns tasks, runs standups, and reports on delivery timelines.
Recommended modules
Onboards new customers, monitors health scores, handles escalations, and drives renewals.
Recommended modules
Answers tickets, troubleshoots issues, writes knowledge base articles, and escalates when needed.
Recommended modules
Reconciles invoices, monitors MRR, manages subscriptions, and generates financial reports.
Recommended modules
Use the REST API or TypeScript SDK to deploy the entire team.
# Deploy the full Operations Team with one call curl -X POST https://jarvissdk.com/api/v1/teams/operations-team/deploy \ -H "x-api-key: jsk_YOUR_API_KEY" \ -H "Content-Type: application/json" # Response: 4 agents configured and ready
import { JarvisSDK } from "@jarvis-sdk/client";
const sdk = new JarvisSDK({ apiKey: "jsk_YOUR_API_KEY" });
// Deploy the Operations Team
const team = await sdk.teams.deploy("operations-team");
// team.agents = ["project-coordinator", "customer-success", "support-agent", ...]
console.log(`Deployed ${team.agents.length} agents`);