> Dylibs is for including 3rd party code at build time
Nope. You can decide how and where to load and call entirely at runtime. Check out manpages for dlopen, dlsym.
I don't know anything about this new feature of Apple's, but knowing the way they've been going for the last decade and change I would guess the unique thing is around sandboxing, out of process calls, etc.
ExtensionKit allows you to expose realtime UI or information, coming from an installed app instead of a 3rd party service.
That way you don't have to expose your API or build an SDK. You just have functions in your app that can be invoked.
Also the feature is only provided if the user has that app installed. So the experience is curated.