Problem
Template release docs say this package is a private template and should not be published, but package.json contains public publish settings and package files.
Relevant files:
docs/release.md
package.json
The template package also lacks an exports map unlike the real adapter packages.
Impact
Accidental public publish is easier, and if published, import ergonomics may differ from other AgentDispatch packages.
Suggested fix
If private: add "private": true and remove public publishConfig.
If intended to be publishable: add an exports map consistent with other packages and update release docs.
Acceptance criteria
- Package metadata matches intended lifecycle.
- Release docs no longer conflict with package config.
Problem
Template release docs say this package is a private template and should not be published, but
package.jsoncontains public publish settings and package files.Relevant files:
docs/release.mdpackage.jsonThe template package also lacks an
exportsmap unlike the real adapter packages.Impact
Accidental public publish is easier, and if published, import ergonomics may differ from other AgentDispatch packages.
Suggested fix
If private: add
"private": trueand remove publicpublishConfig.If intended to be publishable: add an
exportsmap consistent with other packages and update release docs.Acceptance criteria