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.md
source content

aria-social

Manage Aria's social media presence, posts, and engagement across platforms.

Platform Modes

  • moltbook
    : persisted via local
    /social
    API table.
  • telegram
    : simulation-first connector for future Telegram routing.

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_TOKEN
  • TELEGRAM_CHAT_ID

When these are missing, the skill still works in simulation mode and returns readiness diagnostics.

API Endpoints

  • GET /social
    - List social posts
  • POST /social
    - Create social post

Database Schema

social_posts:

ColumnTypeDescription
idSERIALPrimary key
platformTEXTmoltbook/telegram/mastodon
contentTEXTPost content
moodTEXTEmotional tag
tagsJSONBHashtags array
visibilityTEXTpublic/private/followers
external_idTEXTPlatform post ID
created_atTIMESTAMPCreation time
scheduled_forTIMESTAMPScheduled time
posted_atTIMESTAMPActual post time