Get up and running in 5 minutes.
# 1. Navigate to mission-control
cd mission-control
# 2. Install dependencies
npm install
# 3. Set up database
npx prisma generate
npx prisma db push
# 4. (Optional) Add sample data
npx prisma db seedCreate .env.local:
DATABASE_URL="file:./dev.db"
# Add at least one AI API key for prompt parsing
ANTHROPIC_API_KEY=sk-ant-xxxxx
# OR
OPENAI_API_KEY=sk-xxxxxGet API keys:
- Claude: https://console.anthropic.com/
- OpenAI: https://platform.openai.com/
npm run devGo to Tasks page and try:
Add task: review PR #123, high priority, due tomorrow
The AI will parse:
- Title: "Review PR #123"
- Priority: High
- Due date: Tomorrow's date
- Tags: ["pr", "review"]
# Install GitHub CLI
brew install gh
# Authenticate
gh auth login
# Visit Projects page - it will auto-fetch your repos!If you have gog skill:
# Authenticate Google Calendar
gog auth login
# Try AI event creation:
"Schedule meeting with John tomorrow 2pm for 1 hour"- Read the full README.md
- Check docs/SETUP.md for detailed config
- Browse docs/API.md for API docs
- Customize the theme in
app/globals.css
npm run dev # Development server
npm run build # Production build
npm run start # Production server
npx prisma studio # Database GUIAI prompts not working?
- Check
.env.localhas an API key - Verify key is valid
GitHub repos not showing?
- Install
ghCLI:brew install gh - Run
gh auth login
Build errors?
- Delete
.nextfolder - Run
npm installagain - Make sure Node.js 18+ is installed
Database issues?
- Delete
dev.dbandprisma/dev.db - Run
npx prisma db pushagain
Need help? Open an issue on GitHub!