desktop-notifications
Read recent desktop notifications from a JSON history file written by a notification-history daemon.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Read recent desktop notifications from a JSON history file written by a notification-history daemon.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Look up encyclopedic facts and article text from Wikipedia via the public MediaWiki API
Resolve entities, fetch structured facts, and run SPARQL queries against Wikidata
Determine the user's current location from GeoClue data
Search places, find nearby POIs, and get driving directions using OpenStreetMap
Onboard or reconfigure other pi-chat skills (URLs, usernames, credentials) by triggering a popup that the user fills in directly — values never travel through chat.
Get the current date and time to answer time-related questions
| name | Desktop notifications |
| description | Read recent desktop notifications from a JSON history file written by a notification-history daemon. |
The user's notification history is exposed by the notifications CLI. The
CLI reads a JSON history file in a stable schema (every notification the
desktop has received, capped at the 100 most recent entries, ordered
newest-first). It does not capture notifications itself — a separate
notification-history daemon must write the file.
On spaces the writer is not bundled out of the box. If the user runs
noctalia the skill
auto-picks up its history file (~/.cache/noctalia/notifications.json).
Otherwise the CLI returns (no notifications) and you should tell the user
the skill needs a writer wired up.
Use this skill whenever the user asks anything about what they missed, what just popped up, who messaged them, or any other question that maps onto recent desktop activity.
notifications list
Default text format, newest first. One block per entry, three lines:
2026-05-20T17:42:30Z Ferdium normal id=bb35b94f
flokli (Pradille Geek Week 2026)
@hsngrmpf:matrix.org: meet at the station
Fields: ISO-8601 UTC timestamp · originating app · urgency
(low / normal / critical) · short id. Use the id with notifications get
when you need the full body or other fields.
notifications list --limit 5
notifications list --app Slack # case-insensitive exact match
notifications list --since 1779200000000 # unix ms; drops anything older
notifications list --urgency critical # low | normal | critical (or 0/1/2)
Combine flags as needed; filters compose left-to-right.
notifications list --json --limit 10
Emits the raw entries as a JSON array. Each entry includes every field
the writer persisted (actionsJson, cachedImage, originalId, etc.), so
parse this when you need anything beyond app / summary / body / urgency.
notifications get <id>
<id> may be a prefix — eight hex characters is plenty since the ring is
capped at 100 entries. Add --json for the full raw record. Exit code is
non-zero (and stderr explains why) when no entry matches or the prefix is
ambiguous.
date -u +%s%3N etc.) for "since this morning",
"in the last hour", and similar windows.2 (critical) is what apps reserve for things you really should
read — battery, security alerts, missed calls. Surface those first when
summarising.notifications list returns (no notifications) rather than failing,
so it is safe to call without a preflight check.