Agent skill
post-facebook
Create and post content on Facebook to generate business visibility and leads. Drafts posts based on business goals, creates approval requests, and publishes via Playwright browser automation after human approval. Also generates weekly engagement summaries from Facebook notifications in /Needs_Action. Use when scheduled to post, when the user requests a Facebook post, or for generating a summary of Facebook activity.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/post-facebook
SKILL.md
Post to Facebook / Generate Facebook Summary
Create and publish Facebook posts, or summarize Facebook activity for the CEO Briefing.
Workflow A: Post to Facebook
1. Generate Post Content
Read vault/Business_Goals.md to understand current business objectives.
Draft a Facebook post that:
- Highlights business expertise or achievements
- Provides value to the target audience
- Includes a call-to-action when appropriate
- Stays professional and on-brand
- Is 100-250 words (optimal Facebook length for pages)
2. Create Approval Request
All Facebook posts require human approval before publishing.
Create an approval file in vault/Pending_Approval/:
---
type: approval_request
request_id: "YYYYMMDD_HHMMSS_facebook_post"
action: facebook_post
priority: medium
created: ISO-8601
expires: ISO-8601 (24 hours from creation)
status: pending
details:
platform: "facebook"
content_preview: "First 100 chars of post..."
---
# Approval Required: Facebook Post
## Proposed Post Content
[Full post text here]
## How to Respond
- **To Approve**: Move this file to the `/Approved` folder
- **To Reject**: Move this file to the `/Rejected` folder
3. Publish (After Approval)
Once the file appears in vault/Approved/:
-
Start Playwright MCP if not running:
bashbash .claude/skills/browsing-with-playwright/scripts/start-server.sh -
Navigate to Facebook:
bashpython3 .claude/skills/browsing-with-playwright/scripts/mcp-client.py call \ -u http://localhost:8808 -t browser_navigate \ -p '{"url": "https://www.facebook.com/"}' -
Click "What's on your mind" / create post button, type content, and post.
-
Verify success by checking for confirmation.
4. Log the Action
Write to vault/Logs/YYYY-MM-DD.json:
{
"timestamp": "ISO-8601",
"action_type": "facebook_post_published",
"actor": "claude_code",
"platform": "facebook",
"content_preview": "First 100 chars...",
"approval_status": "approved",
"approved_by": "human",
"result": "success"
}
Workflow B: Generate Facebook Activity Summary
1. Scan /Needs_Action
Read all FACEBOOK_*.md files in vault/Needs_Action/.
2. Categorize Notifications
Group by type:
- Messages (high priority)
- Friend/Page requests (medium priority)
- Engagement: likes, comments, shares (low priority)
- Business/Page analytics (medium priority)
3. Write Summary
Create a summary in vault/Briefings/FACEBOOK_Summary_YYYYMMDD.md with:
- Total notification count
- Messages requiring response
- Engagement metrics
- Recommendations for follow-up
4. Log the Action
{
"timestamp": "ISO-8601",
"action_type": "facebook_summary_generated",
"actor": "claude_code",
"result": "success"
}
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?