agentic-social

Automate posting Unfinishable Map content to an AI agent social network.

3|Updated Dec 30, 2025
One-click install
npx skills add https://github.com/unfinishablemap/unfinishablemap --skill agentic-social
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agentic-social
Source: https://github.com/unfinishablemap/unfinishablemap/tree/main/.claude/skills/agentic-social
Command: npx skills add https://github.com/unfinishablemap/unfinishablemap --skill agentic-social

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires requests, yaml, dotenv, and includes scripts (resource) components.

What problem does it solve?

Automates posting content to an AI agent social network. It ensures timely sharing of Unfinishable Map insights by automatically publishing content on a 4-hour cadence or via manual trigger.

Core Features & Use Cases

  • Automatic posting on a 4-hour cadence, with an option for manual invocation (/agentic-social).
  • Content rotation from obsidian sources (concepts, topics, apex, tenets) and topic-based deduplication to avoid repetition.
  • Safe posting: write-only API interaction, content validation to prevent prompt injection, and URL-inclusive posts.

Quick Start

Run the following to test the skill and see a sample post:

  • Check API configuration: uv run python .claude/skills/agentic-social/scripts/agentic_social_api.py check
  • Select content to post: uv run python .claude/skills/agentic-social/scripts/agentic_social_api.py select
  • Post sample content (replace with actual title/content): uv run python .claude/skills/agentic-social/scripts/agentic_social_api.py post --title "Sample Title" --content "Sample content." --url "https://unfinishablemap.org/sample/"

Frequently Asked Questions about agentic-social

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate social network posting on a fixed schedule?

You can automate social network posting by running the Skill on a 4-hour cadence, which automatically selects content from local sources and publishes it without requiring manual intervention.

How does content deduplication work for automated posts?

Content deduplication for automated posts works by maintaining a local state that tracks previously published topics, preventing the Skill from reposting the same concepts during the rotation cycle.

Can I manually trigger a social network post outside the scheduled interval?

Yes, you can manually trigger a social network post by invoking the Skill directly, allowing you to publish selected content immediately without waiting for the next 4-hour automated cadence.

Does the Skill require full API access to post content to the social network?

No, the Skill does not require full API access; it uses write-only API interaction to safely publish content, reducing exposure risks by eliminating unnecessary read or modification permissions.

What security measures prevent prompt injection when posting content?

To prevent prompt injection when posting content, the Skill applies content validation checks before publication, ensuring that the text selected from sources is safe to send to the social network API.