diff --git a/.agents/resume b/.agents/resume deleted file mode 100755 index f29d5fe2..00000000 --- a/.agents/resume +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -echo "No persistent services require repair." diff --git a/.agents/setup b/.agents/setup deleted file mode 100755 index 59ad2500..00000000 --- a/.agents/setup +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -mise_bin="$HOME/.local/bin/mise" -export PATH="$HOME/.local/bin:$PATH" - -echo "Installing mise..." -if [[ ! -x "$mise_bin" ]]; then - curl -fsSL https://mise.run | sh -fi - -profile_marker="# Techulus Cloud toolchains managed by mise" -if ! grep -Fqx "$profile_marker" "$HOME/.bash_profile" 2>/dev/null; then - cat >> "$HOME/.bash_profile" <<'EOF' - -# Techulus Cloud toolchains managed by mise -if [[ -x "$HOME/.local/bin/mise" ]]; then - eval "$("$HOME/.local/bin/mise" activate bash)" -fi -EOF -fi - -go_version="$(awk '$1 == "go" { print $2; exit }' "$repo_root/agent/go.mod")" - -echo "Installing repository toolchains..." -"$mise_bin" use --global "go@$go_version" node@24 pnpm@11 -for config in \ - "$repo_root/agent/mise.toml" \ - "$repo_root/web/mise.toml" \ - "$repo_root/docs/mise.toml"; do - "$mise_bin" trust "$config" - ( - cd "$(dirname "$config")" - "$mise_bin" install - ) -done - -echo "Installing web dependencies..." -( - cd "$repo_root/web" - "$mise_bin" exec -- pnpm install --frozen-lockfile -) - -echo "Downloading Go dependencies..." -for module in agent cli deployment/updater; do - ( - cd "$repo_root/$module" - "$mise_bin" exec -- go mod download - ) -done - -echo "Orb setup complete."