Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

scaffold-github-cloud-agent-environmentscaffold GitHub cloud Agent environment 搜索

Agent Skill

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

总安装

192

周安装

8

GitHub Stars

13

下载量

64
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jpcaparas/skills --skill scaffold-github-cloud-agent-environment

简介

该技能围绕 GitHub 仓库协作流程提供辅助能力,支持 Issue、PR 和分支管理。

  • 适合查询项目状态、整理变更记录或生成可执行协作事项。
  • 通过 npx skills add 命令从 jpcaparas/skills 仓库安装调用。
  • 区分只读查询与写入操作,涉及私有仓库时需确认 token 权限范围。
  • 建议结合用户授权与目标仓库策略控制操作边界。

SKILL.md

scaffold-github-cloud-agent-environment

Audit the target repository first, then scaffold or repair GitHub Copilot cloud agent's development environment around the current live GitHub Docs contract.

Decision Tree

What is the user asking for?

  • No .github/workflows/copilot-setup-steps.yml exists yet: Verify the live docs, audit the repo, draft a plan, ask only the targeted questions that repo signals cannot answer, then scaffold the workflow.
  • A copilot-setup-steps.yml file already exists but looks thin, stale, or incorrect: Audit what is there, compare it to the live docs, choose refresh mode, and regenerate a deterministic workflow that preserves the documented contract.
  • Agent runs fail or behave strangely after scaffolding: Run doctor mode first, use session-log evidence and repo facts to identify whether the fix is in-repo or in GitHub settings, then patch only what the evidence supports.
  • The user only wants explanation or planning: Read references/live-docs.md, references/project-analysis.md, references/patterns.md, and references/doctor-mode.md, then answer without scaffolding.

Quick Reference

TaskAction
Verify the live GitHub contract firstRead the URLs in references/live-docs.md
Audit a target repositoryRun scripts/audit_project.sh /path/to/project
Draft a plan from repo factsRun python3 scripts/suggest_plan.py --project /path/to/project
Render or refresh the workflowRun python3 scripts/render_setup_workflow.py --project /path/to/project --plan /path/to/plan.json
Diagnose an existing setupRun python3 scripts/doctor.py --project /path/to/project --symptom "describe the failure" --json
Understand repo questions to ask before writing filesRead references/project-analysis.md
Choose ecosystem-specific dependency stepsRead references/patterns.md
Map symptoms to fixesRead references/doctor-mode.md

Non-Negotiable Workflow

  1. Re-check the live official GitHub docs before every real scaffold or repair. Do not trust a stale memory of the feature.
  2. Audit the repository before choosing steps, runners, or environment assumptions.
  3. Distinguish repo-local fixes from GitHub settings fixes:

- repo-local: .github/workflows/copilot-setup-steps.yml, .github/copilot-instructions.md, package-manager setup, LFS checkout, service containers - settings-level: runner policy, firewall allowlist, workflow approval, copilot environment secrets or variables

  1. Keep project-specific judgment in the plan JSON, not buried inside the renderer.
  2. Ask targeted questions when ambiguity matters. Typical blockers are:

- the repo signals Windows, but the requirement is not explicit - multiple package managers or multiple toolchains compete - private registries or internal hosts are present - self-hosted or larger runners may be required - tests depend on services that are not obviously expressible as GitHub Actions services

  1. Keep the workflow anchored to .github/workflows/copilot-setup-steps.yml with one job named copilot-setup-steps.
  2. Only rely on documented job keys for that job: steps, permissions, runs-on, services, snapshot, and timeout-minutes.
  3. Treat setup-step failures as degraded environments, not hard stops. The docs say Copilot skips the remaining setup steps and continues with whatever environment exists at that point.
  4. Default to deterministic dependency installation. Let Copilot discover build and validation commands through custom instructions and repo context, not trial-and-error dependency bootstrapping.
  5. In doctor mode, start with session logs and the observed symptom. Do not guess at fixes that the logs or repo facts do not support.

Live Docs First

The official GitHub Docs pages below are the source of truth. Read them before real work:

  • https://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/customize-the-agent-environment
  • https://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/customize-the-agent-firewall
  • https://docs.github.com/en/copilot/how-tos/administer-copilot/manage-for-organization/configure-runner-for-coding-agent
  • https://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/troubleshoot-cloud-agent
  • https://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/track-copilot-sessions
  • https://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/configuring-agent-settings
  • https://docs.github.com/en/copilot/tutorials/cloud-agent/get-the-best-results
  • https://docs.github.com/actions/using-workflows/workflow-syntax-for-github-actions

Use references/live-docs.md for the purpose of each URL and the exact moments you must re-open it.

Project Analysis Rules

Before you write or replace copilot-setup-steps.yml, inspect:

  • whether .github/workflows/copilot-setup-steps.yml already exists
  • package managers, lockfiles, and toolchain version files
  • CI workflows and any existing runner choices
  • .github/copilot-instructions.md, .github/instructions/**/*.instructions.md, AGENTS.md, CLAUDE.md, and GEMINI.md
  • .gitattributes for Git LFS usage
  • .devcontainer/, Dockerfiles, Compose files, and service requirements
  • private-registry config files such as .npmrc, .yarnrc.yml, pip.conf, .pypirc, .cargo/config.toml, nuget.config, or settings.xml
  • Windows-only or internal-network signals

Run scripts/audit_project.sh first, then read references/project-analysis.md when you need the full checklist and the question set.

Deterministic Versus Heuristic Work

Keep these parts deterministic:

  • the workflow path and job name
  • the documented job-key allowlist
  • timeout-minutes staying at or below 59
  • validation triggers for easy manual and PR testing
  • low-privilege permissions
  • LFS enablement when the repo clearly uses Git LFS
  • the doctor checks for missing workflow, wrong job name, unsupported job keys, missing checkout, and settings-only failure modes

Allow these parts to stay heuristic, but surface the assumptions:

  • which runner strategy fits the repo
  • whether the workflow should set up one toolchain or several
  • exact dependency install commands
  • whether service containers are safe to express in services
  • whether the repo needs repo-level or org-level firewall or runner changes

If a heuristic choice can materially change correctness, add it to questions and ask the user instead of silently guessing.

Repeat-Run Rules

When the skill is invoked again against a project:

  • Re-verify the live docs before assuming the contract is unchanged.
  • Re-audit the repo before assuming the existing plan still fits.
  • If the workflow already exists, default to refresh mode and back up the current file before replacement.
  • Preserve the required job name and path on every refresh.
  • Prefer improving a weak setup over adding second competing setup files.
  • Use doctor mode first when the user reports failures from a real agent run.

Scaffold Rules

  • Write .github/workflows/copilot-setup-steps.yml, not a generic setup workflow under another name.
  • Keep exactly one job named copilot-setup-steps.
  • Only use supported job keys in that job.
  • Keep timeout-minutes at 59 or lower.
  • Add workflow_dispatch, push, and pull_request triggers scoped to the workflow file unless the user explicitly wants a quieter validation pattern.
  • Add contents: read when the workflow checks out the repository.
  • If the repo uses Git LFS, use actions/checkout@v5 with lfs: true.
  • Do not rely on a custom fetch-depth value. The live docs say Copilot overrides it.
  • For self-hosted runners, require the user to disable the integrated firewall and allow the documented GitHub and Copilot hosts.
  • For Windows runners, treat network controls as an explicit design decision because the integrated firewall is not compatible with Windows.
  • Put secrets and environment variables in the copilot environment, not inline in the workflow.
  • Treat .github/copilot-instructions.md as a companion file whenever Copilot needs clear build, test, or validation commands.

Doctor Mode

Doctor mode is for real failures after a scaffold or for repos with questionable existing setups.

Run python3 scripts/doctor.py --project /path/to/project --symptom "what failed" --json, then use the findings to decide the next action:

  • local workflow fix: regenerate or patch copilot-setup-steps.yml
  • repo settings fix: update firewall or workflow-approval settings
  • org settings fix: runner defaults or repository override policy
  • session investigation: inspect the live session logs before changing files

Read references/doctor-mode.md for the symptom map and references/gotchas.md for the less obvious traps.

Reading Guide

NeedRead
Official URLs and refresh policyreferences/live-docs.md
What to inspect before choosing steps or runnersreferences/project-analysis.md
Generated file layout and plan JSON shapereferences/scaffold-layout.md
Ecosystem setup patterns and when to ask questionsreferences/patterns.md
Session-log-led troubleshootingreferences/doctor-mode.md
Default-branch, firewall, workflow-approval, and runner trapsreferences/gotchas.md

Operational Scripts

  • scripts/audit_project.sh inspects a target repo and reports environment-relevant facts as JSON.
  • scripts/suggest_plan.py turns repo facts into a draft plan with assumptions, manual settings, and questions.
  • scripts/render_setup_workflow.py renders or refreshes .github/workflows/copilot-setup-steps.yml from an explicit plan.
  • scripts/doctor.py diagnoses existing setup issues and separates repo changes from GitHub settings changes.
  • scripts/validate.py checks structure, cross-references, and required support files.
  • scripts/test_skill.py runs lightweight syntax and integration checks against temp repositories.

Gotchas

  1. The workflow only matters once it exists on the default branch. A correct file on a feature branch is still inert for real Copilot runs.
  2. The live docs say only steps, permissions, runs-on, services, snapshot, and timeout-minutes are honored in the copilot-setup-steps job. Extra job keys may look valid but be ignored.
  3. If a setup step exits non-zero, Copilot skips the remaining setup steps and continues anyway.
  4. Self-hosted runners require the integrated firewall to be disabled in repository settings.
  5. Windows runners are not compatible with the integrated firewall.
  6. Organization-level runner policy can silently override a repository's preferred runs-on.
  7. GitHub Actions workflows do not run automatically when Copilot pushes unless a human approves them or repository settings allow automatic runs.
  8. actions/checkout fetch-depth is overridden by Copilot's platform behavior, so do not depend on a custom shallow-clone depth.
  9. The firewall only applies to processes started by the agent in the Actions appliance. It does not protect setup steps or MCP servers.
  10. If the repo depends on private registries or internal hosts, the real fix is usually a combination of copilot environment secrets or variables plus firewall or runner changes, not only a YAML edit.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.19%
按下载量换算23

Claude

31.44%
按下载量换算20

Cursor

20.67%
按下载量换算13

Gemini CLI

9.28%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills