Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f1adcb1
add tool for git, nodejs, azure skill
hemarina Jun 16, 2026
bc7b71a
update the repo
hemarina Jun 16, 2026
8edb406
update the command for azureSkills
hemarina Jun 17, 2026
5f1f2ef
remove nodejs and git for tool install
hemarina Jun 17, 2026
c37c832
add detectSkill
hemarina Jun 18, 2026
ea8b766
add install func
hemarina Jun 18, 2026
7129598
use official repo, not dev repo
hemarina Jun 18, 2026
1c30331
add test
hemarina Jun 18, 2026
7989ec3
local code review and fixes
hemarina Jun 18, 2026
2dfc36b
fix(cspell): resolve spelling lint failures in skill install code
hemarina Jun 18, 2026
fd42483
update tool installation fail ux
hemarina Jun 18, 2026
b050ba6
Merge branch 'main' of https://github.com/Azure/azure-dev into hemari…
hemarina Jun 18, 2026
1ca0cac
address the feedback
hemarina Jun 19, 2026
9e2dfc0
fix based on testing
hemarina Jun 19, 2026
362a466
Merge branch 'hemarina/azd-tool-skill-plugins' of https://github.com/…
hemarina Jun 19, 2026
2adfab2
add apm
hemarina Jun 19, 2026
045dcd4
fix pipeline
hemarina Jun 19, 2026
de0aed4
add test coverage
hemarina Jun 19, 2026
3a69446
add --host, remove apm, codex, gemini due to low user traffic, plan …
hemarina Jun 20, 2026
f086d80
address comments
hemarina Jun 20, 2026
2c2afed
improve upgrade --host
hemarina Jun 20, 2026
b6838a0
close gaps, address comments for local code review
hemarina Jun 20, 2026
f61a638
upgrade --host all only upgrade installed skills, fix tests
hemarina Jun 20, 2026
98bef5a
address feedback
hemarina Jun 22, 2026
a64003e
add user selection
hemarina Jun 22, 2026
e52caa1
Merge branch 'main' of https://github.com/Azure/azure-dev into hemari…
hemarina Jun 22, 2026
4834ddf
improve user prompt
hemarina Jun 23, 2026
adfa701
add test coverage for failed test pipeline
hemarina Jun 23, 2026
b6c09bc
improve ux
hemarina Jun 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions cli/azd/cmd/testdata/TestFigSpec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6338,6 +6338,16 @@ const completionSpec: Fig.Spec = {
name: ['--dry-run'],
description: 'Preview what would be installed without making changes',
},
{
name: ['--host'],
description: 'Install the skill for the specified agent host(s): copilot, claude. Use --host all for every detected host (skill tools only)',
isRepeatable: true,
args: [
{
name: 'host',
},
],
},
],
args: {
name: 'tool-name...',
Expand All @@ -6363,6 +6373,16 @@ const completionSpec: Fig.Spec = {
name: ['--dry-run'],
description: 'Preview what would be upgraded without making changes',
},
{
name: ['--host'],
description: 'Upgrade the skill for the specified agent host(s): copilot, claude. Use --host all for every detected host (skill tools only)',
isRepeatable: true,
args: [
{
name: 'host',
},
],
},
],
args: {
name: 'tool-name...',
Expand Down
5 changes: 3 additions & 2 deletions cli/azd/cmd/testdata/TestUsage-azd-tool-install.snap
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ Usage
azd tool install [tool-name...] [flags]

Flags
--all : Install all recommended tools
--dry-run : Preview what would be installed without making changes
--all : Install all recommended tools
--dry-run : Preview what would be installed without making changes
--host strings : Install the skill for the specified agent host(s): copilot, claude. Use --host all for every detected host (skill tools only)

Global Flags
-C, --cwd string : Sets the current working directory.
Expand Down
3 changes: 2 additions & 1 deletion cli/azd/cmd/testdata/TestUsage-azd-tool-upgrade.snap
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Usage
azd tool upgrade [tool-name...] [flags]

Flags
--dry-run : Preview what would be upgraded without making changes
--dry-run : Preview what would be upgraded without making changes
--host strings : Upgrade the skill for the specified agent host(s): copilot, claude. Use --host all for every detected host (skill tools only)

Global Flags
-C, --cwd string : Sets the current working directory.
Expand Down
Loading
Loading