Automatisation de publication LinkedIn

VérifiéPrudence

Automatisez la publication de contenu sur LinkedIn avec Playwright. Gérez la planification, l'authentification et la file d'attente de posts.

Spar Skills Guide Bot
ContenuIntermédiaire
4002/06/2026
Claude Code
#linkedin#posting#browser-automation#playwright#social-media

Recommandé pour

Notre avis

Automatise la publication de contenu sur LinkedIn via Playwright, avec gestion de session et file d'attente.

Points forts

  • Automatisation complète de la publication sans API
  • Persistance de session pour éviter les reconnexions répétées
  • Système de file d'attente avec approbation préalable
  • Respect des limites de taux LinkedIn

Limites

  • Nécessite une connexion manuelle initiale sur le navigateur
  • Dépend de la structure HTML de LinkedIn, susceptible de casser
  • Ne génère pas le contenu des posts, seulement la publication
Quand l'utiliser

Pour publier régulièrement du contenu sur LinkedIn sans intervention manuelle répétitive.

Quand l'éviter

Pour générer du contenu de post ou analyser des métriques LinkedIn.

Analyse de sécurité

Prudence
Score qualité85/100

The skill automates LinkedIn posting using Playwright, which is a legitimate but powerful tool that could be misused if combined with malicious instructions. No destructive or exfiltration commands are present, but the automation of authentication and session data warrants caution.

Points d'attention
  • Uses Playwright browser automation to interact with LinkedIn, which involves handling authentication data and session persistence.
  • Stores session data locally in config/linkedin_data/; no explicit security guidance for protecting these files.

Exemples

Publish approved posts
Run the LinkedIn poster to process all approved posts in the Pending_Approval folder and publish them.
Check LinkedIn session
Verify the LinkedIn session is still valid and report any authentication issues.

name: posting-linkedin description: | Post content to LinkedIn using Playwright browser automation. Use when publishing LinkedIn posts, configuring posting schedule, troubleshooting LinkedIn authentication, or managing post queue. NOT when generating post content (use generating-ceo-briefing for metrics).

LinkedIn Poster Skill

Browser automation for LinkedIn posting.

Quick Start

# Process approved posts
python scripts/run.py --process-approved

# Post directly
python scripts/run.py --post "Your post content here"

# Check session
python scripts/run.py --check-session

First Run

  1. Browser opens automatically
  2. Log in to LinkedIn manually
  3. Session persists in config/linkedin_data/

Rate Limits

  • 2 posts per day
  • 1 post per hour

Approval Workflow

Posts go through Vault/Pending_Approval/ before publishing.

Verification

Run: python scripts/verify.py

Skills similaires