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.
npx agentmods add commands/advenimus/conduit-desktop/notificationgit clone --depth 1 https://github.com/advenimus/conduit-desktopWrote 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.
[](https://agentmods.dev/commands/advenimus/conduit-desktop/notification)<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>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.
| Model | Per session | Once 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 |
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.
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
ToastContaineris mounted inApp.tsxviaNotificationStack(bottom-right, fixedw-sm) - The credential picker window has its own
ToastContainerinCredentialPickerApp.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");
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.
- 5d ago First seen · 134 lines · 0 tokens per session scan A 50eaa1cf6b98
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.
Other commands, from other repositories
generate-prd
Generate a comprehensive Product Requirements Document for the following feature.
plan
Take the following feature description and create a comprehensive, structured implementation plan.
execute-prd
Implement a feature by following a Product Requirements Document step by step.
pulse-check
Pulse and worker utilisation diagnostics across repos.json, with self-improvement recommendations.
auto-browse
Auto-browse — learn, optimize, and graduate browser operations or web data-mining workflows.
video
Route work to the Video primary agent.