Social Post Generator Agent

v1.0.0

Take a blog post URL or text and generate social media posts from it. Use when repurposing content for Twitter, LinkedIn, or creating promotional posts.

0· 128·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for kryzl19/social-post-generator-agent.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Social Post Generator Agent" (kryzl19/social-post-generator-agent) from ClawHub.
Skill page: https://clawhub.ai/kryzl19/social-post-generator-agent
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: curl
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install social-post-generator-agent

ClawHub CLI

Package manager switcher

npx clawhub@latest install social-post-generator-agent
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (generate social media posts from an article) matches the provided scripts and declared requirement (curl). Requiring curl is appropriate because the scripts fetch URLs.
Instruction Scope
Runtime instructions are scoped to reading an input URL or file, fetching content with curl, extracting text, and printing generated posts. Minor inconsistencies: SKILL.md mentions a --dry-run flag but none of the scripts implement option parsing for --dry-run; SKILL.md also mentions 'web_fetch' while the scripts use curl (equivalent in effect). The scripts only read the provided input file/URL and create a local cache directory under the skill directory; they do not transmit data to third-party endpoints beyond the initial curl fetch of the user-supplied URL.
Install Mechanism
No install spec; instruction-only plus included shell scripts. Nothing is downloaded or written outside the skill's directory except the created cache directory. This is low-risk compared with remote installers.
Credentials
No required secrets or credentials. The scripts honor optional environment variables documented in SKILL.md (PLATFORM, TONE, BRAND_NAME, HASHTAGS). No unrelated env vars or credential access is requested.
Persistence & Privilege
always is false and the skill does not request elevated persistence. Scripts create and use a cache directory under the skill folder only and do not modify system or other-skill configuration.
Assessment
This skill is internally consistent and appears benign, but review before use: 1) The scripts fetch whatever URL you pass with curl — avoid pointing it at internal/private endpoints or URLs that require authentication (could leak internal content to the terminal). 2) The SKILL.md mentions a --dry-run flag, but the provided scripts don't implement it; expect the scripts to always print output and create a cache directory under the skill folder. 3) The scripts use grep -P (PCRE); some environments' grep builds lack -P and extraction may fail. 4) No credentials are requested, but generated content comes from source text — check that source content doesn't contain sensitive PII you wouldn't want copied into social posts. If you plan to run this in an automated agent with network access, consider the implications of allowing the agent to fetch arbitrary URLs.

Like a lobster shell, security has layers — review code before you run it.

Runtime requirements

Binscurl
automationvk971f89f69qx6dtcb1gcecvhs583jerncontentvk971f89f69qx6dtcb1gcecvhs583jernlatestvk971f89f69qx6dtcb1gcecvhs583jernsocialvk971f89f69qx6dtcb1gcecvhs583jerntwittervk971f89f69qx6dtcb1gcecvhs583jern
128downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Social Post Generator

Transform blog posts and articles into social media content — tweets, LinkedIn posts, and viral hooks.

Environment Variables

VariableRequiredDefaultDescription
PLATFORMNotwitterTarget platform: twitter or linkedin
TONENoprofessionalTone of voice: professional, casual, or technical
BRAND_NAMENoBrand/person name for attribution
HASHTAGSNoComma-separated default hashtags

Scripts

generate.sh — Generate Posts

Generates 5 social media posts from an article URL or text.

./scripts/generate.sh <url_or_text_file>

Output: 5 formatted posts ready to publish.

thread.sh — Create Twitter Thread

Generates a thread of connected tweets from an article.

./scripts/thread.sh <url_or_text_file>

Output: Numbered thread tweets with proper formatting.

hook.sh — Create Viral Hooks

Generates attention-grabbing opening hooks for social posts.

./scripts/hook.sh <url_or_text_file>

Output: 10 hook variations to test.

Usage Example

export PLATFORM=twitter
export TONE=casual
export BRAND_NAME="MyBrand"

# Generate 5 tweets from an article
./scripts/generate.sh https://example.com/blog/post

# Create a thread
./scripts/thread.sh article.txt

# Get viral hooks
./scripts/hook.sh article.txt

Notes

  • Uses web_fetch to extract content from URLs
  • Each platform has character limits (Twitter: 280, LinkedIn: 3000)
  • Generates hashtag suggestions based on content
  • Output is copy-paste ready with line breaks
  • Add --dry-run to any script to preview without saving

Comments

Loading comments...