docs: fix agent doc links and capture extension test gotchas - #2266
Open
BenWeekes wants to merge 1 commit into
Open
docs: fix agent doc links and capture extension test gotchas#2266BenWeekes wants to merge 1 commit into
BenWeekes wants to merge 1 commit into
Conversation
AGENTS.md pointed L2 deep dives at docs/ai/L1/deep_dives/, but on main they live at docs/ai/L1/L2/, so agents following the entry point missed all eight deep dives; it also linked a progressive-disclosure-standard file that is not checked into main. Fix the path and note where the standard actually lives. Capture process lessons from recent asr extension work: - asr guarder contract notes in the extension development deep dive: finals need positive, non-overlapping timestamps (synthesize from the audio timeline when the vendor returns no timing); invalid credentials must surface as non-fatal errors with reconnect-manager escalation (only http 401/403 are immediately fatal); connection_status tests are allowlist-gated; capture guarder output to a log file to keep the pytest summary and exit code. Add the newer same-session finalize reconnect and connection status tests to the guarder table. - setup: on a fresh worktree run task install first — running install_python_deps.sh alone fails before ten_packages/system exists. - workflows: in-container lint always exits non-zero with E0401 import errors; compare against a known ci-green extension baseline.
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
AGENTS.mdentry-point links: L2 deep dives live atdocs/ai/L1/L2/on main (the file pointed at a nonexistentdocs/ai/L1/deep_dives/, so agents following the entry point missed all eight deep dives); also note thatprogressive-disclosure-standard.mdlives on thedocs/progressive-disclosurebranch, not main.task installfirst;install_python_deps.shalone fails beforeten_packages/systemexists).Why
Process docs only — no code changes. These are the exact points that cost debugging time in recent extension work; capturing them makes the next extension land right the first time.