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) +