Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Observe facts, not promises — prefer kernel/runtime event streams (docker events, inotify, K8s watch, fanotify, journald) over application-level webhooks/callbacks. Use when designing reactive integrations to external system events, building event-driven architectures, and avoiding silent integration failures across version upgrades.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 16% | 0% |
| case-01 | ✗→✓ | ▲ Improved | -17% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 21% | 0% |
| case-13 | ✗→✓ | ▲ Improved | 10% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 18% | 0% |
When designing a reactive integration to an external system event (container deployment, Kubernetes state change, queue message, OS-level file change), prefer primitive event streams (kernel-level or runtime-level — docker events, inotify, Kubernetes watch API, fanotify, journald) over application-level callbacks (webhooks, SDK callbacks, HTTP API polling).
Primitive events describe facts. They are generated by the kernel or runtime and represent something that actually occurred in the system. The contract between your integration and the event source is stable across versions because it is enforced at the infrastructure layer, not the application layer.
Webhooks describe promises. They are contracts the application makes to notify you when something happens. Promises break silently:
The fragility gap: a webhook depends on the application continuing to implement and maintain the notification contract. A primitive event stream depends only on the infrastructure remaining functional—which it must, or the entire system fails anyway.
inotify (Linux) or fanotify (Linux, more recent) to observe kernel-level file events. These are OS primitives.docker events directly. docker events is a runtime primitive exposed by the Docker daemon.journald on the host. Journal is kernel-level infrastructure.When designing a reactive integration:
version field, include a timestamp, allow optional fields).When you choose a primitive event stream:
inotify / fanotify: kernel-level file system event streamsjournald: kernel and service logs as a primitive journalApplies to: all AI agents, all projects, all reactive integration design tasks.
Other measured skills in the registry, with their headline benchmark lift.