Plugin Authoring — Official Best Practices What Plugins Do Plugins bundle skills, agents, hooks, and MCP servers into shareable packages. Skills get namespaced: . Directory Structure Critical: skills/, agents/, hooks/ go at plugin root, NOT inside . plugin.json Manifest See quick-ref/manifest-schema.md for the complete schema. - : unique identifier, becomes skill namespace prefix - : semantic versioning (MAJOR.MINOR.PATCH) - Only and are required Namespacing Plugin skills are prefixed: , . This prevents conflicts between plugins with same skill names. Plugin Components Skills in plugins Same…