Enhance UI, add features, and improve readiness and telemetry (more dogfooding)#2691
Merged
Conversation
…ate sub folders as necessary.
…sn't yet supported).
…can be turned off temporarily for debugging purposes.
# Conflicts: # ts/pnpm-lock.yaml
…the PR created new commands).
…uring PRs (keeps doc up to date with any schema changes).
GeorgeNgMsft
approved these changes
Jul 17, 2026
robgruen
marked this pull request as ready for review
July 17, 2026 18:25
robgruen
enabled auto-merge
July 17, 2026 18:25
Collaborator
Author
|
@copilot resolve the merge conflicts in this pull request |
# Conflicts: # ts/packages/dispatcher/dispatcher/README.AUTOGEN.md # ts/pnpm-lock.yaml
Contributor
Resolved and merged |
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.
This pull request introduces several improvements to the TypeAgent VS Code integration, focusing on enhancing editor context awareness, expanding the code agent's API, and improving test coverage and documentation. The main themes are: enabling the agent to introspect the user's editor state, updating the documentation and workflow to reflect these changes, and ensuring the code agent's readiness state is accurately tracked.
Enhancements to Editor Context and Agent Capabilities:
codeActionsSchema.tsAPI, allowing the agent to query the active editor, selection, diagnostics, open editors, file content, and workspace changes. These actions are non-destructive and intended for use by the reasoning agent to inspect the user's current coding context. [1] [2]getUserContextmethod in the shared dispatcher (sharedDispatcher.ts) that prioritizes returning editor context from the client that initiated a request, with fallback to any available editor client. This provides reasoning tools with accurate per-user editor state.Workflow and Documentation Updates:
docs-pr-amend.yml) to automatically regenerate and commit the command reference and action browser (HTML/JSON catalog) for every PR, ensuring up-to-date reviewable documentation. The commit message and file patterns were expanded accordingly..prettierignoreand.gitignoreto ensure that the generated action browser files are committed and reviewable in PRs, but not subject to code formatting churn. [1] [2]Readiness and Testing Improvements:
These changes collectively improve the agent's ability to reason about and interact with the user's editor environment, streamline documentation review, and lay groundwork for closing key feature gaps with Copilot.