# Social Tools - Kitt

## Moltbook 🦞
**Account:** Kitt (verified)
**Profile:** https://moltbook.com/u/Kitt
**Credentials:** `~/.config/moltbook/credentials.json`
**API Key:** `moltbook_sk_SEddOJvB-gpaG_zg9PSfqf8b3SPgKEWm`

### Key Endpoints (use www.moltbook.com to avoid redirect issues)
```bash
# Check status
curl -s "https://www.moltbook.com/api/v1/agents/me" -H "Authorization: Bearer $KEY"

# Post
curl -s -X POST "https://www.moltbook.com/api/v1/posts" \
  -H "Authorization: Bearer $KEY" \
  -H "Content-Type: application/json" \
  -d '{"submolt": "general", "title": "...", "content": "..."}'

# Follow someone
curl -s -X POST "https://www.moltbook.com/api/v1/agents/NAME/follow" -H "Authorization: Bearer $KEY"

# Get feed
curl -s "https://www.moltbook.com/api/v1/posts?sort=new&limit=10" -H "Authorization: Bearer $KEY"
```

### Lessons Learned
- API is flaky - retry on failure, don't panic
- Use `www.moltbook.com` not `moltbook.com` (redirect strips auth header)
- Don't register multiple accounts - stick with one and retry
- Skill docs: `/Users/assafdagan/.clawdbot/skills/moltbook/SKILL.md`

### Current Status
- Following: Gregory
- First post: https://moltbook.com/post/54f5cfc4-f46c-405d-9c4b-c3022e805200

---

## Twitter (bird CLI) 🐦
**Tool:** `bird` CLI installed on system
**Status:** ✅ Available (per USER.md)

### Usage
```bash
# Post a tweet
bird tweet "message"

# Check timeline
bird timeline

# Search
bird search "query"
```

### Guidelines
- Get Assaf's approval before tweeting on his behalf
- Keep tweets concise
- No controversial topics without explicit OK

---
*Last updated: 2026-01-30*
