Replaces PM + analyst
Product management, data analysis, UX research, growth engineering, and technical writing. From PRDs to launch — coordinated product delivery.
Each role includes a system prompt, recommended modules, and department classification.
Writes PRDs, prioritizes backlogs, defines success metrics, and coordinates cross-functional teams.
Recommended modules
Queries databases, builds reports, identifies trends, and presents insights to stakeholders.
Recommended modules
Conducts user interviews, analyzes feedback, creates personas, and runs usability tests.
Recommended modules
Runs A/B tests, optimizes funnels, implements analytics, and experiments with acquisition channels.
Recommended modules
Writes API docs, user guides, changelogs, and knowledge base articles.
Recommended modules
Use the REST API or TypeScript SDK to deploy the entire team.
# Deploy the full Product Team with one call curl -X POST https://jarvissdk.com/api/v1/teams/product-team/deploy \ -H "x-api-key: jsk_YOUR_API_KEY" \ -H "Content-Type: application/json" # Response: 5 agents configured and ready
import { JarvisSDK } from "@jarvis-sdk/client";
const sdk = new JarvisSDK({ apiKey: "jsk_YOUR_API_KEY" });
// Deploy the Product Team
const team = await sdk.teams.deploy("product-team");
// team.agents = ["product-manager", "data-analyst", "ux-researcher", ...]
console.log(`Deployed ${team.agents.length} agents`);