Notifier l'interface web

VérifiéSûr

Envoie des notifications toast à l'interface web lorsque l'IA crée du contenu nécessitant une révision de l'utilisateur. Utile pour signaler de nouveaux documents, projets, flux de travail ou notes de réunion qui demandent une attention immédiate.

Spar Skills Guide Bot
ProductiviteIntermédiaire
14002/06/2026
Claude Code
#notifications#web-ui#toast#content-review#productivity

Recommandé pour

Notre avis

Envoie des notifications toast à l'interface web lorsque l'IA crée du contenu nécessitant une révision.

Points forts

  • Notifications en temps réel pour les contenus à réviser
  • Bouton 'Ouvrir' pour accéder directement au fichier
  • Prise en charge de plusieurs types de contenu (document, projet, etc.)
  • Message optionnel pour ajouter du contexte

Limites

  • Nécessite un serveur en cours d'exécution sur localhost:3004
  • L'interface web doit être connectée pour recevoir les notifications
  • Non adapté aux modifications incrémentales ou aux fichiers système internes
Quand l'utiliser

Lorsque vous créez un nouveau document, projet ou compte-rendu qui nécessite une validation humaine.

Quand l'éviter

Pour des mises à jour de routine ou des modifications incrémentales sur des fichiers existants.

Analyse de sécurité

Sûr
Score qualité90/100

The skill runs a predefined script that sends a notification to a local web UI via HTTP. It does not perform destructive actions, exfiltrate data, or execute arbitrary commands. The allowed tool is restricted to the specific script path, and all inputs are safe parameters for a notification API. No meaningful execution risk.

Aucun point d'attention détecté

Exemples

Notify new document
Run the notify-web skill to send a toast notification that I've created a new strategy document at anthropic/documents/q4-strategy.md.
Notify new project
Use the notify-web skill with type project, title 'Auth System Redesign', file path anthropic/projects/auth-system/README.md, and message 'Ready for review'.
Notify meeting notes
Trigger a notification for meeting notes at anthropic/meetings/2026/01/standup.md using type meeting-notes and title 'Team Standup'.

name: notify-web description: Notify the web UI when AI creates content that needs user review. allowed-tools: Bash(.claude/skills/notify-web/scripts/notify-web.sh:*)

Notify Web Skill

Send toast notifications to the web UI when you create content that the user should review.

When to Use

Use this skill when you create content that requires user attention:

  • New documents (summaries, analyses, reports)
  • New workstreams or projects
  • Meeting notes
  • Any content the user should review or approve

Do NOT use for:

  • Routine diary entries
  • Memory/context updates
  • Internal system files
  • Incremental changes to existing files

Usage

# Basic notification
.claude/skills/notify-web/scripts/notify-web.sh <type> "<title>" "<file-path>" ["message"]

# Examples
.claude/skills/notify-web/scripts/notify-web.sh document "Q4 Strategy Summary" "anthropic/documents/q4-strategy.md"
.claude/skills/notify-web/scripts/notify-web.sh project "New Authentication System" "anthropic/projects/auth-system/README.md" "Ready for your review"
.claude/skills/notify-web/scripts/notify-web.sh meeting-notes "Team Standup Notes" "anthropic/meetings/2026/01/standup.md"
.claude/skills/notify-web/scripts/notify-web.sh workstream "API Redesign" "anthropic/workstreams/api-redesign/README.md"

Content Types

| Type | Description | Example | |------|-------------|---------| | document | General documents, summaries, analyses | Reports, briefs, research docs | | workstream | New workstream created | Long-running initiatives | | project | New project created | Focused deliverables | | meeting-notes | Meeting notes or summaries | Standup notes, 1:1 summaries | | other | Anything else worth reviewing | Miscellaneous content |

Parameters

  1. type (required): One of document, workstream, project, meeting-notes, other
  2. title (required): Human-readable title for the notification
  3. file-path (required): Path to the file relative to KB root (used for "Open" button)
  4. message (optional): Additional context shown in the toast

What Happens

  1. The script calls the server's notification API
  2. Connected web clients receive the notification via Socket.IO
  3. A toast appears in the bottom-right corner for 10 seconds
  4. User can click "Open" to navigate directly to the content

Requirements

  • Server must be running on localhost:3004 (or TASK_SERVICE_URL)
  • Web UI must be connected to receive notifications
Skills similaires