Best use case
CFN Marketing Social Publishing Skill is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
## Purpose
Teams using CFN Marketing Social Publishing Skill should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/cfn-marketing-social-publishing/SKILL.md --create-dirs "https://raw.githubusercontent.com/masharratt/claude-flow-novice/main/.claude/cfn-extras/skills/marketing/cfn-marketing-social-publishing/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/cfn-marketing-social-publishing/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How CFN Marketing Social Publishing Skill Compares
| Feature / Agent | CFN Marketing Social Publishing Skill | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
## Purpose
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# CFN Marketing Social Publishing Skill
## Purpose
Manage social media publishing through n8n workflow integration. Create, schedule, and analyze social media posts across multiple platforms.
## Operations
### 1. create-post.sh
Create a new social media post.
**Parameters:**
- `--content` (required): Post text content
- `--platforms` (required): Comma-separated platforms (facebook,twitter,linkedin,instagram)
- `--media-ids` (optional): Comma-separated media attachment IDs
- `--link` (optional): URL to include in post
- `--hashtags` (optional): Comma-separated hashtags
**Example:**
```bash
./operations/create-post.sh \
--content "Check out our new product launch!" \
--platforms "facebook,twitter,linkedin" \
--media-ids "media-123,media-456" \
--link "https://company.com/product" \
--hashtags "ProductLaunch,Innovation"
```
### 2. schedule-post.sh
Schedule post publication.
**Parameters:**
- `--post-id` (required): Post identifier
- `--schedule-time` (required): ISO 8601 datetime
- `--timezone` (optional): Timezone (default: UTC)
**Example:**
```bash
./operations/schedule-post.sh \
--post-id "post-789" \
--schedule-time "2025-11-01T14:00:00Z" \
--timezone "America/Los_Angeles"
```
### 3. upload-media.sh
Upload media for social posts.
**Parameters:**
- `--file-path` (required): Local file path
- `--media-type` (required): Type (image, video, gif)
- `--alt-text` (optional): Accessibility description
**Example:**
```bash
./operations/upload-media.sh \
--file-path "/path/to/image.jpg" \
--media-type "image" \
--alt-text "Product showcase image"
```
### 4. get-post-stats.sh
Retrieve post engagement statistics.
**Parameters:**
- `--post-id` (required): Post identifier
**Example:**
```bash
./operations/get-post-stats.sh --post-id "post-789"
```
### 5. delete-post.sh
Delete a scheduled or published post.
**Parameters:**
- `--post-id` (required): Post identifier
- `--platforms` (optional): Specific platforms to delete from (default: all)
**Example:**
```bash
./operations/delete-post.sh \
--post-id "post-789" \
--platforms "facebook,twitter"
```
## N8N Integration
All operations invoke n8n workflows via HTTP POST to endpoints configured in `.env`:
- `N8N_BASE_URL`: Base URL for n8n instance
- `N8N_API_KEY`: Authentication key
## Error Handling
Scripts return:
- Exit code 0: Success
- Exit code 1: Parameter validation error
- Exit code 2: Network/API error
- Exit code 3: Authentication error
## Response Format
All operations return JSON with structure:
```json
{
"success": true,
"data": { ... },
"message": "Operation completed successfully"
}
```Related Skills
We are still matching the closest adjacent skills for this page. In the meantime, continue through the full directory.