[bot] Update Learning Hub for Copilot CLI v1.0.64–v1.0.65 features#2127
Merged
aaronpowell merged 1 commit intoJun 26, 2026
Merged
Conversation
- creating-effective-skills: add 'copilot skill' CLI subcommand for listing, adding, and removing skills (v1.0.65); add '/skill' alias - automating-with-hooks: document userPromptSubmitted additionalContext injection into model-facing prompt (v1.0.65); update hook events table - copilot-configuration-basics: add opt-in CI check status bar indicator for current branch (v1.0.65) - building-custom-agents: add note that /security-review is now available to all users without --experimental (v1.0.64) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
aaronpowell
approved these changes
Jun 26, 2026
Contributor
Author
|
🟡 Contributor Reputation Check: MEDIUM risk
Maintainers: please review this contributor before merging. |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Learning Hub documentation to reflect newly shipped GitHub Copilot CLI features in v1.0.64–v1.0.65, keeping guidance in sync with the latest CLI behavior and commands.
Changes:
- Documented the new
copilot skillCLI subcommand and/skillalias for managing skills. - Expanded hooks documentation to cover
userPromptSubmittedreturningadditionalContext. - Updated configuration and agent-building docs to note the CI statusline indicator and
/security-reviewGA.
Show a summary per file
| File | Description |
|---|---|
| website/src/content/docs/learning-hub/creating-effective-skills.md | Adds Q&A documenting copilot skill management commands and /skill alias. |
| website/src/content/docs/learning-hub/automating-with-hooks.md | Updates userPromptSubmitted hook docs and adds an additionalContext example section. |
| website/src/content/docs/learning-hub/copilot-configuration-basics.md | Notes the new opt-in CI check status indicator in /statusline. |
| website/src/content/docs/learning-hub/building-custom-agents.md | Adds a callout noting /security-review is available to all users since v1.0.64. |
Review details
- Files reviewed: 4/4 changed files
- Comments generated: 1
- Review effort level: Low
Comment on lines
+129
to
+132
| # Inject the current git status into every prompt for context awareness | ||
| INPUT=$(cat) | ||
| BRANCH=$(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "unknown") | ||
| STAGED=$(git diff --cached --stat 2>/dev/null | tail -1) |
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 new features or changes were found
From the Copilot CLI releases in the past 7 days (v1.0.64 on 2026-06-23, v1.0.65 on 2026-06-24):
copilot skillCLI subcommand (v1.0.65) — new command to list, add, and remove skills from files, URLs, or directories;/skilladded as alias for/skillsuserPromptSubmittedhookadditionalContext(v1.0.65) — hooks for this event can now return{"additionalContext": "..."}to inject text into the model-facing prompt (distinct from{"response": "..."}which bypasses the model)/security-reviewGA (v1.0.64) — built-in security review command no longer requires--experimental; available to all usersNote: Several other v1.0.64 items (
argument-hintfrontmatter, rubber-duck subagent config,/mcp registry,/branchalias,/diagnose, model family aliases,--worktreeflag) were already documented in the Learning Hub.What sections of the guide were updated
creating-effective-skills.md— Added Q&A entry for the newcopilot skillCLI subcommand with usage examples forlist,add, andremoveautomating-with-hooks.md— Updated hook events table foruserPromptSubmitted; added new "userPromptSubmitted additionalContext" subsection with an example script showing per-prompt context injectioncopilot-configuration-basics.md— Updated/statuslinesection to mention the new opt-in CI check status indicatorbuilding-custom-agents.md— Added callout in the Quality Gate section noting that/security-reviewis now available to all users since v1.0.64Links to source announcements