docs: move AGENTS.md to root, add copilot-setup-steps

- Move AGENTS.md to repository root per agents.md spec
- Add copilot-setup-steps.yml workflow for Copilot coding agent
- Pre-installs: Go deps, goimports, MCP Inspector, builds server binary
This commit is contained in:
Sam Morrow
2026-01-28 16:24:27 +01:00
parent 0877f6c18d
commit 79466b64df
2 changed files with 51 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
# https://docs.github.com/en/copilot/customizing-copilot/customizing-the-development-environment-for-copilot-coding-agent
name: "Copilot Setup Steps"
on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml
jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Download Go dependencies
run: go mod download
- name: Build server
run: go build -v ./cmd/github-mcp-server
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports@latest
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install MCP Inspector
run: npm install -g @modelcontextprotocol/inspector@0.7.0
- name: Verify tools
run: |
echo "Go version: $(go version)"
echo "goimports: $(which goimports)"
echo "MCP Inspector: $(npx @modelcontextprotocol/inspector@0.7.0 --version)"
echo "Server binary: $(ls -la github-mcp-server)"
View File