Wizard-Led Setup
Start with profile basics, optional GitHub evidence, LinkedIn, Discord, resumes, LLM configuration, autonomous pulse, and a final readiness check.
Walk through the same local-first setup wizard, connect Discord DMs when you want them, and let Suitcase organize career evidence inside suitcase_world/.
Suitcase is a FastAPI + React app that connects to your LLM (Relay with llama.cpp, LM Studio, OpenAI, Anthropic, DeepSeek, or any compatible endpoint) through a thin inference bridge. It reads your career evidence from suitcase_world/ and writes reflections, patch proposals, and artifacts back — always within the sandbox.
# Clone and enter
git clone https://github.com/achuthanmukundan00/Suitcase.git
cd AutoCareer/job-copilot
# Install Python deps
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
# Install and build frontend
cd frontend && npm install && npm run build && cd ..
# Start the server
.venv/bin/python -m uvicorn app.main:app --host 0.0.0.0 --port 8000Open http://localhost:8000 — the setup wizard walks you through profile creation, LLM configuration, and everything else.