Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问clear审计提醒

github-copilot-cli-expertGitHub GitHub Copilot CLI expert 运维

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

2,589

周安装

114

GitHub Stars

55

下载量

1,154
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:github-copilot-cli-expert(GitHub GitHub Copilot CLI expert 运维)
来源仓库:https://github.com/rysweet/amplihack
仓库路径:skills/github-copilot-cli-expert
安装命令:
npx skills add https://github.com/rysweet/amplihack --skill github-copilot-cli-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rysweet/amplihack --skill github-copilot-cli-expert

简介

作为 GitHub Copilot CLI 的专家级助手,指导命令行操作。

  • 适用于解释命令参数、调试执行失败场景或定制工作流。
  • 结合本地环境与云端服务状态,提供针对性解决方案。
  • 需提前安装 gh copilot 扩展并登录认证账户。
  • github-copilot-cli-expert 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

GitHub Copilot CLI Expert

Comprehensive knowledge of GitHub Copilot CLI - the terminal-native AI coding assistant.

Note: Command syntax and model availability may change. Run /help in Copilot CLI for current options.

Purpose

This skill provides expert guidance on:

  1. Installing and updating GitHub Copilot CLI
  2. All slash commands and keyboard shortcuts
  3. Custom agents, skills, and MCP server configuration
  4. Security, permissions, and trusted directories
  5. Integration with GitHub workflows (PRs, issues, Actions)
  6. Programmatic and interactive usage modes

Quick Reference

Installation (Pick One)

# Homebrew (macOS/Linux) - Recommended
brew install copilot-cli

# npm (all platforms, requires Node.js 22+)
npm install -g @github/copilot

# WinGet (Windows)
winget install GitHub.Copilot

# Install script (macOS/Linux)
curl -fsSL https://gh.io/copilot-install | bash

Update to Latest Version

# Homebrew
brew upgrade copilot-cli

# npm
npm update -g @github/copilot

# WinGet
winget upgrade GitHub.Copilot

# Check version
copilot --version

Before First Use

Requirements:

  • Active GitHub Copilot subscription (Plans)
  • Node.js 22+ (if installing via npm)
  • PowerShell v6+ (Windows users)

Authentication:

# On first run, you'll be prompted to login
copilot
# Then: /login

# OR set environment variable
export GH_TOKEN="ghp_xxxxxxxxxxxx"

Essential Slash Commands

CommandDescription
/helpShow all commands and shortcuts
/modelSelect AI model (claude-sonnet-4-5, gpt-5, etc.)
/mcpManage MCP server configuration
/agentBrowse and select custom agents
/delegateHand off task to Copilot coding agent on GitHub
/compactReduce context window usage
/contextShow token usage visualization
/usageDisplay session metrics
/diffReview changes made in session
/shareExport session to file or gist
/skillsManage skills for enhanced capabilities

Keyboard Shortcuts

ShortcutAction
@fileInclude file contents in context
!cmdExecute shell command directly
EscCancel operation / exit prompt
Ctrl+CCancel / clear / exit
Ctrl+LClear screen
Ctrl+OExpand/collapse timeline
↑/↓Navigate command history

When to Use This Skill

Auto-triggers when user mentions:

  • "copilot cli", "github copilot", "install copilot"
  • "update copilot", "copilot version", "copilot commands"
  • "mcp server", "custom agents", "copilot skills"

Explicitly invoke via:

Skill(skill="github-copilot-cli-expert")

Navigation Guide

When to Read Supporting Files

reference.md - Read when you need:

  • Complete list of all slash commands with detailed options
  • All command-line flags and environment variables
  • Detailed security configuration (trusted directories, tool permissions)
  • Programmatic mode examples and scripting patterns
  • MCP server configuration JSON format

examples.md - Read when you need:

  • Step-by-step workflow examples (PR creation, code review)
  • Custom agent creation and invocation examples
  • GitHub integration use cases (issues, Actions, PRs)
  • Delegation to Copilot coding agent workflows

Core Capabilities

1. Interactive vs Programmatic Mode

Interactive (default):

copilot
# Then type prompts naturally

Programmatic (scripting):

copilot -p "Summarize recent commits" --allow-tool 'shell(git)'

2. Custom Agents

Built-in agents: explore, task, plan, code-review

Custom agent locations:

  • User-level: ~/.copilot/agents/
  • Repository: .github/agents/
  • Org/Enterprise: .github-private/agents/

3. MCP Servers

GitHub MCP server included by default. Add more:

/mcp add
# Fill details, Ctrl+S to save

Config stored in: ~/.copilot/mcp-config.json

4. Security Model

  • Trusted directories: Confirmed on first launch
  • Tool approval: Required for file modifications
  • Path permissions: Current directory + temp by default
  • URL permissions: All URLs require approval

Common Patterns

Include Files in Prompts

Explain @config/settings.yml
Fix the bug in @src/app.js

Delegate to GitHub Agent

/delegate complete the API tests and create a PR

Resume Previous Session

copilot --resume    # Cycle through sessions
copilot --continue  # Resume most recent

Allow Tools Without Prompts

copilot --allow-all-tools
copilot --allow-tool 'shell(git)'
copilot --deny-tool 'shell(rm)'

Version Information

Current Version: Check with copilot --version

Prerelease Channels:

brew install copilot-cli@prerelease
npm install -g @github/copilot@prerelease
winget install GitHub.Copilot.Prerelease

Releases: https://github.com/github/copilot-cli/releases/

Troubleshooting

Authentication Issues

/login              # In interactive mode
# Or use PAT with GH_TOKEN/GITHUB_TOKEN env var

Context Window Full

/compact            # Summarize conversation
/context            # View token usage

MCP Server Not Loading

/mcp show           # List configured servers
/mcp edit [name]    # Edit configuration

Tool Permission Denied

  • Check trusted directories: ~/.copilot/config.jsontrusted_folders
  • Use --allow-all-paths or --allow-all-urls flags
  • Approve tools individually when prompted

First-Time Setup Issues

"Copilot not found" after install:

  • Restart terminal after installation
  • Check PATH includes install location
  • Run which copilot (Unix) or where copilot (Windows)

"No subscription" error:

Related Skills

  • mcp-manager: Advanced MCP server configuration
  • agent-sdk: Building custom agents
  • documentation-writing: Clear documentation practices

Official Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.78%
按下载量换算332

Antigravity

20.76%
按下载量换算240

OpenCode

18.35%
按下载量换算212

Cursor

11.63%
按下载量换算134

Gemini CLI

6.58%
按下载量换算76

github-copilot

3.15%
按下载量换算36

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills