# Phy Social Suite

> Unified social media content pipeline. One command runs the full flywheel — pulls relevant content atoms from your library, audits AI signature (LinkedIn 360Brew detection), pre-flight checks platform-specific invisible rules, and outputs a combined PASS/FAIL verdict with specific fixes. Chains phy-content-compound + phy-content-humanizer-audit + phy-platform-rules-engine into a single pre-publish gate. Supports LinkedIn, Reddit, Twitter/X, HackerNews. Zero external dependencies.

- Skill: `knownasnaffy/phy-social-suite-2` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add knownasnaffy/phy-social-suite-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/knownasnaffy/phy-social-suite-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: Apache-2.0
- Author: knownasnaffy (https://skillmd.com/u/knownasnaffy)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/knownasnaffy/phy-social-suite-2

---


# phy-social-suite — One Command, Full Content Pipeline

Run the entire social media flywheel in one command:

```bash
# Full pipeline: atoms + AI audit + platform rules
python3 ~/.claude/skills/phy-social-suite/scripts/social_suite.py \
  --file draft.txt --platform linkedin \
  --library ~/Desktop/content-ideas/ --topic "developer tools"

# Quick check (no library)
echo "My post" | python3 ~/.claude/skills/phy-social-suite/scripts/social_suite.py --platform reddit
```

## What It Runs

| Stage | Skill | What It Does |
|-------|-------|-------------|
| 1 | `phy-content-compound` | Finds relevant atoms from your past content |
| 2 | `phy-content-humanizer-audit` | Checks AI signature (8 dimensions) |
| 3 | `phy-platform-rules-engine` | Pre-flight platform rules (28 rules) |
| Verdict | Combined | PASS/WARN/FAIL with specific fixes |

## Requirements

Install the 3 component skills first:
- `phy-content-compound`
- `phy-content-humanizer-audit`
- `phy-platform-rules-engine`

If any are missing, the suite skips that stage and notes it in the output.

## Companion Skills

| Skill | Role in Pipeline |
|-------|-----------------|
| `phy-post-forensics` | Run AFTER posting to analyze what worked |

