From 3412af720dd499dc0d7306f63deaf3daa0a0c667 Mon Sep 17 00:00:00 2001 From: Eleanor Berger Date: Tue, 7 Apr 2026 11:52:58 +0200 Subject: [PATCH] [AI] Fix update-readme workflow race Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/update-readme.yml | 3 +++ README.md | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml index 9742975..6d0559c 100644 --- a/.github/workflows/update-readme.yml +++ b/.github/workflows/update-readme.yml @@ -15,6 +15,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v5 @@ -33,4 +35,5 @@ jobs: git config --local user.name "github-actions[bot]" git add README.md git diff --staged --quiet || git commit -m "Update skills table in README" + git pull --rebase # Handle concurrent pushes git push diff --git a/README.md b/README.md index f1efb64..df9ecef 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Discover how Agent Skills can customise AI agents in these free tutorials. | [context7](https://github.com/intellectronica/agent-skills/tree/main/skills/context7) | Retrieve up-to-date documentation for software libraries, frameworks, and components via the Context7 API. This skill should be used when looking up documentation for any programming library or framework, finding code examples for specific APIs or features, verifying correct usage of library functions, or obtaining current information about library APIs that may have changed since training. | | | ```npx skills add intellectronica/agent-skills --skill context7``` | | | ```claude plugin install context7@intellectronica-skills``` | -| [copilot-sdk](https://github.com/intellectronica/agent-skills/tree/main/skills/copilot-sdk) | This skill provides guidance for creating agents and applications with the GitHub Copilot SDK. It should be used when the user wants to create, modify, or work on software that uses the GitHub Copilot SDK in TypeScript, Python, Go, or .NET. The skill covers SDK usage patterns, CLI configuration, custom tools, MCP servers, and custom agents. | +| [copilot-sdk](https://github.com/intellectronica/agent-skills/tree/main/skills/copilot-sdk) | This skill helps with GitHub Copilot SDK work across Node.js/TypeScript, Python, Go, .NET, and Java. It covers setup, authentication, permissions, streaming events, custom tools, custom agents, MCP servers, hooks, skills, and session persistence. | | | ```npx skills add intellectronica/agent-skills --skill copilot-sdk``` | | | ```claude plugin install copilot-sdk@intellectronica-skills``` | | [gog-cli](https://github.com/intellectronica/agent-skills/tree/main/skills/gog-cli) | This skill provides comprehensive instructions for using gogcli (gog), a fast, script-friendly CLI for Google Workspace services including Gmail, Calendar, Drive, Docs, Sheets, Slides, Chat, Classroom, Contacts, Tasks, People, Groups, and Keep. This skill should be used when the user wants to interact with Google services via the command line, including reading/sending email, managing calendar events, working with Google Drive files, managing classroom courses, or any other Google Workspace operations. The skill assumes gog is installed and authorised. |