Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

copilot-cli-baseGitHub Copilot CLI base 搜索

Agent Skill

copilot-cli-base 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,945

周安装

202

GitHub Stars

1

下载量

1,485
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install copilot-cli-base

简介

GitHub Copilot CLI 的参考知识库。在回答有关 Copilot CLI 功能、命令、配置、插件、挂钩、技能、MC 的问题时使用

SKILL.md

name
copilot-cli
description
>
license
MIT-0
compatibility
Designed for OpenClaw, Claude Code, GitHub Copilot, and compatible AgentSkills clients
metadata
openclaw
emoji
⌨️
homepage
https://docs.github.com/en/copilot/concepts/agents/copilot-cli/about-copilot-cli
os
["darwin", "linux", "win32"]
requires
bins
["copilot"]
install
kind
node
package
@github/copilot
bins
["copilot"]
label
Install via npm

Copilot CLI Reference Skill

GitHub Copilot CLI is a terminal-native AI coding agent. This skill provides reference docs for all features, commands, and operational patterns.

When to Use

USE this skill when:

  • Answering questions about Copilot CLI features, commands, or configuration
  • Setting up CI/CD automation with Copilot CLI or GitHub Actions
  • Troubleshooting Copilot CLI errors, auth, or rate limits
  • Creating custom agents, plugins, hooks, or MCP server integrations
  • Writing prompts for programmatic/autopilot execution
  • Comparing Copilot CLI vs Claude Code for a specific use case

DON'T use this skill when:

  • General Git or GitHub questions unrelated to Copilot CLI (→ use git CLI / GitHub skill)
  • VS Code Copilot Chat or Copilot Edits features (→ IDE-specific docs)
  • GitHub Actions workflows that don't involve Copilot (→ Actions docs)
  • Copilot Workspace or other non-CLI Copilot products

Setup

Install: npm install -g @github/copilot (or via GitHub CLI extension) Auth: copilot → trust directory → /login Config: edit ~/.copilot/config.json directly (no copilot config set command)

See references/getting-started.md for full installation, authentication, and configuration details.

Quick Reference

Interactive: copilot → trust directory → /login → prompt Programmatic: copilot -p "PROMPT" --yolo --no-ask-user -s With permissions: copilot -p "PROMPT" --allow-tool='shell(git:*), write' --no-ask-user Autopilot: copilot --autopilot --yolo --max-autopilot-continues 10 -p "PROMPT" Custom agent: copilot -p "PROMPT" --agent=my-agent Model override: copilot -p "PROMPT" --model claude-opus-4.6 Plan mode: Shift+Tab to cycle modes (standard/plan/autopilot) Research: /research TOPIC → deep report with citations Fleet: /fleet PROMPT → parallel subagent execution Chronicle: /chronicle standup · tips · improve · reindex

Copilot CLI vs Claude Code

NeedCopilot CLIClaude Code
Rate-limited on Claude Code✅ Use as fallback
CI/CD automation✅ Built-in Actions supportLimited
Clean stdout (no PTY/ANSI)✅ Better
Long iterative reviews✅ Better for many iterations

See references/patterns-and-best-practices.md for the full decision matrix.

Key Gotchas

Automation:

  • Always use -p (not -i) for automation — -i hangs
  • Always set --max-autopilot-continues=N in CI/CD to prevent runaway loops
  • Size timeouts by complexity: 120s (simple) → 1800s (large)
  • Background servers die between exec spawns — restart each time

OpenClaw Integration (programmatic exec):

  • Copilot requires a real TTY — pipe/stdout redirection causes EPIPE crashes
  • Use pty: true on exec calls to avoid output fragmentation
  • Set timeout: 120 minimum (MCP startup ~3s + inference ~25s+)
  • Use --allow-all (or --yolo) for file write permissions in --no-ask-user mode
  • Working formula:
  copilot -p "<prompt>" --no-ask-user --allow-all --max-autopilot-continues 3
  # + exec options: pty=true, timeout=120
  • The --add-dir <path> flag grants access to specific directories without full --allow-all

Configuration:

  • --yolo does NOT skip folder trust — pre-trust in ~/.copilot/config.json
  • No copilot config set — edit config JSON manually
  • Custom instructions now combine (not cascade) — avoid conflicting instructions

Experimental features:

  • /chronicle and history queries require --experimental or /experimental on
  • Premium requests vary by model multiplier — check with /model

See references/troubleshooting.md for all issues and fixes.

Quick Responses

QuestionAnswer
How do I start Copilot CLI?copilot (interactive)
How do I use it in CI/CD?copilot -p "PROMPT" --yolo --no-ask-user -s
How do I create a custom agent?See references/automation-and-delegation.md
How do I add an MCP server?See references/customization.md
How do I research a topic?/research TOPIC in interactive mode

Reference Documents

Full index: references/index.md

FileContents
getting-started.mdInstallation, auth, config, permissions, env vars, plan mode overview
usage.mdInteractive & programmatic modes, 40+ slash commands, shortcuts, model selection, config settings, built-in agents
automation-and-delegation.mdCI/CD, GitHub Actions, autopilot, delegate, fleet, custom agent creation
customization.mdCustom instructions (combining), plugins, MCP servers, enterprise governance
hooks.mdHook types (command + prompt), config, denial responses, PowerShell support
integrations.mdVS Code integration (diffs, sessions, selection), ACP server
research.md/research reports with citations, /chronicle session history & insights
troubleshooting.mdAuth, rate limits, autopilot runaway, enterprise access, diagnostics
patterns-and-best-practices.mdDecision matrix, prompt engineering, anti-patterns

All files in references/ directory.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.52%
按下载量换算1,315

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install copilot-cli-base 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills