notification

notification is a command for Claude Code from advenimus/conduit-desktop. It costs 0 tokens per session (1,308 once invoked), scanned A, original, Apache-2.0.

A notification command for showing messages through Conduit's shared toast system. Toasts are brief on-screen messages such as success, error, warning, or progress notices.

In plain words
What is it for?
Use it to show success, error, warning, and information messages, including optional details, action buttons, or messages that stay visible until dismissed.
Why use it?
It keeps user-facing notifications in one consistent system and avoids separate alert components or browser alert boxes.

Command for Claude Code

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/advenimus/conduit-desktop/notification
Clone the repo
git clone --depth 1 https://github.com/advenimus/conduit-desktop

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for notification

README.md
[![agentmods](https://agentmods.dev/badge/commands/advenimus/conduit-desktop/notification.svg)](https://agentmods.dev/commands/advenimus/conduit-desktop/notification)
Your own site
<a href="https://agentmods.dev/commands/advenimus/conduit-desktop/notification"><img src="https://agentmods.dev/badge/commands/advenimus/conduit-desktop/notification.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,308 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01308
Opus 5 $0.00000 $0.00654
Sonnet 5 $0.00000 $0.00262
Haiku 4.5 $0.00000 $0.00131

Measured 5d ago against content hash 50eaa1cf6b98, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

notification scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/commands/notification.md · 134 lines

How it starts

The opening of the file, as written. The whole thing — 134 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Use the unified toast notification system for all user-facing notifications in Conduit.

Rules

  • NEVER create inline notification UI, custom alert components, or window.alert() calls
  • ALWAYS import from src/components/common/Toast.tsx
  • The ToastContainer is mounted in App.tsx via NotificationStack (bottom-right, fixed w-sm)
  • The credential picker window has its own ToastContainer in CredentialPickerApp.tsx

API Reference

import { toast } from "./components/common/Toast";
// Types: ToastType, ToastAction, ToastOptions, ToastProgress are exported

// Basic — second param is optional message string
toast.success("Password copied");
toast.error("Connection failed", "Check your credentials");
toast.warning("Session disconnected");
toast.info("Processing complete");

// With action buttons — second param is ToastOptions object
toast.error("Entry limit reached", {
  message: "Upgrade your plan to add more connections",
  actions: [
    { label: "Upgrade", variant: "primary", onClick: () => openPricing() },
    { label: "Dismiss", variant: "default", onClick: () => {} },
  ],
});

// Persistent (no auto-dismiss, user must close or call dismiss)
const id = toast.info("Uploading...", { persistent: true });

// Programmatic dismiss
toast.dismiss(id);

// Update an existing toast in-place (does NOT reset auto-dismiss timer)
toast.update(id, {
  title: "Almost done...",
  message: "Processing final batch",
  progress: { percent: 90, leftLabel: "Step 3/3", rightLabel: "900 KB / 1 MB" },
});

// Custom duration (default is 5000ms)
toast.success("Saved", { duration: 3000 });

// Dismiss on action click (default: true)
toast.info("New version available", {
  actions: [{ label: "Details", variant: "primary", onClick: showChangelog }],
  dismissOnAction: false, // keep toast visible after clicking
});

// With progress bar
const progressId = toast.info("Downloading files", {
  persistent: true,
  progress: {
    percent: 0,
    leftLabel: "File 1/3 — Downloading",
    rightLabel: "0 B / 12.5 MB",
  },
});

// Update progress
toast.update(progressId, {
  progress: {
    percent: 45,
    leftLabel: "File 1/3 — Downloading",
    rightLabel: "5.6 MB / 12.5 MB",
    speed: "2.1 MB/s",
  },
});

// Complete — dismiss progress toast, show success
toast.dismiss(progressId);
toast.success("Files downloaded", "3 files copied to clipboard");

Read the full file on GitHub · 134 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 134 lines · 0 tokens per session scan A 50eaa1cf6b98

Subscribe to this mod's changes

notification is a command published in the GitHub repository advenimus/conduit-desktop (11 stars, last pushed 2d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,308 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.