Introduction
Kavanah is an AI-native project management platform: tasks, dev activity, client work, and AI agents in one workspace. Plan sprints, thread PRs and deploys back to the work that produced them, let agents draft routine PRs and status updates, and keep clients in the loop from a single source of truth.
This documentation is here to help you:
- Set up your workspace and invite your team
- Use Task Management, Time Tracking, the Client Portal, and Team Collaboration
- Connect GitHub, Vercel, Sentry, Telegram, Gmail, and other tools
- Configure the AI Engineer, Spec → Tasks, and the Automations engine
- Install the Mac or Windows desktop app
- Integrate with the OpenAPI 3.1 API
How to Use These Docs
- Start with Getting Started to create your first project
- Move through Core Features for tasks, time, portals, and collaboration
- Read Dev & AI to wire repos, deploys, and AI-eligible tasks
- Use Integrations & Apps to connect tools and install the desktop app
- Visit API Reference when you're ready to integrate programmatically
Quick Start
- 1Sign up for Kavanah
- 2Create your workspace and invite your team
- 3Add your first project and start tracking tasks
Example — Create a task via API
const response = await fetch("/api/tasks", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
title: "Design homepage mockup",
priority: "high"
})
});
const task = await response.json();
console.log(task);