scaffold-github-cloud-agent-environment
SkillAI & modelsAudit and scaffold `.github/workflows/copilot-setup-steps.yml` for GitHub Copilot cloud agent environments. Use for missing or broken setup workflows, runner/firewall/dependency/LFS/proxy issues, or Copilot setup repair. Do NOT use for generic GitHub Actions.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the scaffold-github-cloud-agent-environment skill
What this skill tells your AI
The instructions your AI receives, as published by jpcaparas/skills in skills/agents/scaffold-github-cloud-agent-environment/SKILL.md and read by ahel’s review.
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.ymlexists 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.ymlfile already exists but looks thin, stale, or incorrect: Audit what is there, compare it to the live docs, chooserefreshmode, 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, andreferences/doctor-mode.md, then answer without scaffolding.
Quick Reference
| Task | Action |
|---|---|
| Verify the live GitHub contract first | Read the URLs in references/live-docs.md |
| Audit a target repository | Run scripts/audit_project.sh /path/to/project |
| Draft a plan from repo facts | Run python3 scripts/suggest_plan.py --project /path/to/project |
| Render or refresh the workflow | Run python3 scripts/render_setup_workflow.py --project /path/to/project --plan /path/to/plan.json |
| Diagnose an existing setup | Run python3 scripts/doctor.py --project /path/to/project --symptom "describe the failure" --json |
| Understand repo questions to ask before writing files | Read references/project-analysis.md |
| Choose ecosystem-specific dependency steps | Read references/patterns.md |
| Map symptoms to fixes | Read references/doctor-mode.md |
Non-Negotiable Workflow
- Re-check the live official GitHub docs before every real scaffold or repair. Do not trust a stale memory of the feature.
- Audit the repository before choosing steps, runners, or environment assumptions.
- 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,
copilotenvironment secrets or variables
- repo-local:
- Keep project-specific judgment in the plan JSON, not buried inside the renderer.
- 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
- Keep the workflow anchored to
.github/workflows/copilot-setup-steps.ymlwith one job namedcopilot-setup-steps. - Only rely on documented job keys for that job:
steps,permissions,runs-on,services,snapshot, andtimeout-minutes. - 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.
- Default to deterministic dependency installation. Let Copilot discover build and validation commands through custom instructions and repo context, not trial-and-error dependency bootstrapping.
- 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-environmenthttps://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/customize-the-agent-firewallhttps://docs.github.com/en/copilot/how-tos/administer-copilot/manage-for-organization/configure-runner-for-coding-agenthttps://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/troubleshoot-cloud-agenthttps://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/track-copilot-sessionshttps://docs.github.com/en/copilot/how-tos/use-copilot-agents/cloud-agent/configuring-agent-settingshttps://docs.github.com/en/copilot/tutorials/cloud-agent/get-the-best-resultshttps://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.ymlalready 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, andGEMINI.md.gitattributesfor 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, orsettings.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-minutesstaying at or below59- 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
refreshmode 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-minutesat59or lower. - Add
workflow_dispatch,push, andpull_requesttriggers scoped to the workflow file unless the user explicitly wants a quieter validation pattern. - Add
contents: readwhen the workflow checks out the repository. - If the repo uses Git LFS, use
actions/checkout@v5withlfs: true. - Do not rely on a custom
fetch-depthvalue. 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
copilotenvironment, not inline in the workflow. - Treat
.github/copilot-instructions.mdas 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
| Need | Read |
|---|---|
| Official URLs and refresh policy | references/live-docs.md |
| What to inspect before choosing steps or runners | references/project-analysis.md |
| Generated file layout and plan JSON shape | references/scaffold-layout.md |
| Ecosystem setup patterns and when to ask questions | references/patterns.md |
| Session-log-led troubleshooting | references/doctor-mode.md |
| Default-branch, firewall, workflow-approval, and runner traps | references/gotchas.md |
Operational Scripts
scripts/audit_project.shinspects a target repo and reports environment-relevant facts as JSON.scripts/suggest_plan.pyturns repo facts into a draft plan with assumptions, manual settings, and questions.scripts/render_setup_workflow.pyrenders or refreshes.github/workflows/copilot-setup-steps.ymlfrom an explicit plan.scripts/doctor.pydiagnoses existing setup issues and separates repo changes from GitHub settings changes.scripts/validate.pychecks structure, cross-references, and required support files.scripts/test_skill.pyruns lightweight syntax and integration checks against temp repositories.
Gotchas
- 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.
- The live docs say only
steps,permissions,runs-on,services,snapshot, andtimeout-minutesare honored in thecopilot-setup-stepsjob. Extra job keys may look valid but be ignored. - If a setup step exits non-zero, Copilot skips the remaining setup steps and continues anyway.
- Self-hosted runners require the integrated firewall to be disabled in repository settings.
- Windows runners are not compatible with the integrated firewall.
- Organization-level runner policy can silently override a repository's preferred
runs-on. - GitHub Actions workflows do not run automatically when Copilot pushes unless a human approves them or repository settings allow automatic runs.
actions/checkoutfetch-depthis overridden by Copilot's platform behavior, so do not depend on a custom shallow-clone depth.- The firewall only applies to processes started by the agent in the Actions appliance. It does not protect setup steps or MCP servers.
- If the repo depends on private registries or internal hosts, the real fix is usually a combination of
copilotenvironment secrets or variables plus firewall or runner changes, not only a YAML edit.
Signals
- GitHub stars
- 48
- Forks
- 3
- Last commit
- Sep 2026
ahel review
S4info
community integration — published by jpcaparas, not githubK6low
bundled executables the agent is told to runK1binfo
installs-packages (in scripts/suggest_plan.py)K1binfo
installs-packages (in references/patterns.md)
Automated review, not a security audit. Ruleset v1+k2.
Advanced
- Catalog kind
- skill
- Gateway key
scaffold-github-cloud-agent-environment- Source
- github.com/jpcaparas/skills