Install
$ agentstack add skill-jrr996shujin-png-content-matrix-skills-content-matrix ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Content Matrix — Cross-Platform Content Distribution
Trigger
Activate when user mentions:
- "distribute content", "cross-platform", "content matrix"
- "post to LinkedIn / X / Reddit / Xiaohongshu"
- "generate social media versions"
- "multi-platform publishing"
- "发帖", "内容分发", "跨平台"
Quick Start
Generate content for all platforms
python3 {baseDir}/skills/content_adapter.py "Your mother content here"
Generate for specific platforms
python3 {baseDir}/skills/content_adapter.py "Content" --platforms x,reddit,linkedin
Preview cost before generating
python3 {baseDir}/skills/content_adapter.py "Content" --plan
Publishing
LinkedIn (Free — API)
# First-time setup
python3 {baseDir}/skills/publishers/linkedin_publisher.py --setup
# Publish
python3 {baseDir}/skills/publishers/linkedin_publisher.py --text "Your post"
X / Twitter (~$0.01/tweet)
# Requires: TWITTER_API_KEY, TWITTER_API_SECRET, TWITTER_ACCESS_TOKEN, TWITTER_ACCESS_SECRET
python3 {baseDir}/skills/publishers/x_publisher.py "Your tweet"
# Thread
python3 {baseDir}/skills/publishers/x_publisher.py --thread "Tweet 1" "Tweet 2" "Tweet 3"
Reddit (Free — Browser Automation, macOS only)
# Requires: Chrome with "Allow JavaScript from Apple Events" + logged into Reddit
python3 {baseDir}/skills/publishers/reddit_publisher.py --check-login
python3 {baseDir}/skills/publishers/reddit_publisher.py --title "Title" --body "Body" --subreddit test
Note: New Reddit accounts trigger CAPTCHA. Use reddit-cultivate skill to build karma first.
AI Model Support
# OpenAI (default, ~$0.01)
python3 {baseDir}/skills/content_adapter.py "Content"
# DeepSeek (cheapest, ~$0.001)
python3 {baseDir}/skills/content_adapter.py "Content" --base-url https://api.deepseek.com --model deepseek-chat
# Claude
python3 {baseDir}/skills/content_adapter.py "Content" --provider anthropic
# Ollama local (free)
python3 {baseDir}/skills/content_adapter.py "Content" --base-url http://localhost:11434/v1 --model llama3
Configuration
Personal Style (important!)
Edit {baseDir}/configs/my_style.json — paste your old posts so AI learns your voice.
Platform Rules
{baseDir}/configs/platform_rules.json — content rules per platform. Usually no need to edit.
Publish Timing
{baseDir}/configs/publish_timing.json — best posting times and order.
Engagement Tracking
python3 {baseDir}/skills/engagement_tracker.py add --platform reddit --url "https://reddit.com/r/..."
python3 {baseDir}/skills/engagement_tracker.py check
python3 {baseDir}/skills/engagement_tracker.py report
Dependencies
- Python 3.8+
- openai (
pip install openai) - tweepy (
pip install tweepy) — for X publishing - requests (
pip install requests) — for LinkedIn publishing
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: jrr996shujin-png
- Source: jrr996shujin-png/content-matrix-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.