feat: Add Github Copilot integration and installation instructions
This commit is contained in:
34
README.md
34
README.md
@@ -55,6 +55,7 @@ Browse the agents below and copy/adapt the ones you need!
|
|||||||
|
|
||||||
# Or target a specific tool directly
|
# Or target a specific tool directly
|
||||||
./scripts/install.sh --tool cursor
|
./scripts/install.sh --tool cursor
|
||||||
|
./scripts/install.sh --tool copilot
|
||||||
./scripts/install.sh --tool aider
|
./scripts/install.sh --tool aider
|
||||||
./scripts/install.sh --tool windsurf
|
./scripts/install.sh --tool windsurf
|
||||||
```
|
```
|
||||||
@@ -339,6 +340,7 @@ The Agency works natively with Claude Code, and ships conversion + install scrip
|
|||||||
### Supported Tools
|
### Supported Tools
|
||||||
|
|
||||||
- **[Claude Code](https://claude.ai/code)** — native `.md` agents, no conversion needed → `~/.claude/agents/`
|
- **[Claude Code](https://claude.ai/code)** — native `.md` agents, no conversion needed → `~/.claude/agents/`
|
||||||
|
- **[Github Copilot](https://github.com/copilot)** — native `.md` agents, no conversion needed → `~/.github/agents/`
|
||||||
- **[Antigravity](https://github.com/google-gemini/antigravity)** — `SKILL.md` per agent → `~/.gemini/antigravity/skills/`
|
- **[Antigravity](https://github.com/google-gemini/antigravity)** — `SKILL.md` per agent → `~/.gemini/antigravity/skills/`
|
||||||
- **[Gemini CLI](https://github.com/google-gemini/gemini-cli)** — extension + `SKILL.md` files → `~/.gemini/extensions/agency-agents/`
|
- **[Gemini CLI](https://github.com/google-gemini/gemini-cli)** — extension + `SKILL.md` files → `~/.gemini/extensions/agency-agents/`
|
||||||
- **[OpenCode](https://opencode.ai)** — `.md` agent files → `.opencode/agent/`
|
- **[OpenCode](https://opencode.ai)** — `.md` agent files → `.opencode/agent/`
|
||||||
@@ -370,14 +372,15 @@ The installer scans your system for installed tools, shows a checkbox UI, and le
|
|||||||
System scan: [*] = detected on this machine
|
System scan: [*] = detected on this machine
|
||||||
|
|
||||||
[x] 1) [*] Claude Code (claude.ai/code)
|
[x] 1) [*] Claude Code (claude.ai/code)
|
||||||
[x] 2) [*] Antigravity (~/.gemini/antigravity)
|
[x] 2) [*] Copilot (~/.github/agents)
|
||||||
[ ] 3) [ ] Gemini CLI (gemini extension)
|
[x] 3) [*] Antigravity (~/.gemini/antigravity)
|
||||||
[ ] 4) [ ] OpenCode (opencode.ai)
|
[ ] 4) [ ] Gemini CLI (gemini extension)
|
||||||
[x] 5) [*] Cursor (.cursor/rules)
|
[ ] 5) [ ] OpenCode (opencode.ai)
|
||||||
[ ] 6) [ ] Aider (CONVENTIONS.md)
|
[x] 6) [*] Cursor (.cursor/rules)
|
||||||
[ ] 7) [ ] Windsurf (.windsurfrules)
|
[ ] 7) [ ] Aider (CONVENTIONS.md)
|
||||||
|
[ ] 8) [ ] Windsurf (.windsurfrules)
|
||||||
|
|
||||||
[1-7] toggle [a] all [n] none [d] detected
|
[1-8] toggle [a] all [n] none [d] detected
|
||||||
[Enter] install [q] quit
|
[Enter] install [q] quit
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -414,6 +417,23 @@ Use the Frontend Developer agent to review this component.
|
|||||||
See [integrations/claude-code/README.md](integrations/claude-code/README.md) for details.
|
See [integrations/claude-code/README.md](integrations/claude-code/README.md) for details.
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
<details>
|
||||||
|
<summary><strong>Github Copilot</strong></summary>
|
||||||
|
|
||||||
|
Agents are copied directly from the repo into `~/.github/agents/` -- no conversion needed.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
./scripts/install.sh --tool copilot
|
||||||
|
```
|
||||||
|
|
||||||
|
Then activate in Github Copilot:
|
||||||
|
```
|
||||||
|
Use the Frontend Developer agent to review this component.
|
||||||
|
```
|
||||||
|
|
||||||
|
See [integrations/github-copilot/README.md](integrations/github-copilot/README.md) for details.
|
||||||
|
</details>
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary><strong>Antigravity (Gemini)</strong></summary>
|
<summary><strong>Antigravity (Gemini)</strong></summary>
|
||||||
|
|
||||||
|
|||||||
31
integrations/github-copilot/README.md
Normal file
31
integrations/github-copilot/README.md
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
# Github Copilot Integration
|
||||||
|
|
||||||
|
The Agency was built for Github Copilot. No conversion needed — agents work
|
||||||
|
natively with the existing `.md` + YAML frontmatter format.
|
||||||
|
|
||||||
|
## Install
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Copy all agents to your Github Copilot agents directory
|
||||||
|
./scripts/install.sh --tool copilot
|
||||||
|
|
||||||
|
# Or manually copy a category
|
||||||
|
cp engineering/*.md ~/.github/agents/
|
||||||
|
```
|
||||||
|
|
||||||
|
## Activate an Agent
|
||||||
|
|
||||||
|
In any Github Copilot session, reference an agent by name:
|
||||||
|
|
||||||
|
```
|
||||||
|
Activate Frontend Developer and help me build a React component.
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
Use the Reality Checker agent to verify this feature is production-ready.
|
||||||
|
```
|
||||||
|
|
||||||
|
## Agent Directory
|
||||||
|
|
||||||
|
Agents are organized into divisions. See the [main README](../../README.md) for
|
||||||
|
the full roster of 61 specialists.
|
||||||
Reference in New Issue
Block a user