copilot-coding-agentlisted
Install: claude install-skill aiskillstore/marketplace
# GitHub Copilot Coding Agent — Issue → Draft PR automation
> If you add the `ai-copilot` label to an issue, GitHub Actions automatically assigns it to Copilot,
> and Copilot creates a branch → writes code → opens a Draft PR.
## When to use this skill
- When PMs/designers create issues and Copilot starts implementation without a developer
- When offloading backlog issues (refactors/docs/tests) to Copilot
- When delegating follow-up work created by Vibe Kanban / Conductor to Copilot
- When automating pipelines like Jira → GitHub Issue → Copilot PR
---
## Prerequisites
- **GitHub plan**: Copilot Pro+, Business, or Enterprise
- **Copilot Coding Agent enabled**: Must be enabled in repo settings
- **gh CLI**: Authenticated
- **PAT**: Personal Access Token with `repo` scope
---
## One-time setup
```bash
# One-click setup (register token + deploy workflow + create label)
bash scripts/copilot-setup-workflow.sh
```
This script does:
1. Register `COPILOT_ASSIGN_TOKEN` as a repo secret
2. Deploy `.github/workflows/assign-to-copilot.yml`
3. Create the `ai-copilot` label
---
## Usage
### Option 1: GitHub Actions automation (recommended)
```bash
# Create issue + ai-copilot label → auto-assign Copilot
gh issue create \
--label ai-copilot \
--title "Add user authentication" \
--body "Implement JWT-based auth with refresh tokens. Include login, logout, refresh endpoints."
```
### Option 2: Add a label to an existing issue
```bash
# Add label to issue #42 → trigger Action