From c50caa2a771d2816ec9870199a070714579a45b5 Mon Sep 17 00:00:00 2001 From: Jev Date: Tue, 7 Apr 2026 19:20:54 +0200 Subject: [PATCH] add tasks for installing Claude and GitHub Copilot --- tasks.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tasks.py diff --git a/tasks.py b/tasks.py new file mode 100644 index 0000000..c357997 --- /dev/null +++ b/tasks.py @@ -0,0 +1,13 @@ +from invoke import task + + +@task +def install_claude(c): + """Install Claude Code via the official install script.""" + c.run("curl -fsSL https://claude.ai/install.sh | bash", pty=True) + +@task +def install_copilot(c): + """Install GitHub Copilot via the official install script.""" + c.run("curl -fsSL https://gh.io/copilot-install | bash", pty=True) +