Skip to content

Add a naive attempt at downloading manifest#6631

Merged
trangevi merged 4 commits intomainfrom
trangevi/naive-manifest-download
Jan 29, 2026
Merged

Add a naive attempt at downloading manifest#6631
trangevi merged 4 commits intomainfrom
trangevi/naive-manifest-download

Conversation

@trangevi
Copy link
Member

In order to support downloading from a public repository without needing to login, we'll attempt a naive download without using the azd logic requiring auth to the gh cli

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds an unauthenticated-first (“naive”) GitHub manifest download attempt to support public repositories without requiring GitHub CLI authentication.

Changes:

  • Adds a first-pass parseGitHubUrlNaive and attempts download via that parse before falling back to the existing azd-based parsing.
  • Refactors GitHub manifest download flow to support the new naive attempt and fallback behavior.
  • Removes GitHub CLI auth/login prompting from downloadGithubManifest.
Comments suppressed due to low confidence (1)

cli/azd/extensions/azure.ai.agents/internal/cmd/init.go:1383

  • downloadGithubManifest no longer checks gh auth status or prompts a login before calling gh api. There are no other ghCli.Login/GetAuthStatus call sites in this file now, so fetching manifests (and subsequent directory downloads) from private repos will regress and fail unless the user happens to already be logged in. Consider restoring the previous auth-check/login flow (or retrying on 401/403) at least for the non-naive path, so private repos continue to work while still allowing unauthenticated access for public repos.
func downloadGithubManifest(
	ctx context.Context, urlInfo *GitHubUrlInfo, apiPath string, ghCli *github.Cli, console input.Console) (string, error) {
	// This method assumes that either the repo is public, or the user has already been prompted to log in to the github cli
	// through our use of the underlying azd logic.

	content, err := ghCli.ApiCall(ctx, urlInfo.Hostname, apiPath, github.ApiCallOptions{
		Headers: []string{"Accept: application/vnd.github.v3.raw"},
	})
	if err != nil {
		return "", fmt.Errorf("failed to get content: %w", err)
	}

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copy link
Contributor

Copilot AI commented Jan 28, 2026

@trangevi I've opened a new pull request, #6634, to work on those changes. Once the pull request is ready, I'll request review from you.

Signed-off-by: trangevi <trangevi@microsoft.com>
Signed-off-by: trangevi <trangevi@microsoft.com>
…ery params (#6634)

* Initial plan

* Use net/url parsing to handle query params and fragments in parseGitHubUrlNaive

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Final review completed

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Revert unintended changes to other extensions

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Address PR comments

Signed-off-by: trangevi <trangevi@microsoft.com>

* Update download directory as well

Signed-off-by: trangevi <trangevi@microsoft.com>

* Initial plan

* Rebased on latest base branch

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>
Co-authored-by: trangevi <trangevi@microsoft.com>
@trangevi trangevi merged commit d1042db into main Jan 29, 2026
19 checks passed
Copilot AI added a commit that referenced this pull request Jan 29, 2026
* Add a naive attempt at downloading

* Address PR comments

Signed-off-by: trangevi <trangevi@microsoft.com>

* Update download directory as well

Signed-off-by: trangevi <trangevi@microsoft.com>

* Use net/url parsing in parseGitHubUrlNaive to handle fragments and query params (#6634)

* Initial plan

* Use net/url parsing to handle query params and fragments in parseGitHubUrlNaive

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Final review completed

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Revert unintended changes to other extensions

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Address PR comments

Signed-off-by: trangevi <trangevi@microsoft.com>

* Update download directory as well

Signed-off-by: trangevi <trangevi@microsoft.com>

* Initial plan

* Rebased on latest base branch

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>
Co-authored-by: trangevi <trangevi@microsoft.com>

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>
Copilot AI added a commit that referenced this pull request Jan 29, 2026
* Add a naive attempt at downloading

* Address PR comments

Signed-off-by: trangevi <trangevi@microsoft.com>

* Update download directory as well

Signed-off-by: trangevi <trangevi@microsoft.com>

* Use net/url parsing in parseGitHubUrlNaive to handle fragments and query params (#6634)

* Initial plan

* Use net/url parsing to handle query params and fragments in parseGitHubUrlNaive

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Final review completed

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Revert unintended changes to other extensions

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Address PR comments

Signed-off-by: trangevi <trangevi@microsoft.com>

* Update download directory as well

Signed-off-by: trangevi <trangevi@microsoft.com>

* Initial plan

* Rebased on latest base branch

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>
Co-authored-by: trangevi <trangevi@microsoft.com>

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>
vhvb1989 added a commit that referenced this pull request Jan 30, 2026
* fix security issue with playwright/test 1.49.1 (#6592)

* Checkpoint from VS Code for cloud agent session

* Update parameter popup border color to cyan in concurX extension

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Complete concurX parameter popup color update

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* cspell

* Remove unintended changes to azure.ai.finetune extension

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* azure.ai.agents - Set `CGO_ENABLED=0` for x64 Linux build (#6611)

* Set CGO_ENABLED=0 for x64 Linux build

* Bump version

* Bump version to 0.1.8-preview (#6613)

* Extension update fixes/enhancements (#6604)

* Clarify extension list latest version column

* Add update availability JSON property and show asterisk besides outdated extensions

* Add upgrade hints to extension list output

* Fix cooldown logic and shallow copy

* Update AGENTS.md

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com>

* Fix bicep CLI uninitialized path in container app deployments (#6610)

* fix security issue with playwright/test 1.49.1 (#6592)

* Checkpoint from VS Code for cloud agent session

* Fix bicep CLI initialization by restoring EnsureInstalled calls

- Restore public EnsureInstalled() method in bicep.go
- Remove automatic installation from Build() and BuildBicepParam()
- Add explicit EnsureInstalled() calls in service_target_containerapp.go and bicep_provider.go
- Update all test files to use public EnsureInstalled() method
- Reverts incorrect changes from previous checkpoint commit

This fix follows the same pattern as PR #6593 for GitHub CLI.

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Checkpoint from VS Code for cloud agent session

---------

Co-authored-by: Victor Vazquez <vhvb1989@gmail.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Add azure.ai.agent 0.1.8-preview to registry (#6615)

* Release 1.23.2 (#6616)

* Initial plan

* Release 1.23.2

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Increment CLI version after release (#6617)

* Migrate to use new shared eng package (#6600)

* Fix VS Code extension commands failing with undefined fsPath in virtual file systems (#6601)

* Initial plan

* Add defensive checks for undefined fsPath in VS Code extension commands

This fixes the issue where provision and other commands would fail with
"The 'path' argument must be of type string. Received undefined" when
used with virtual file systems or certain VS Code contexts.

Changes:
- Added validation for selectedFile.fsPath before calling getWorkingFolder
- Provides clear error messages that include URI scheme and selectedItem type
- Suppresses automatic issue reporting since this is a user error
- Applied fix to all affected commands: provision, deploy, up, down, restore, monitor, packageCli, and pipelineConfig
- Added unit tests for the new validation logic

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Simplify provision.test.ts based on code review feedback

Removed unused stub functions that weren't actually being used.
Simplified tests to focus on the core validation logic.

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Refactor validation logic into shared utility function

Based on code review feedback:
- Extracted duplicated validation logic to validateFileSystemUri() in cmdUtil.ts
- Updated all 8 command files to use the shared function
- Simplified test assertions
- Improved code maintainability by reducing duplication

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Fix validation to use strict equality check for undefined

Changed condition from `!selectedFile.fsPath` to `selectedFile.fsPath === undefined`
to avoid incorrectly rejecting empty string paths which are valid for root directories.

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Fix l10n.t() to use single string literal instead of concatenation

The first argument to vscode.l10n.t() should be a single string literal
for proper localization tooling compatibility. Removed string concatenation
and used a single multi-line string literal instead.

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* Add missing keys to `azd config options` (#6619)

* Add missing config options

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com>

* Raising for missing method type (#6628)

* adding project-endpoint to init command

* adding 12 preview release

* fixig default customization method & adding training type

* correct version

* RFT grader fixes (#6629)

* adding project-endpoint to init command

* adding 12 preview release

* fixig default customization method & adding training type

* correct version

* adding grader to cloning code

* adding missing grader functionality

* merging master

* including .14-preview to main registry (#6630)

* Add a naive attempt at downloading manifest (#6631)

* Add a naive attempt at downloading

* Address PR comments

Signed-off-by: trangevi <trangevi@microsoft.com>

* Update download directory as well

Signed-off-by: trangevi <trangevi@microsoft.com>

* Use net/url parsing in parseGitHubUrlNaive to handle fragments and query params (#6634)

* Initial plan

* Use net/url parsing to handle query params and fragments in parseGitHubUrlNaive

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Final review completed

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Revert unintended changes to other extensions

Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Address PR comments

Signed-off-by: trangevi <trangevi@microsoft.com>

* Update download directory as well

Signed-off-by: trangevi <trangevi@microsoft.com>

* Initial plan

* Rebased on latest base branch

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>
Co-authored-by: trangevi <trangevi@microsoft.com>

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>

* Dev container feature - allow installing extensions (#6460)

* Add extensions option to the azd devcontainer feature to allow specifying extensions to install

* Review updates

* Revert whitespace changes

* Address feedback on shell script. Add multiple extensions to the test config to validate

* Enable full figspec generation for extensions with metadata capability (#6620)

* Fix indentation

* Add metadata capability checks and improve error handling

* Support dynamic suggestions for `azd config` commands

* Exclude global persistent flags

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com>

* Add concurX binary to gitignore

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

* lint

* Update TestAskerConsoleExternalPrompt to use new external prompt mechanism

Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>

---------

Signed-off-by: trangevi <trangevi@microsoft.com>
Co-authored-by: Victor Vazquez <vhvb1989@gmail.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: vhvb1989 <24213737+vhvb1989@users.noreply.github.com>
Co-authored-by: JeffreyCA <jeffreychen@microsoft.com>
Co-authored-by: JeffreyCA <9157833+JeffreyCA@users.noreply.github.com>
Co-authored-by: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com>
Co-authored-by: Brandon Waterloo [MSFT] <36966225+bwateratmsft@users.noreply.github.com>
Co-authored-by: Amit Chauhan <70937115+achauhan-scc@users.noreply.github.com>
Co-authored-by: Travis Angevine <trangevi@microsoft.com>
Co-authored-by: trangevi <26490000+trangevi@users.noreply.github.com>
Co-authored-by: Stuart Leeks <stuartle@microsoft.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants