Dashboard
Yours to answer
With a studio Theirs to answer. You will be told if one goes unanswered.
All Tickets
Feature Requests
Dev Tracker
Progress Tree
Changelog
Kora Health
Tenants
Add Tenant
Settings
Notifications
Every studio's support now comes here and nowhere else, so it is worth being told. Push is per device — enrol each phone or laptop you want buzzed, and removing one leaves the others alone.
Personal Access Token
For your own scripts to read this dashboard (e.g. Claude Code's
/dev-tracker command) without going through the login
page's bot-check. Send it as Authorization: Bearer <token>.
Generating a new one invalidates whichever one you had before.
Connected Apps
Each app uses its API key to send tickets to this dashboard. Add the key to the app's environment variables.
Add New App
Integration Guide
To connect an app to this dashboard, add the following to the app's support submission endpoint:
// After saving the support message locally, forward to dashboard:
fetch('YOUR_DASHBOARD_URL/api/hooks/ticket', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'YOUR_APP_API_KEY'
},
body: JSON.stringify({
externalId: localMessageId,
tenantId: tenantId,
fromEmail: userEmail,
fromName: userName,
type: 'message', // or 'bug'
subject: subject,
body: messageBody
})
});