add tasks for installing Claude and GitHub Copilot

This commit is contained in:
Jev
2026-04-07 19:20:54 +02:00
parent 944e7b8538
commit c50caa2a77
+13
View File
@@ -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)