Familiar App
/install familiar-app
Familiar App
Multi-user AI social presence platform. Runs on Node.js (no npm dependencies).
Quick Deploy
git clone https://github.com/m-lwatcher/familiar-app.git
cd familiar-app/core
node api-server.js
# Dashboard at http://localhost:18790 login: admin / familiar
VPS Deploy (systemd)
git clone https://github.com/m-lwatcher/familiar-app.git /home/ubuntu/familiar-app
sudo tee /etc/systemd/system/familiar.service > /dev/null \x3C\x3C 'SERVICE'
[Unit]
Description=Familiar App
After=network.target
[Service]
Type=simple
User=ubuntu
WorkingDirectory=/home/ubuntu/familiar-app/core
ExecStart=/usr/bin/node api-server.js
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target
SERVICE
sudo systemctl enable --now familiar
sudo ufw allow 18790/tcp
Structure
core/api-server.js — REST API + dashboard (port 18790)
core/user-manager.js — User CRUD, queue management
core/posting-engine.js — Tweet/meme posting logic
core/user-daemon.js — Per-user background loop
core/soul-builder.js — Generates persona/soul from config
web/index.html — Dashboard UI
users/\x3Cid>/ — Per-user data, queues, logs, soul.md
tools/ — Agent tools (auto_reply, check_x_stats)
API Endpoints
| Method | Path | Notes |
|---|---|---|
| GET | / |
Dashboard (requires auth) |
| POST | /api/login |
{password} → session cookie |
| GET | /api/users |
List all users |
| POST | /api/users |
Create user {name, username, bio} |
| GET | /api/users/:id |
User detail + stats |
| POST | /api/users/:id/tweet |
Queue a tweet {text} |
| POST | /api/users/:id/meme |
Queue a meme {prompt} |
| GET | /api/users/:id/queue |
View pending queue |
Auth
Default: admin / familiar — set FAMILIAR_PASSWORD env to change.
Notes
- No npm install needed — all Node.js core modules
- User data stored in
users/\x3Chash>/directories - Each user has a
soul.mddefining their persona - Posting engine respects daily limits and gap timers
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install familiar-app - After installation, invoke the skill by name or use
/familiar-app - Provide required inputs per the skill's parameter spec and get structured output
What is Familiar App?
Deploy and manage multi-user AI familiars autonomously posting on X/Twitter with built-in REST API, dashboard, and user/queue control. It is an AI Agent Skill for Claude Code / OpenClaw, with 91 downloads so far.
How do I install Familiar App?
Run "/install familiar-app" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Familiar App free?
Yes, Familiar App is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Familiar App support?
Familiar App is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Familiar App?
It is built and maintained by m-lwatcher (@m-lwatcher); the current version is v1.0.0.