docs(agents): document .launch-smoke export-surface workflow#150
Draft
tembo[bot] wants to merge 1 commit into
Draft
docs(agents): document .launch-smoke export-surface workflow#150tembo[bot] wants to merge 1 commit into
tembo[bot] wants to merge 1 commit into
Conversation
Contributor
Author
|
Requesting review from @leoisadev1 who has experience with the following files modified in this PR:
|
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
Adds a Launch Smoke Test section to
AGENTS.mddocumenting the.launch-smoke/workflow, which was previously undocumented.Why
.launch-smoke/is a standalone workspace (outside the rootapps/*/packages/*globs, with its ownbun.lock) that installs the built packages viafile:dependencies and imports every published entry point and adapter subpath to catch export-surface regressions. It is not part of CI (.depot/workflows/ci.ymlonly runsrelease:ci) and is not mentioned anywhere inAGENTS.md, yet it is maintained alongside adapter additions (e.g. JetEmail #94, Primitive #102, Lettermint #107). An agent adding a provider adapter or a new public subpath export would not know to update it.The new section records:
.launch-smoke/is and why it lives outside the root workspaces.dist/exports, so the packages must be built first.Verification
All documented commands were run against a clean checkout:
bun run build— green (3/3 turbo tasks)cd .launch-smoke && bun install && bun test— 26 pass, 0 failbun run check-types(tsc --noEmit) — exit 0Scope
Single-line-of-intent change: only
AGENTS.mdis modified. No unrelated sections were touched and no generated files were altered.