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 skills/iblai/api/iblai-api-notificationnpx skills add iblai/api --skill iblai-api-notificationgit clone --depth 1 https://github.com/iblai/apiWhat 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 | $0.00103 | $0.02946 |
| Opus 5 | $0.00051 | $0.01473 |
| Sonnet 5 | $0.00021 | $0.00589 |
| Haiku 4.5 | $0.00010 | $0.00295 |
Grade A, and why
iblai-api-notification scanned grade A with 1 finding 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 3d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s \ How it starts
The opening of the file, as written. The whole thing — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.
iblai-api-notification
Read and send an organization's platform notifications via the API: the unread count, the notifications list with channel/status/tag filters, mark-as-read (all, bulk, or specific), delete, and the two-step notification builder (preview then send/schedule, with source validation and recipient preview). Also manage a user's notification preferences, per-user push-device (FCM) tokens and, for org admins, the email templates and SMTP config that back notifications.
Auth & conventions
- Base URL:
https://api.iblai.app - Header:
Authorization: Api-Token $IBLAI_API_KEYon every request. - Path vars:
{org}=$IBLAI_ORG,{username}=$IBLAI_USERNAME,{platform_key}= the org/platform key (usually$IBLAI_ORG),{type}= a notification-type key (e.g.USER_NOTIF_COURSE_ENROLLMENT),{build_id}= the id returned by the builder'spreview/step. - These are platform-level endpoints on the DM host; all paths below sit under
https://api.iblai.app/dm/api/notification/v1/(written…in this doc). - Not connected yet? Run
/iblai-api-loginfirst to populateIBLAI_ORG,IBLAI_USERNAME, andIBLAI_API_KEY.
Concepts
- Two-step builder. Sending a custom notification is
preview/→send/.preview/resolves recipients and returns abuild_id;send/takes thatbuild_idto actually send (or schedule, whenpreview/was given aprocess_ondatetime).validate_source/and{build_id}/recipients/let you check recipients before committing. - Source types. A builder
sourceis{ "type": …, "data": … }. Validtypevalues:email,username,platform,csv,department,pathway,program,usergroup.datais a list of identifiers (or, forcsv, an uploaded file — sendvalidate_source/as multipart). - Templates: platform toggle vs. per-user preference. A template is a
platform-admin object per notification
{type}(its subject/body/channels), andtemplates/{type}/toggle/enables or disables that type for the whole org. Separately, notification preferences are per-user (email/push on/off, frequency, per-type opt-outs). Both are distinct from marking messages read. - Template inheritance. Each template reports
is_inherited(using the main platform default vs. an org override),source_platform, andcan_customize.
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 3d ago First seen · 164 lines · 103 tokens per session scan A b222f927ee66
iblai-api-notification is a skill published in the GitHub repository iblai/api (15 stars, last pushed 4d ago), licensed MIT. It adds 103 tokens to every session and 2,946 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
token-economy
Use when implementing, debugging, or running long tool-using work sessions, or when the operator asks about "token waste", "session cost", "why is this so expensive", or runs "/token-waste-audit" — delivers FR-26's execution-time economy rules (scoped reads, no re-reads of unchanged in-context files, two-strike retry…
peon-ping-log
Log exercise reps for the Peon Trainer. Use when user says they did pushups, squats, or wants to log reps. Examples - "/peon-ping-log 25 pushups", "/peon-ping-log 30 squats", "log 50 pushups".
weekly-pacing
Analyzes the user's upcoming or current work week using Work IQ signals (calendar, email volume, and semantic themes) and produces a visualized pacing report — classifying each day as Rest, Light, Focus, or Heavy based on meeting load, back-to-back density, communication volume, and available deep-work time. Designed…
daily-journal
A passive daily work journal that Claude keeps FOR you so you never have to write it yourself. Append short entries after meaningful work (what was done, what you focused on, artifacts touched) to 01-daily/journal/YYYY-MM-DD.md. Run a guided reflection at night or in the morning. Use when you run /daily-journal, say…
icloud-calendar
List iCloud calendars and read, create, update, or delete iCloud Calendar events with the icloud-calendar CLI. Use for Apple or iCloud Calendar schedules and event changes, or when the user says "苹果日历"、"iCloud 日历"、"看看我 iCloud 上的安排".
searching-text
Use when searching for text patterns across files, finding specific code locations, or getting lines with surrounding context in a single call.