Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions system_files/shared/usr/share/ublue-os/just/apps.just
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,35 @@ cncf:
brew bundle --file=/usr/share/ublue-os/homebrew/cncf.Brewfile
[[ -t 0 ]] && ujust --choose || true

# Install and configure the local-first Bluespeed tooling.
[group('AI')]
bluespeed:
#!/usr/bin/env bash
set -euo pipefail

brew bundle --file=/usr/share/ublue-os/homebrew/ai-tools.Brewfile

GOOSE_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/goose/config.yaml"
if [[ -e "${GOOSE_CONFIG}" ]]; then
echo "Goose config already exists: ${GOOSE_CONFIG}"
echo "AI tools installed; existing configuration was left unchanged."
exit 0
fi

mkdir -p "$(dirname "${GOOSE_CONFIG}")"
cat >"${GOOSE_CONFIG}" <<'EOF'
extensions:
linux-mcp-server:
bundled: false
cmd: linux-mcp-server
enabled: true
name: Linux MCP Server
timeout: 300
type: stdio
EOF
chmod 600 "${GOOSE_CONFIG}"
echo "Bluespeed ready. Configure Goose provider credentials in ${GOOSE_CONFIG}."

# Install ASUS laptop tools (asusctl daemon + ROG Control Center) | https://gitlab.com/asus-linux/asusctl
[group('Apps')]
install-asus:
Expand Down
Loading