docs: update Learning Hub with recent Copilot CLI features (v1.0.23-v1.0.30) (#1421)

- copilot-configuration-basics.md: Add /ask, /env, /statusline commands
  and --mode/--autopilot/--plan startup flags
- automating-with-hooks.md: Document preToolUse modifiedArgs/updatedInput
  and additionalContext fields for modifying tool arguments
- understanding-mcp-servers.md: Add /mcp install registry section and
  note that type field is optional for remote MCP servers
- installing-and-using-plugins.md: Add copilot plugin marketplace update
  command and deprecation notice for repo/URL/path installs
- using-copilot-coding-agent.md: Add Remote Control section
  (replaces steering feature)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-04-20 12:32:57 +10:00
committed by GitHub
parent b360c76848
commit d7cf720ede
5 changed files with 130 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ title: 'Installing and Using Plugins'
description: 'Learn how to find, install, and manage plugins that extend GitHub Copilot CLI with reusable agents, skills, hooks, and integrations.'
authors:
- GitHub Copilot Learning Hub Team
lastUpdated: 2026-04-02
lastUpdated: 2026-04-16
estimatedReadingTime: '8 minutes'
tags:
- plugins
@@ -175,6 +175,8 @@ Or from an interactive session:
/plugin install database-data-management@awesome-copilot
```
> **Deprecation notice**: Installing plugins directly from a GitHub repository URL, raw URL, or local file path (e.g., `copilot plugin install github/awesome-copilot`) is deprecated and will be removed in a future release. Use marketplace-based installation instead.
### From VS Code
Browse to the plugin via `@agentPlugins` in the Extensions search view or via **Chat: Plugins** in the Command Palette, then click **Install**.
@@ -190,6 +192,9 @@ copilot plugin list
# Update a plugin to the latest version
copilot plugin update my-plugin
# Refresh all marketplace catalogs (fetch the latest list of available plugins)
copilot plugin marketplace update
# Remove a plugin
copilot plugin uninstall my-plugin
```