Migrate add-skill and add-knowledge from commands to skills - #42
Merged
Merged
Conversation
The add-skill (#35) and add-knowledge (#33) features were introduced as slash commands, but were intended to be Agent Skills. Move each into skills/<name>/SKILL.md (matching the delete-agent skill layout): add a `name:` field, extend the description with a "Use when the user asks to..." trigger for auto-invocation, and reword self-references from "command" to "skill". Update the /add-skill and /add-knowledge references in copilot-studio-architect.md, reference/skill-schema.md, and reference/knowledge-schema.md accordingly. Scripts, schemas, and tests are unchanged. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: fcaa5aa6-2684-4021-9bc4-bc40b27f5dca
Copilot started reviewing on behalf of
Anderson Silva (anderson-joyle)
September 25, 2026 16:14
View session
Anderson Silva (anderson-joyle)
marked this pull request as ready for review
September 25, 2026 16:15
There was a problem hiding this comment.
Copilot review overview
🟢 Approval recommended
All reviewed changes align with the migration scope, with no unresolved issues.
Review effort: Lite
Findings: None
What changed in this PR
Migrates add-skill and add-knowledge from slash commands to auto-invocable Agent Skills.
Changes:
- Adds skill metadata and invocation triggers.
- Updates command terminology and documentation references.
- Preserves existing workflows and schemas.
| File | Description |
|---|---|
skills/add-skill/SKILL.md |
Defines the migrated add-skill skill. |
skills/add-knowledge/SKILL.md |
Defines the migrated add-knowledge skill. |
reference/skill-schema.md |
Updates add-skill references. |
reference/knowledge-schema.md |
Updates add-knowledge references. |
agents/copilot-studio-architect.md |
Points architect guidance to the skills. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Hoa Nguyen (nguhoa)
approved these changes
Sep 25, 2026
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
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.
What & why
The
add-skill(#35) andadd-knowledge(#33) features were introduced as slash commands, but the intent was for them to be Agent Skills (likedelete-agent, #41). This PR migrates them.Changes
commands/add-skill.md→skills/add-skill/SKILL.mdcommands/add-knowledge.md→skills/add-knowledge/SKILL.mdname:frontmatter field, extenddescriptionwith a "Use when the user asks to…" trigger for auto-invocation, and reword self-references ("command" → "skill").argument-hintandallowed-toolsare unchanged./add-skilland/add-knowledgereferences to skill references inagents/copilot-studio-architect.md,reference/skill-schema.md, andreference/knowledge-schema.md.Not changed
chatandmigrateremain commands.scripts/add-skill.js,scripts/verify-knowledge-access.bundle.js), schemas, or tests.Git detects both moves as renames, so history is preserved.