Borrowing it
Nothing to install: this file belongs to GaoZimeng0425/NemoNotch. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/GaoZimeng0425/NemoNotch/main/CLAUDE.mdgit clone --depth 1 https://github.com/GaoZimeng0425/NemoNotchWrote 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/instructions/gaozimeng0425/nemonotch/claude-md)<a href="https://agentmods.dev/instructions/gaozimeng0425/nemonotch/claude-md"><img src="https://agentmods.dev/badge/instructions/gaozimeng0425/nemonotch/claude-md.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.17867 | $0.17867 |
| Opus 5 | $0.08933 | $0.08933 |
| Sonnet 5 | $0.03573 | $0.03573 |
| Haiku 4.5 | $0.01787 | $0.01787 |
Grade C, and why
NemoNotch CLAUDE.md scanned grade C with 2 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 8d 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.
Asks for rootmediumPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
**Ownership marker + reconciliation.** `~/.NemoNotch/keep-awake.enabled` records "we turned this on". Written *before* the `pmset` call, so a crash in between still leaves a trace the next launch can recognize. `KeepAwak Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
S["~/.claude/settings.json"] How it starts
The opening of the file, as written. The whole thing — 547 lines — stays where its author put it; the contents beside it link to each section on GitHub.
NemoNotch — CLAUDE.md
Project Overview
NemoNotch is a macOS notch utility that provides an interactive floating panel in the MacBook notch area, integrating media controls, calendar events, AI CLI monitoring (Claude Code / Gemini CLI / opencode / zcode), multi-agent monitoring (OpenClaw / Hermes-agent), and an app launcher.
Tech Stack
- Swift 6 + SwiftUI, macOS only, depends on CocoaLumberjack, KeyboardShortcuts, mediaremote-adapter (perl-bridge media control)
- Key frameworks: AppKit (NSWindow), MediaPlayer, EventKit, IOKit
Project Structure
NemoNotch/
├── NemoNotchApp.swift # Entry point, MenuBarExtra, global hotkeys, service assembly
├── Models/ # Data models (Tab, AppSettings, AIProvider, PlaybackState, MultiAgentMonitor, etc.)
├── Notch/ # Notch UI core (window, animation, event monitoring, TabBar, HUD)
├── Tabs/ # Tab content views (AIChatTab unifies AI sessions, AgentMonitorTab unifies agents)
├── Services/ # Background services (media, calendar, AI CLI, launcher, HermesService, etc.)
├── Settings/ # Settings UI
└── Helpers/ # Utilities (MarkdownRenderer, ClaudeCrabIcon, ToolStyles)
Architecture
Overview
graph TB
subgraph Entry["App Entry"]
App["NemoNotchApp<br/>@main"]
AD["AppDelegate<br/>Lifecycle & Service Assembly"]
end
subgraph Services["Service Layer — all @Observable"]
MS["MediaService<br/>MediaRemote (notifications) + NowPlayingCLI (read) + MediaRemoteCommander (control)"]
AIM["AICLIMonitorService<br/>Unified AI entry + owns AISessionStore"]
AISS["AISessionStore<br/>Central AI session truth source (@Observable)"]
CCS["ClaudeCodeService<br/>AIProvider impl<br/>HookServer + ConversationParser"]
GP["GeminiProvider<br/>AIProvider impl<br/>GeminiConversationParser"]
REG["AgentMonitorRegistry<br/>Unifies agent monitors"]
OCS["OpenClawService<br/>WebSocket client (MultiAgentMonitor)"]
HES["HermesService<br/>HTTP API client (MultiAgentMonitor)"]
CS["CalendarService<br/>EventKit"]
LS["LauncherService<br/>App search & launch"]
NS["NotificationService<br/>Dock Accessibility API"]
WS["WeatherService<br/>Open-Meteo primary + wttr.in fallback"]
UQS["UsageQuotaService<br/>Claude + Codex + Gemini usage quota"]
HUD["HUDService<br/>Volume/Brightness/Battery"]
KAS["KeepAwakeService<br/>pmset -a disablesleep via osascript admin auth<br/>owns LidMonitor (clamshell → display off)"]
SYS["SystemService<br/>CPU/memory/disk sampling (SystemTab)"]
TS["TaskStore<br/>Persistent TODO list (~/.NemoNotch/tasks.json)"]
PHS["PomodoroHistoryStore<br/>Append-only history (~/.NemoNotch/pomodoro-history.json)"]
PTS["PomodoroTimerService<br/>State machine + tick + end-alert pipeline"]
NPM["NotificationPermissionMonitor<br/>UNUserNotificationCenter probe"]
HK["Hotkeys.swift<br/>KeyboardShortcuts registration (AppDelegate.setupHotkeys)"]
CFS["CompletionFlashService<br/>Observes AISessionStore + AgentMonitorRegistry<br/>throttle/merge → drives flash + toast"]
end
subgraph NotchUI["Notch UI Layer"]
NC["NotchCoordinator<br/>Open/close state & animation"]
NW["NotchWindow<br/>NSPanel .statusBar+8"]
NV["NotchView<br/>SwiftUI main view"]
EM["EventMonitor<br/>Mouse event listener"]
CB["CompactBadge<br/>Collapsed icons"]
TB["TabBarView<br/>Tab navigation"]
HO["HUDOverlayView<br/>Volume/Brightness overlay"]
end
subgraph Tabs["Tabs"]
OT["OverviewTab<br/>Media + Calendar + Weather"]
AT["AIChatTab<br/>Claude + Gemini unified"]
LT["LauncherTab"]
OCT["AgentMonitorTab<br/>OpenClaw + Hermes unified"]
PT["PomodoroTab<br/>Idle stats + TODO list + active pie"]
ST["SystemTab"]
end
subgraph Settings["Settings"]
AS["AppSettings<br/>UserDefaults persistence"]
SW["SettingsWindow"]
SV["SettingsView"]
end
App --> AD
AD -->|"creates & owns"| Services
AD -->|"creates"| NC
AIM --> CCS
AIM --> GP
AIM -->|"owns"| AISS
CCS -.->|"mutate"| AISS
GP -.->|"mutate"| AISS
REG -->|"registers"| OCS
REG -->|"registers"| HES
NC --> NW --> NV
NV --> Tabs
NV --> CB
NV --> TB
NV --> HO
EM -->|"mouse events"| NC
HK -->|"hotkeys"| NC
AS --> SV
Services -.->|"@Environment injection"| NV
AS -.->|"@Environment injection"| NV
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.
- 8d ago First seen · 547 lines · 17,867 tokens per session scan C a6eba82a14dc
NemoNotch CLAUDE.md is an instructions file published in the GitHub repository GaoZimeng0425/NemoNotch (10 stars, last pushed yesterday), licensed MIT. It adds 17,867 tokens to every session, about $0.0893 per session on Opus 5. A static security scan graded it C with 2 findings (asks for root, reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.