|
| 1 | +--- |
| 2 | +title: Getting started with Inbox |
| 3 | +sidebar: Docs |
| 4 | +showTitle: true |
| 5 | +--- |
| 6 | + |
| 7 | +import { QuestLog, QuestLogItem } from 'components/Docs/QuestLog' |
| 8 | +import OSButton from 'components/OSButton' |
| 9 | + |
| 10 | +PostHog **Inbox** is your command center for self-driving development. It uses signals from your production data—like error spikes, user complaints, and session anomalies—to automatically research issues, write code fixes, and open pull requests. |
| 11 | + |
| 12 | +Instead of reactive firefighting, Inbox moves your workflow to a "proactive merging" model where AI agents do the heavy lifting of investigation and implementation. |
| 13 | + |
| 14 | +<QuestLog firstSpeechBubble="Let's set up your self-driving command center!" lastSpeechBubble="Your Inbox is ready. Time to start merging!"> |
| 15 | + |
| 16 | +<QuestLogItem |
| 17 | + title="Connect your Signal Sources" |
| 18 | + subtitle="Required" |
| 19 | + icon="IconPlug" |
| 20 | +> |
| 21 | + |
| 22 | + Inbox identifies work by monitoring "Signals." To get started, you need to connect the sources where your product data and user feedback live. |
| 23 | + |
| 24 | + - **Internal:** Enable [Error Tracking](/docs/error-tracking), [Support Conversations](/docs/support), and [Session Replay](/docs/session-replay). |
| 25 | + - **External:** Connect your [GitHub Issues, Linear, or Zendesk](/docs/inbox/signal-sources) accounts. |
| 26 | + |
| 27 | + <OSButton variant="primary" asLink to="/docs/inbox/signal-sources"> |
| 28 | + Configure sources |
| 29 | + </OSButton> |
| 30 | + |
| 31 | +</QuestLogItem> |
| 32 | + |
| 33 | +<QuestLogItem |
| 34 | + title="Triage actionable reports" |
| 35 | + subtitle="Required" |
| 36 | + icon="IconTerminal" |
| 37 | +> |
| 38 | + |
| 39 | + Once sources are connected, Inbox clusters signals into **Reports**. Each report is automatically ranked by: |
| 40 | + |
| 41 | + - **Priority (P0-P3):** Determined by the impact on user flow and code importance. |
| 42 | + - **Actionability:** Marked as "Actionable" if an agent has found a clear path to a fix. |
| 43 | + |
| 44 | + Review your first report to see the root cause analysis and the proposed resolution logic. |
| 45 | + |
| 46 | + <OSButton variant="primary" asLink to="/docs/inbox/triage-and-priority"> |
| 47 | + Learn about prioritization |
| 48 | + </OSButton> |
| 49 | + |
| 50 | +</QuestLogItem> |
| 51 | + |
| 52 | +<QuestLogItem |
| 53 | + title="Audit Agent Research" |
| 54 | + subtitle="Recommended" |
| 55 | + icon="IconMagnifyingGlass" |
| 56 | +> |
| 57 | + |
| 58 | + For actionable reports, an AI agent automatically performs a **Research Task**. It uses the [Model Context Protocol (MCP)](/docs/ai-engineering/mcp) to search your codebase and identify the exact lines of code causing the issue. |
| 59 | + |
| 60 | + You can audit the agent's logs to see exactly how it navigated your repo and reached its conclusions. |
| 61 | + |
| 62 | + <OSButton variant="primary" asLink to="/docs/inbox/research-and-implementation"> |
| 63 | + See how agents research |
| 64 | + </OSButton> |
| 65 | + |
| 66 | +</QuestLogItem> |
| 67 | + |
| 68 | +<QuestLogItem |
| 69 | + title="Merge your first PR" |
| 70 | + subtitle="The Goal" |
| 71 | + icon="IconRocket" |
| 72 | +> |
| 73 | + |
| 74 | + When research is complete, the agent executes an **Implementation Task**: cloning your repo, creating a branch, and opening a GitHub PR. |
| 75 | + |
| 76 | + Each PR includes an AI-generated description of the problem and the change. Your job is simply to review the code in GitHub and click **Merge**. |
| 77 | + |
| 78 | + <OSButton variant="primary" asLink to="/docs/inbox/research-and-implementation#implementation-tasks"> |
| 79 | + Review the PR workflow |
| 80 | + </OSButton> |
| 81 | + |
| 82 | +</QuestLogItem> |
| 83 | + |
| 84 | +</QuestLog> |
| 85 | + |
| 86 | +## Next steps |
| 87 | + |
| 88 | +- Explore [how prioritization works](/docs/inbox/triage-and-priority) to focus on what matters. |
| 89 | +- Deep dive into [Agent Research](/docs/inbox/research-and-implementation) to understand the "self-driving" engine. |
| 90 | +- If you run into issues, check the [troubleshooting guide](/docs/inbox/troubleshooting). |
0 commit comments