Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 4.85 KB

File metadata and controls

65 lines (41 loc) · 4.85 KB

Copilot-fleet

image

GitHub Copilot Custom Agent definitions plus supporting scripts (currently focused on Letta Cloud integration).

Quickstart (Python)

This repo is Python-first. For local development we recommend using uv.

Option A (recommended): uv

uv venv
source .venv/bin/activate
uv pip install -r requirements.txt
cp .env.example .env
uv run scripts/letta_cloud_create_agent.py

Option B: venv + pip

python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
python scripts/letta_cloud_create_agent.py

Custom Agents

This repo aims to show agent definitions (so they are easy to browse/review), while also making them easy to install into VS Code.

Where agents must live to be used

VS Code custom agents can be installed in either location:

  • User data (per-user install): store agent files in your local VS Code user data folder
  • Workspace install (recommended for teams): store agent files under .github/agents/

The agents/ folder in this repo acts as a catalog. You can copy any file from agents/ into .github/agents/ to enable it for the workspace.

Available agents

Agent Description Install
letta-cloud-agent-builder Write scripts/workflows that coordinate multiple Letta agents.
- Set up message passing, orchestration, or relay logic so agents can share information or collaborate through your code.
- Automate multi-agent workflows where one agent’s output becomes another’s input.
Install in VS Code
Install in VS Code Insiders

Notes:

  • The install buttons above follow the same pattern used by github/awesome-copilot.
  • They will work once this repo is available at https://github.com/qredence/git-fleet (since the install links target that raw URL).

Contributing

See CONTRIBUTING.md for the recommended workflow and repo conventions.

License

MIT — see LICENSE.

alt text alt text