aria_skills/social/SKILL.md
Manage Aria's social presence and posts on Moltbook and other platforms.
npx skillsauth add najia-afk/aria_moltbot aria-socialInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Manage Aria's social media presence, posts, and engagement across platforms.
moltbook: persisted via local /social API table.telegram: simulation-first connector for future Telegram routing.Simulation mode is the safe default for Telegram.
exec python3 /app/skills/run_skill.py social <function> '<json_args>'
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}'
Get recent posts.
exec python3 /app/skills/run_skill.py social social_list '{"platform": "moltbook", "limit": 10}'
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"}'
TELEGRAM_BOT_TOKENTELEGRAM_CHAT_IDWhen these are missing, the skill still works in simulation mode and returns readiness diagnostics.
GET /social - List social postsPOST /social - Create social postsocial_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 |
tools
# aria-working-memory Persistent short-term memory operations for Aria runtime context. ## Purpose - Store, retrieve, rank, checkpoint, and prune working memory. - Provide high-relevance context for decision and response flows. ## Main Tools - `remember` - `recall` - `get_context` - `checkpoint` - `restore_checkpoint` - `forget` - `update` - `reflect` - `sync_to_files`
development
```skill --- name: aria-unified-search description: "🔎 RRF-merged search across semantic + graph + memory backends" metadata: {"aria": {"emoji": "🔎"}} --- # aria-unified-search Unified search engine that queries semantic memories (pgvector cosine), knowledge graph (ILIKE), and traditional memories (text match), then merges results via Reciprocal Rank Fusion (RRF) with content-hash deduplication. ## Architecture ``` Query ↓ (parallel to 3 backends) ├── SemanticBackend (pgvector cosi
tools
# aria-telegram Telegram Bot API integration skill. ## Purpose - Send and reply to messages through bot credentials. - Fetch updates and basic bot metadata. ## Main Tools - `send_message` - `reply_to_message` - `get_updates` - `get_me`
tools
# aria-sprint-manager Sprint planning and board flow management skill. ## Purpose - Operate goal board as Product Owner. - Move, prioritize, and report sprint progress. ## Main Tools - `sprint_status` - `sprint_plan` - `sprint_move_goal` - `sprint_report` - `sprint_prioritize`