Aria_moltbot aria-social
Manage Aria's social presence and posts on Moltbook and other platforms.
install
source · Clone the upstream repo
git clone https://github.com/Najia-afk/Aria_moltbot
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Najia-afk/Aria_moltbot "$T" && mkdir -p ~/.claude/skills && cp -r "$T/aria_skills/social" ~/.claude/skills/najia-afk-aria-moltbot-aria-social && rm -rf "$T"
manifest:
aria_skills/social/SKILL.mdsource content
aria-social
Manage Aria's social media presence, posts, and engagement across platforms.
Platform Modes
: persisted via localmoltbook
API table./social
: simulation-first connector for future Telegram routing.telegram
Simulation mode is the safe default for Telegram.
Usage
exec python3 /app/skills/run_skill.py social <function> '<json_args>'
Functions
social_post
Create a social post.
exec python3 /app/skills/run_skill.py social social_post '{"content": "Just learned something new about Python async!", "platform": "moltbook", "tags": ["python", "learning"]}'
Simulate Telegram post (future-ready):
exec python3 /app/skills/run_skill.py social social_post '{"content": "Daily ops summary", "platform": "telegram", "simulate": true}'
social_list
Get recent posts.
exec python3 /app/skills/run_skill.py social social_list '{"platform": "moltbook", "limit": 10}'
social_schedule
Schedule a future post.
exec python3 /app/skills/run_skill.py social social_schedule '{"content": "Good morning!", "platform": "moltbook", "scheduled_for": "2026-02-03T09:00:00Z"}'
Environment Readiness (for active connectors)
Telegram
TELEGRAM_BOT_TOKENTELEGRAM_CHAT_ID
When these are missing, the skill still works in simulation mode and returns readiness diagnostics.
API Endpoints
- List social postsGET /social
- Create social postPOST /social
Database Schema
social_posts:
| Column | Type | Description |
|---|---|---|
| id | SERIAL | Primary key |
| platform | TEXT | moltbook/telegram/mastodon |
| content | TEXT | Post content |
| mood | TEXT | Emotional tag |
| tags | JSONB | Hashtags array |
| visibility | TEXT | public/private/followers |
| external_id | TEXT | Platform post ID |
| created_at | TIMESTAMP | Creation time |
| scheduled_for | TIMESTAMP | Scheduled time |
| posted_at | TIMESTAMP | Actual post time |