Setup Copilot banner
Everyone-Needs-A-Copilot Everyone-Needs-A-Copilot

Setup Copilot

Development community

Description

--- name: setup-copilot description: Universal Claude Copilot setup. Auto-detects context and routes to the appropriate setup command. --- # Universal Setup Router Auto-detects your context and runs the correct setup command. ## Step 1: Detect Context ```bash pwd if [ -d .claude ] && { ls .claude/commands/*.md >/dev/null 2>&1 || ls .claude/agents/*.md >/dev/null 2>&1; }; then echo "PROJECT_EXISTS" else echo "NEW_PROJECT" fi echo $HOME ``` Store: `CURRENT_DIR`, `HOME_PATH`, `PROJECT_STAT

Installation

Installs to ~/.claude/commands/everyone-needs-a-copilot-claude-copilot-setup-copilot.md

Terminal
mkdir -p ~/.claude/commands && curl -fsSL https://raw.githubusercontent.com/Everyone-Needs-A-Copilot/claude-copilot/HEAD/.claude/commands/setup-copilot.md -o ~/.claude/commands/everyone-needs-a-copilot-claude-copilot-setup-copilot.md

Restart Claude Code, or start a new session, for it to be picked up.

Full documentation available on GitHub

View Source Repository