[bot] Add CLI v1.0.64–1.0.65 features to Learning Hub configuration docs#2146
Open
github-actions[bot] wants to merge 4 commits into
Open
[bot] Add CLI v1.0.64–1.0.65 features to Learning Hub configuration docs#2146github-actions[bot] wants to merge 4 commits into
github-actions[bot] wants to merge 4 commits into
Conversation
Add five missing features from the past week's CLI releases: - HTTP(S) proxy user setting (v1.0.64) - /every command and /loop alias for in-session scheduled prompts (v1.0.64) - Inline image rendering in the terminal (v1.0.64) - Autopilot auto-handles elicitation/permission prompts (v1.0.64) - Shell command history accessible in normal mode via up/down and Ctrl+R (v1.0.65) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Author
|
🟡 Contributor Reputation Check: MEDIUM risk
Maintainers: please review this contributor before merging. |
…tion - Merge the duplicate /every+/loop section (added at line 640) into the existing first-occurrence at line 521 - Add /after command documentation (from PR #2148 suggestion) - Add example of /every invoking slash commands (/every 1d /chronicle standup) - Add Ctrl+C as alternative to /every stop - Add Experimental callout for /every, /loop, and /after - Update lastUpdated to 2026-06-29 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
aaronpowell
approved these changes
Jun 29, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the Learning Hub “Copilot Configuration Basics” page to document newly released GitHub Copilot CLI features from v1.0.64–v1.0.65, keeping configuration and in-session command guidance in sync with recent CLI behavior.
Changes:
- Expanded CLI settings documentation with the new
proxyuser setting details and example. - Added coverage of scheduled prompting via
/everyand/loop, plus new UX notes (inline image rendering, shell command history improvements). - Documented v1.0.64 autopilot behavior change around auto-handling prompts during automated runs.
Show a summary per file
| File | Description |
|---|---|
| website/src/content/docs/learning-hub/copilot-configuration-basics.md | Adds/updates documentation for CLI v1.0.64–v1.0.65 features (settings, session commands, keyboard/UX, autopilot). |
Review details
- Files reviewed: 1/1 changed files
- Comments generated: 3
- Review effort level: Low
| ``` | ||
|
|
||
| The interval can be specified in seconds (`s`), minutes (`m`), or hours (`h`). To see and manage all your scheduled prompts, use `/every` with no argument — it opens the schedule manager. To cancel a running schedule, use `/every stop` or press the stop option in the schedule manager. | ||
| The interval can be specified in seconds (`s`), minutes (`m`), or hours (`h`), and both commands can invoke other slash commands as their payload. To see and manage all your scheduled prompts, use `/every` with no argument — it opens the schedule manager. To cancel a running schedule, use `/every stop` or **Ctrl+C**. |
Comment on lines
+521
to
+527
| The `/every` command (also available as `/loop` since v1.0.64) schedules a recurring prompt to run automatically at a specified interval. The companion `/after` command runs a prompt once after a specified delay. Both are useful for self-paced automation — polling for results, periodically summarizing progress, or triggering other slash commands on a timer: | ||
|
|
||
| ``` | ||
| /every 5m Check if there are any new test failures and summarize them | ||
| /loop 30s Check if the build is done | ||
| /after 2h /compact # compact the session after 2 hours | ||
| /every 1d /chronicle standup # daily standup report via /chronicle |
| | `extension_mode` | Control extensibility (agent tools and plugins) | | ||
| | `continueOnAutoMode` | Automatically switch to the auto model on rate limit instead of pausing | | ||
| | `proxy` | HTTP(S) proxy URL for all outbound requests (v1.0.64+) | | ||
| | `proxy` | HTTP(S) proxy URL for all outbound CLI requests (e.g., `http://proxy.example.com:8080`) (v1.0.64+) | |
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 was found
Reviewing the
github/copilot-clichangelog for the past 7 days (June 20–27, 2026), I identified five user-facing features from v1.0.64 (2026-06-23) and v1.0.65 (2026-06-24) that were not yet documented in the Learning Hub.The following pages were already up to date (updated June 23–25):
copilot-configuration-basics.md—/diagnose,/branch, CI status bar, model aliases,--worktree, autopilot togglecreating-effective-skills.md—argument-hint,copilot skillsubcommandunderstanding-mcp-servers.md—/mcp registry,deferTools,.github/mcp.jsonagents-and-subagents.md— rubber-duck subagent v1.0.64 configbuilding-custom-agents.md—/security-reviewGA for all usersinstalling-and-using-plugins.md— plugin MCP serversWhat was added
All updates go to
website/src/content/docs/learning-hub/copilot-configuration-basics.md:proxyuser setting — HTTP(S) proxy for outbound requests/everycommand +/loopalias — scheduled in-session promptsSource announcements