Fliiq gets its own phone number via Twilio. This isn’t your personal phone — Fliiq has its own number that it sends and receives SMS from. You text Fliiq’s number from your phone, and Fliiq responds from its number.
Fliiq sends and receives SMS through Twilio’s REST API. No SDK dependency — uses
httpx directly.
Setup
- Create a Twilio account
- Get a phone number from the Twilio console — this becomes Fliiq’s number
- Add credentials to
.env:
.env
Twilio trial accounts can only send to verified phone numbers. Upgrade for unrestricted sending.
Skills
send_sms
Send a text message from Fliiq’s number.receive_sms
Fetch recent inbound SMS messages to Fliiq’s number. Filters for inbound direction only, default 1-hour lookback window.Persistent Session Store
Outbound SMS sent viasend_sms is logged to a per-phone-number session store at .fliiq/sms_sessions/. This gives Fliiq a persistent record of SMS exchanges per contact, consistent with how the email and Telegram channels handle conversation history.