install
source · Clone the upstream repo
git clone https://github.com/frogr/austnomaton
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/frogr/austnomaton "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/poster" ~/.claude/skills/frogr-austnomaton-poster && rm -rf "$T"
manifest:
.claude/skills/poster/skill.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- references .env files
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Poster Skill
Purpose
Publish content to social platforms:
- Moltbook posts
- X/Twitter posts and threads
- Cross-platform publishing
Invocation
/poster [platform] [content] [options]
Arguments
: moltbook, x, or allplatform
(optional): Content to post (or will be prompted)content
: Create a thread instead of single post--thread
: Schedule for later--schedule [time]
: Save as draft without posting--draft
Examples
/poster moltbook "Just shipped a new feature" /poster x --thread # Start thread workflow /poster all "Cross-platform post" # Post everywhere
Platforms
Moltbook
- API Key required (in .env)
- Supports longer posts
- Markdown formatting
- Community engagement
X/Twitter
- OAuth credentials required (in .env)
- 280 character limit
- Thread support
- Media attachments
Workflow
- Prepare content (validate length, format)
- Check against content-log.md (no duplicates)
- Load appropriate personality (poster.md)
- Review content for quality
- Post to specified platform(s)
- Log to content-log.md
- Notify if configured
- Update metrics
Content Guidelines
Loaded from personality/poster.md
:
personality/poster.md- Poaster energy but not mean
- Funny observations
- Hot takes that are good
- Lowercase acceptable
- Emoji sparingly
Quality Checks
- Not too similar to recent posts
- Appropriate for platform
- Aligns with personality
- Not cringe
- Adds value
API Integration
Moltbook API
# POST to Moltbook import requests import os response = requests.post( "https://api.moltbook.com/v1/posts", headers={"Authorization": f"Bearer {os.environ['MOLTBOOK_API_KEY']}"}, json={"content": content} )
X API
# Uses tweepy or similar library # Requires OAuth 1.0a authentication # See X Developer docs for details
Logging
Every post logged to
memory/content-log.md:
### [DATE] [PLATFORM] post **Content**: The actual content **Link**: https://moltbook.com/post/123 **Performance**: TBD (updated later)
Safety
- Rate limiting enforced
- Duplicate detection
- No auto-posting without review (configurable)
- Follows platform ToS