Skip to content

Commit 94c2a91

Browse files
committed
Refactor skill names and update paths
- Change skill name format from hyphenated to snake_case for `call-foundry-agent` and `teams-notification`. - Update script paths in examples to reflect the correct directory structure. - Add new dependencies to `package.json`: `playwright`, `pptxgenjs`, and `sharp`. - Remove obsolete `bing.py` script. - Add new settings in `.vscode/settings.json` for enhanced chat agent features. - Update GitHub Copilot features status in `copilot-ide-features.md`.
1 parent 507939e commit 94c2a91

6 files changed

Lines changed: 25 additions & 27 deletions

File tree

.github/skills/call_foundry_agent/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: call-foundry-agent
2+
name: call_foundry_agent
33
description: Call Foundry agent with a prompt and get the response.
44
---
55

@@ -17,5 +17,5 @@ Send a prompt to an Azure Foundry Agent and retrieve the response.
1717
### Example
1818

1919
```bash
20-
.venv/Scripts/python .claude/skills/call_foundry_agent/scripts/call_foundry.py "search the latest news in 2026"
20+
.venv/Scripts/python .github/skills/call_foundry_agent/scripts/call_foundry.py "search the latest news in 2026"
2121
```

.github/skills/teams_notification/SKILL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: teams-notification
2+
name: teams_notification
33
description: Send a notification card to Microsoft Teams via Webhook.
44
---
55

@@ -19,5 +19,5 @@ Send a notification card to a Microsoft Teams channel using an Incoming Webhook.
1919
### Example
2020

2121
```bash
22-
.venv/Scripts/python .claude/skills/teams_notification/scripts/send_teams_notification.py --message "Hello **World**!" --title "Test Message"
22+
.venv/Scripts/python .github/skills/teams_notification/scripts/send_teams_notification.py --message "Hello **World**!" --title "Test Message"
2323
```

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,5 +166,10 @@
166166
"chat.customAgentInSubagent.enabled": true,
167167
"github.copilot.chat.cli.customAgents.enabled": true,
168168
"github.copilot.chat.cli.mcp.enabled": true,
169-
"github.copilot.chat.customAgents.showOrganizationAndEnterpriseAgents": true
169+
"github.copilot.chat.customAgents.showOrganizationAndEnterpriseAgents": true,
170+
"chat.agent.thinking.collapsedTools": "withThinking",
171+
"chat.agent.thinking.terminalTools": true,
172+
"chat.tools.autoExpandFailures": true,
173+
"python-envs.defaultEnvManager": "ms-python.python:system",
174+
"python-envs.pythonProjects": []
170175
}

github-copilot-features-status/copilot-ide-features.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
| Claude Sonnet 4 |||||||
66
| Claude Sonnet 4.5 |||||||
77
| Claude Opus 4.5 |||||||
8+
| Claude Opus 4.6 |||||||
89
| Claude Haiku 4.5 |||||||
910
| Gemini 3 Flash |||||||
1011
| Gemini 3 Pro |||||||
@@ -16,7 +17,7 @@
1617
| GPT-5.1 |||||||
1718
| GPT-5.2 |||||||
1819
| GPT-5.1-Codex |||||||
19-
| GPT-5.2-Codex || | | | ||
20+
| GPT-5.2-Codex || | | | ||
2021
| GPT-5.1-Codex-Mini |||||||
2122
| GPT-5.1-Codex-Max |||||||
2223
| Grok Code Fast 1 |||||||
@@ -37,16 +38,16 @@
3738
| Inline Chat Mode |||||||
3839
| Ask Mode |||||||
3940
| Edit Mode |||||||
40-
| Plan Mode |||||| |
41+
| Plan Mode |||||| |
4142
| Agent Mode |||||||
4243
| Custom Agent |||||||
44+
| Checkpoints |||||||
4345
| Enterprise Custom Agent |||||||
4446
| Background Agent |||||||
4547
| Isolated SubAgent |||||||
4648
| Run in Parallel |||||||
4749
| Worktree |||||||
48-
| Agent Skill |||||||
49-
| Hooks |||||||
50+
| Agent Skill |||||||
5051
| Slash Command |||||||
5152
| Content Exclusion |||||||
5253
| @github |||||||
@@ -55,10 +56,14 @@
5556
| Voice Input |||||||
5657
| MCP |||||||
5758
| MCP Server Registry |||||||
59+
| MCP Apps |||||||
5860
| Web Fetch |||||||
5961
| BYOK |||||||
6062
| Debug View |||||||
6163
| Delegate Coding Agent |||||||
64+
| Hooks |||||||
65+
| Mermaid Render |||||||
66+
| Memory |||||||
6267

6368

6469
# GitHub Copilot Instruction Features Comparison
@@ -71,14 +76,14 @@
7176
| Custom Commit Message Instruction |||||||
7277
| Custom Code Review Instruction |||||||
7378
| Custom PR Description Instruction |||||||
74-
| Reusable Prompt File || |||||
79+
| Reusable Prompt File || |||||
7580
| AGENTS.md |||||||
7681

7782
# GitHub Copilot Misc Features Comparison
7883

7984
| Misc Features in IDE | VS Code | Visual Studio | JetBrains | Xcode | Eclipse | CLI |
8085
|--------------------------|---------|---------------|-----------|-------|---------|-----|
81-
| Code Referencing ||||| ||
86+
| Code Referencing ||||| ||
8287
| Debug Agent |||||||
8388
| Profiler Agent |||||||
8489
| Java Upgrade Agent |||||||

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@
1111
"license": "ISC",
1212
"dependencies": {
1313
"@octokit/rest": "^21.1.1",
14-
"axios": "^1.5.1"
14+
"axios": "^1.5.1",
15+
"playwright": "^1.50.0",
16+
"pptxgenjs": "^3.12.0",
17+
"sharp": "^0.33.5"
1518
},
1619
"devDependencies": {
1720
"@types/node": "^20.8.0",

scripts/bing.py

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)