14 lines
357 B
Python
14 lines
357 B
Python
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)
|
|
|