generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Add GitHub Copilot Agent Environment feature for preinstalling tools and dependencies #26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Copilot
wants to merge
14
commits into
develop
from
copilot/fix-2e9b82c0-3179-49e1-af24-5e9c13ac7e6c
Closed
feat: Add GitHub Copilot Agent Environment feature for preinstalling tools and dependencies #26
Copilot
wants to merge
14
commits into
develop
from
copilot/fix-2e9b82c0-3179-49e1-af24-5e9c13ac7e6c
Conversation
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
* Initial plan * feat: add VERSION file update with gitversion semver on checkout Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * fix: improve version extraction logic for better semver detection Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * feat: add VERSION file update with gitversion semver on checkout Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * feat: support flexible naming Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix: 🐛 handle legitimate naming Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…tall.sh (#17) * Initial plan * Initial analysis: Bug in install.sh referencing incorrect log file name Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * Fix: Correct filename reference from _zz_logs.sh to _zz_log.sh in install.sh Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
* Initial plan * feat(gitutils): add git pn alias for push --no-verify Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
…es repository (#9) * Initial plan * Initial exploration and understanding of devcontainer-features repository Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * Create comprehensive GitHub Copilot instructions with validated commands and timings Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * refactor: enhance copilot instructions with focused structure and clear workflows Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * revert: remove all changes except copilot instructions per user request Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
* Initial plan * Initial exploration - understand larasets feature structure Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * Add validate-pr.yml workflow to larasets feature stubs Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> * Revert unrelated infrastructure changes, update copilot instructions for minimal changes Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
Owner
|
@copilot proceed |
…installation Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
… for preinstalling tools and dependencies Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
…age server package name Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
Co-authored-by: tomgrv <1809566+tomgrv@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] customize-the-agent-environment to have tomgrv/devcontainer-feature#gitutils installed
feat: Add GitHub Copilot Agent Environment feature for preinstalling tools and dependencies
Sep 26, 2025
4fcee28 to
9456163
Compare
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.
Overview
This PR implements a new devcontainer feature
copilot-agent-envthat addresses the GitHub documentation requirements for preinstalling tools and dependencies in GitHub Copilot agent environments. The feature provides a comprehensive setup for optimal Copilot agent performance by installing essential development tools, language servers, package managers, and VS Code configurations.What's New
New Devcontainer Feature:
copilot-agent-envA complete devcontainer feature located in
src/copilot-agent-env/that includes:Key Features
Flexible Configuration Options:
languageServers: Customize which language servers to install (default: "typescript python rust go")developmentTools: Select development tools to include (default: "curl git jq tree ripgrep fd")packageManagers: Choose package managers to set up (default: "npm pip cargo")enableLanguageSupport: Toggle language-specific tooling installation (default: true)Robust Error Handling:
VS Code Optimizations:
Usage
{ "features": { "ghcr.io/tomgrv/devcontainer-features/copilot-agent-env:1": { "languageServers": "typescript python", "developmentTools": "curl git jq tree", "packageManagers": "npm pip", "enableLanguageSupport": true } } }For basic installation with default settings:
{ "features": { "ghcr.io/tomgrv/devcontainer-features/copilot-agent-env:1": {} } }Implementation Details
The feature follows the established devcontainer feature pattern with:
devcontainer-feature.jsonconfigurationTesting
This feature enables developers to create Copilot-optimized development environments with a single configuration entry, ensuring GitHub Copilot agents have access to all necessary tools for effective code analysis and assistance.
Original prompt
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.