refactor: reorganize installation commands and add core tool installation

This commit is contained in:
Jev Kuznetsov
2026-04-23 08:39:22 +02:00
parent 20adde9cdd
commit 444d04b0cb
+10 -4
View File
@@ -21,7 +21,6 @@ APT_PACKAGES = [
"ripgrep", "ripgrep",
"fd-find", "fd-find",
"btop", "btop",
"tldr",
] ]
@@ -177,14 +176,21 @@ def ai_skills():
@app.command() @app.command()
def bootstrap(): def core():
"""Install all base tools.""" """Install essential tools."""
apt_packages() apt_packages()
docker() docker()
uv() uv()
claude()
fzf() fzf()
zoxide() zoxide()
lazygit() lazygit()
eza() eza()
helpers()
@app.command()
def ai_tools():
"""Install AI tools and configure skills."""
claude()
copilot()
ai_skills() ai_skills()
ccusage()