# CC Context - Read This First

## Access Available

### Slack (Read + Write)
```
SLACK_BOT_TOKEN=xoxb-9500908883936-10024616391536-WewkphWhiSZgRF1Atp5LF32I

Channels:
- C0A9MPWMH3J = #growth-alerts (bugs land here)
- C0A09R2EV89 = #michael (private)
```

### Supabase (Full Access)
```
Project: memscjotxrzqnhrvnnkc
URL: https://memscjotxrzqnhrvnnkc.supabase.co

Commands:
- npx supabase migration new [name]
- npx supabase db push
- npx supabase migration list
```

### Production
```
API: https://rateright-growth-production.up.railway.app
Admin: https://admin.rateright.com.au
```

---

## Read These Files

| File | What's In It |
|------|--------------|
| `docs/LESSONS.md` | Gotchas, bug patterns, what works |
| `docs/SYSTEM-INTEL.md` | Feature status, priority queue |
| `CLAUDE.md` | Build protocol, project overview |

---

## Quick Bug Patterns

1. **"Not showing"** → Check type/category mismatch
2. **"Not saving"** → Check missing DB columns
3. **"Silent fail"** → Check error capture on .insert()
4. **"Undefined"** → Check .select() includes field

---

## No Friction Rules

- Don't ask, just do
- Read Slack first for bugs
- Read LESSONS.md for patterns
- Fix highest priority first
- Commit when done
