Openai Copilot banner
feiskyer feiskyer

Openai Copilot

AI community

Description

Your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools).

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

OpenAI Copilot

Your life Copilot powered by LLM models (CLI interface for LLM models with MCP tools).

Features:

  • OpenAI, Azure OpenAI, Anthropic Claude, Google Gemini and OpenAI-compatible services support.
  • Web access and Google search support without leaving the terminal.
  • Automatically execute any steps predicted from prompt instructions.
  • Model Context Protocol (MCP) support for bridging external tools.

Install

Install the copilot with the commands below:

go install github.com/feiskyer/openai-copilot/cmd/openai-copilot@latest

Setup

Environment Description
OPENAI_API_KEY OpenAI key. Required for OpenAI or OpenAI-compatible services.
OPENAI_API_BASE OpenAI Base URL. Optional.
AZURE_OPENAI_API_KEY Azure OpenAI API key. Required for Azure OpenAI service.
AZURE_OPENAI_API_BASE Azure OpenAI Base URL. Required for Azure OpenAI service.
AZURE_OPENAI_API_VERSION Azure OpenAI API version. Default is 2025-03-01-preview

LLM Integrations

OpenAI

Set the OpenAI [API key](https://platform.openai.com/account/api-keys) as the `OPENAI_API_KEY` environment variable to enable OpenAI functionality.

Anthropic Claude

Anthropic Claude provides an [OpenAI compatible API](https://docs.anthropic.com/en/api/openai-sdk), so it could be used by using following config:

  • OPENAI_API_KEY=
  • OPENAI_API_BASE='https://api.anthropic.com/v1/'
Azure OpenAI

For [Azure OpenAI service](https://learn.microsoft.com/en-us/azure/cognitive-services/openai/quickstart?tabs=command-line&pivots=rest-api#retrieve-key-and-endpoint), set the following environment variables:

  • AZURE_OPENAI_API_KEY=
  • AZURE_OPENAI_API_BASE=https://.openai.azure.com/
  • AZURE_OPENAI_API_VERSION=2025-03-01-preview
Google Gemini