Skip to content

Commit 709b7a0

Browse files
authored
Merge pull request #43568 from github/repo-sync
Repo sync
2 parents f9f7ad8 + e27e7a2 commit 709b7a0

File tree

6 files changed

+40
-35
lines changed

6 files changed

+40
-35
lines changed

content/copilot/concepts/agents/about-agent-skills.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ contentType: concepts
1212
---
1313

1414
> [!NOTE]
15-
> Agent Skills work with {% data variables.copilot.copilot_coding_agent %}, the {% data variables.copilot.copilot_cli %} and agent mode in {% data variables.product.prodname_vscode %} Insiders. Support in the stable version of {% data variables.product.prodname_vscode_shortname %} is coming soon.
15+
> Agent skills work with {% data variables.copilot.copilot_coding_agent %}, the {% data variables.copilot.copilot_cli %}, and agent mode in {% data variables.product.prodname_vscode %}.
1616
1717
## About agent skills
1818

@@ -22,8 +22,8 @@ You can create your own skills to teach {% data variables.product.prodname_copil
2222

2323
{% data variables.product.prodname_copilot_short %} supports:
2424

25-
* Project skills, stored in your repository (`.github/skills` or `.claude/skills`)
26-
* Personal skills, stored in your home directory and shared across projects (`~/.copilot/skills` or `~/.claude/skills`) ({% data variables.copilot.copilot_coding_agent %} and {% data variables.copilot.copilot_cli %} only)
25+
* Project skills, stored in your repository (`.github/skills`, `.claude/skills`, or `.agents/skills`)
26+
* Personal skills, stored in your home directory and shared across projects (`~/.copilot/skills`, `~/.claude/skills`, or `~/.agents/skills`)
2727

2828
Support for organization-level and enterprise-level skills is coming soon.
2929

content/copilot/how-tos/use-copilot-agents/coding-agent/create-skills.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ category:
1212
---
1313

1414
> [!NOTE]
15-
> Agent skills work with {% data variables.copilot.copilot_coding_agent %}, the {% data variables.copilot.copilot_cli %} and agent mode in {% data variables.product.prodname_vscode %} Insiders. Support in the stable version of {% data variables.product.prodname_vscode_shortname %} is coming soon.
15+
> Agent skills work with {% data variables.copilot.copilot_coding_agent %}, the {% data variables.copilot.copilot_cli %}, and agent mode in {% data variables.product.prodname_vscode %}.
1616
1717
Agent skills are folders of instructions, scripts, and resources that {% data variables.product.prodname_copilot_short %} can load when relevant to improve its performance in specialized tasks. For more information, see [AUTOTITLE](/copilot/concepts/agents/about-agent-skills).
1818

content/copilot/reference/copilot-cli-reference/cli-command-reference.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,7 @@ Skills are loaded from these locations in priority order (first found wins for d
531531
| `~/.copilot/skills/` | Personal | Personal skills for all projects. |
532532
| `~/.agents/skills/` | Personal | Agent skills shared across all projects. |
533533
| `~/.claude/skills/` | Personal | Claude-compatible personal location. |
534+
| `~/.agents/skills/` | Personal | Alternative personal location. |
534535
| Plugin directories | Plugin | Skills from installed plugins. |
535536
| `COPILOT_SKILLS_DIRS` | Custom | Additional directories (comma-separated). |
536537

content/copilot/reference/customization-cheat-sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This table shows what each customization feature is and where it lives.
2121
| [Prompt files](/copilot/concepts/prompting/response-customization?tool=vscode#about-prompt-files) | Reusable, standalone prompt template with input variables | `.github/prompts/*.prompt.md` |
2222
| [{% data variables.copilot.custom_agents_caps_short %}](/copilot/concepts/agents/coding-agent/about-custom-agents) | Specialist persona with its own instructions, tool restrictions, and context | `.github/agents/AGENT-NAME.md` (repo), `agents/AGENT-NAME.md` in `.github-private` repo (org/enterprise), or user profile |
2323
| [{% data variables.copilot.subagents_caps_short %}](/copilot/how-tos/chat-with-copilot/chat-in-ide#using-subagents) | Separate agent spawned by the main agent to handle delegated work in an isolated context | N/A (runtime process, not a user-configured file) |
24-
| [Agent skills](/copilot/concepts/agents/about-agent-skills) | Folder of instructions, scripts, and resources that {% data variables.product.prodname_copilot_short %} loads when relevant to a task | `.github/skills/<skill-name>/SKILL.md` (project) or `~/.copilot/skills/<skill-name>/SKILL.md` (personal) |
24+
| [Agent skills](/copilot/concepts/agents/about-agent-skills) | Folder of instructions, scripts, and resources that {% data variables.product.prodname_copilot_short %} loads when relevant to a task | `.github/skills/<skill-name>/SKILL.md`, `.claude/skills/<skill-name>/SKILL.md`, or `.agents/skills/<skill-name>/SKILL.md` (project); `~/.copilot/skills/<skill-name>/SKILL.md`, `~/.claude/skills/<skill-name>/SKILL.md`, or `~/.agents/skills/<skill-name>/SKILL.md` (personal) |
2525
| [Hooks](/copilot/concepts/agents/coding-agent/about-hooks) | Custom shell commands that execute deterministically at specific points in an agent's workflow | `.github/hooks/*.json` |
2626
| [MCP servers](/copilot/concepts/context/mcp) | Connection to external systems, APIs, and databases | `mcp.json` (path varies by IDE), repo settings on {% data variables.product.github %} ({% data variables.copilot.copilot_coding_agent_short %}), or `mcp-servers` property in {% data variables.copilot.copilot_custom_agent_short %} configurations |
2727

data/reusables/copilot/creating-adding-skills.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ To create an agent skill you write a `SKILL.md` file and, optionally, other reso
44

55
To add a skill, you save the `SKILL.md` file, and any subsidiary resources, to a location where {% data variables.product.prodname_copilot_short %} knows to look for skills. This can be within a repository, or within your home directory.
66

7-
1. Create a `skills` directory to store your skill and any others you may want to create in the future.
7+
1. Create a `skills` directory in one of the supported locations to store your skill and any others you may want to create in the future.
88

9-
For **project skills**, specific to a single repository, store your skill under `.github/skills` or `.claude/skills`.
9+
For **project skills**, specific to a single repository, create and use a `.github/skills`, `.claude/skills`, or `.agents/skills` directory in your repository.
1010

11-
For **personal skills**, shared across projects, store your skill under `~/.copilot/skills` or `~/.claude/skills`.
11+
For **personal skills**, shared across projects, create and use a `~/.copilot/skills`, `~/.claude/skills`, or `~/.agents/skills` directory in your home directory.
1212

1313
1. Create a subdirectory for your new skill. Each skill should have its own directory (for example, `.github/skills/webapp-testing`).
1414

package-lock.json

Lines changed: 31 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)