Publier la session sur GitHub Gist

VérifiéPrudence

Publie la transcription de la session en cours sur un GitHub Gist. Vérifie également les mises à jour du plugin et informe l'utilisateur si une nouvelle version est disponible.

Spar Skills Guide Bot
DocumentationDébutant
6002/06/2026
Claude Code
#publish#session#gist#transcript#plugin

Recommandé pour

Notre avis

Publie la transcription de la session en cours sous forme d'un Gist GitHub.

Points forts

  • Partage facile de la session via un lien
  • Automatisation de la publication
  • Vérification intégrée des mises à jour du plugin

Limites

  • Ne fonctionne qu'avec le plugin Claude
  • Le Gist est public par défaut
  • Ne publie que la session active
Quand l'utiliser

Utilisez cette compétence lorsque vous souhaitez partager rapidement l'intégralité de votre session Claude avec d'autres.

Quand l'éviter

Évitez de l'utiliser pour des transcriptions contenant des informations sensibles ou si vous n'avez pas de connexion Internet.

Analyse de sécurité

Prudence
Score qualité85/100

The skill executes Python scripts from the plugin's own directory, which reduces the risk of arbitrary code execution. However, the core action is publishing session transcripts to a public or private Gist, which could inadvertently expose secrets, tokens, or sensitive discussion. The skill does not sanitize or warn about content, making it a cautionary listing.

Points d'attention
  • Skill runs Python scripts that may publish session content to external service (GitHub Gist), risking leakage of sensitive data if the transcript contains secrets.
  • Uses Bash(python3:*) which grants unrestricted Python execution, though limited to scripts within the plugin root.

Exemples

Publish to Gist
Publish this session to a GitHub Gist.
Check for updates
Check if there are any updates for the plugin.

name: publish-session description: Publish the current session transcript to a GitHub Gist disable-model-invocation: true allowed-tools: Bash(python3:*) model: haiku

Publish the current session transcript by running:

python3 ${CLAUDE_PLUGIN_ROOT}/commands/publish/scripts/publish_session.py ${CLAUDE_SESSION_ID}

Then check for plugin updates:

python3 ${CLAUDE_PLUGIN_ROOT}/commands/publish/scripts/check_version.py

If there's a new version available, inform the user (they should be able to upgrade by running the /plugin command and then navigating to the Installed tab). Don't say a single thing if the plugin is up-to-date.

Skills similaires