chore(plugins): publish support@agents.e2a.dev as the contact address - #971
Merged
Conversation
The plugin author contact and the marketplace owner contact both carried support@e2a.dev, which is the one public support address that matched nothing else we publish — everywhere else (notifications.reply_to, the feedback fan-out, the dashboard feedback link) the address is support@agents.e2a.dev, a real agent on a domain with a live MX. support@e2a.dev depended instead on a Cloudflare Email Routing forward. Edited in plugins/*/plugin.meta.json, the single source of truth, then regenerated: .claude-plugin/marketplace.json is the only downstream manifest that emits the address. Verified with validate-plugin.mjs (freshness gate green) and its 12 tests. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JS3LokLt1bMyMwi8Aa1Td7
check-plugin-version-bump.mjs requires every changed plugin to bump. Metadata-only change, so patch: e2a 0.9.4 → 0.9.5, e2a-labs 0.3.0 → 0.3.1. Regenerating with the bumps propagates the version through the remaining per-client manifests (9/12 updated), which the freshness gate requires. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JS3LokLt1bMyMwi8Aa1Td7
plugin-packaging.test.mjs and plugin-email-evals.test.mjs assert the released version as a literal across every generated manifest, so a version bump is only half-applied until they move with it. The labs pin was masked by the assertion order: assert.equal on the core version throws first, so the 0.3.0 pin two blocks below never ran. Verified with the workflow's exact command over all six files: 67/67. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01JS3LokLt1bMyMwi8Aa1Td7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
The published contact address on the plugin author block and the marketplace owner block moves from
support@e2a.devtosupport@agents.e2a.dev.Edited in
plugins/e2a/plugin.meta.jsonandplugins/e2a-labs/plugin.meta.json— the single source of truth — then regenerated..claude-plugin/marketplace.jsonis the only downstream manifest that emits the address.Two consequential changes ride along, both required by gates rather than chosen:
check-plugin-version-bump.mjsrequires every changed plugin to bump. Metadata-only, so patch: e2a0.9.4 → 0.9.5, e2a-labs0.3.0 → 0.3.1. Regenerating propagates them through the per-client manifests.plugin-packaging.test.mjsandplugin-email-evals.test.mjsassert the released version as a literal across every generated manifest, so a bump is only half-applied until they move with it.Why
support@e2a.devwas the one public support address matching nothing else we publish. Everywhere else the hosted deployment already usessupport@agents.e2a.dev—notifications.reply_toinconfig.prod.yaml,FEEDBACK_NOTIFY_TOin the feedback fan-out, andNEXT_PUBLIC_FEEDBACK_EMAILon the dashboard. That address is a real e2a agent on a domain with a live MX, which is also what the fan-out's "target must be an existing agent" constraint requires.support@e2a.devdepended instead on a Cloudflare Email Routing forward on the apex, with nothing in either repo pinning that rule — so a directory listing was sending people to an address whose delivery path wasn't owned anywhere. It also dogfoods the product: the support inbox for an agent-email company is an agent inbox.This does not revisit the 2026-08-08 decision (e2a-ops#295) that kept
support@agents.e2a.devoversupport@team.tokencanopy.com— it brings the last stray reference into line with it.Worth knowing
The labs version pin at
plugin-packaging.test.mjs:67was masked by assertion order:assert.equalon the core version throws first, so the0.3.0pin two blocks below never ran. The first CI failure reported only the core mismatch; the labs one would have surfaced on the next push. Both are fixed here.Not touched
scripts/validate-plugin.test.mjs—support@e2a.devthere is a minimal valid-shaped fixture in synthetic base metadata, not a published address. Those tests assert schema and freshness, never the value.plugins/e2a-labs/skills/agentify/examples/e2a/autonomous-repo.config.yml— an example config whosesupport_addresscarries an explicitTODO(open-q #6): confirm verified domain, alongside a second open TODO onapprover. Resolving one and leaving the other reads worse than leaving the pair for the open question that owns them.design-system/src/Avatar/Avatar.stories.tsx— a Storybook avatar fixture demonstrating initials-from-email, not a contact.Verification
node scripts/generate-plugin-manifests.mjs→ 9/12 manifests updated; every generated file regenerated, never hand-edited.node scripts/validate-plugin.mjs→ green, freshness gate included (a hand-edited generated manifest is exactly what it fails on).node --testover the workflow's exact six-file list → 67/67 pass.grep -rn 'support@e2a.dev' --include='*.json'on the branch → no matches.🤖 Generated with Claude Code
https://claude.ai/code/session_01JS3LokLt1bMyMwi8Aa1Td7