Combines three repositories into a single workspace: - go-agent → pkg/orchestrator (Clotho), pkg/jobrunner, pkg/loop, cmd/ - go-agentic → pkg/lifecycle (allowance, sessions, plans, dispatch) - php-devops → repos.yaml, setup.sh, scripts/, .core/ Module path: forge.lthn.ai/core/agent All packages build, all tests pass. Co-Authored-By: Virgil <virgil@lethean.io>
28 lines
487 B
Bash
Executable file
28 lines
487 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Quick setup script - just run: ./setup.sh
|
|
set -e
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "=== Host UK Developer Workspace Setup ==="
|
|
echo ""
|
|
|
|
# Install dependencies
|
|
./scripts/install-deps.sh
|
|
|
|
# Install core CLI
|
|
./scripts/install-core.sh
|
|
|
|
# Run doctor to verify
|
|
echo ""
|
|
echo "=== Verifying environment ==="
|
|
core doctor || true
|
|
|
|
# Clone repos
|
|
echo ""
|
|
echo "=== Cloning repositories ==="
|
|
core setup
|
|
|
|
echo ""
|
|
echo "=== Setup complete! ==="
|
|
echo "Run 'core health' to check status"
|