Congratulations! You're all set up!
Your is now a powerful coding environment ready for development.
First login: You may see a configuration wizard
When you first connect to your VPS after installation, you might see the Powerlevel10k configuration wizard — a colorful terminal setup screen.
Don't worry, this is optional! You can press q to skip it, or follow the prompts to customize your terminal appearance. ACFS already configured sensible defaults, so skipping is perfectly fine.
First: Authenticate Your AI Tools
Before using AI coding assistants, you need to authenticate them. This is a one-time setup that links your subscriptions:
Claude Code
Follow the prompts. If it prints a URL, open it on your laptop to log in.
How the authentication works:
- The terminal shows a URL like
https://claude.ai/oauth/... - Copy that URL and paste it into your web browser (on your laptop)
- Log in to Claude in your browser
- The browser shows a code (like "ABCD-1234")
- Copy that code and paste it back into your terminal window (the same one running Claude)
When your browser says "Paste this into Claude Code" — that means paste the code into the terminal window where you typed claude.
Codex CLI (if using OpenAI)
Starts the login flow. If it prints a URL, open it on your laptop to authenticate.
Gemini CLI (optional)
Follow the prompts to authenticate (Google account).
💡 Tip
cc (Claude), cod (Codex), gmi (Gemini).Your Daily Workflow
Here's what working with your VPS looks like day-to-day:
Connect to your VPS
Open your terminal and SSH in.
Resume or create a session
See existing sessions
Resume a session
Or create new
Start coding with AI
Launch Claude Code
When you're done for the day
Detach from session:
Disconnect from VPS
Your session keeps running! Come back tomorrow and everything is exactly where you left it.
💡 Remember: Connect → Session → Code → Detach
Starting a New Project
Ready to build something? Here's the pattern:
1. Create a session for your project
This creates a persistent workspace named "my-awesome-app".
2. Create and navigate to a project folder
3. Start Claude and describe your project
Tell Claude what you want to build. For example:
💡 Tip
Finding Your Way Around
Your home folder
Everything you create lives in /home/ubuntu (or just ~).
Go to your home folder
See what's here
List files (with icons!)
We installed lsd — a prettier version of ls.
Navigate into a folder
Enter a folder
Go back up
Find files fast
Search file contents
Find files by name
�� Tip
z (zoxide) to jump to folders you've visited before. Just type z proj to jump to your projects folder!Your First 5 Minutes
Let's make sure everything works with a quick test run.
Create a project folder
Authenticate Claude
The terminal will display a URL. Copy it and open in your laptop's browser to log in, then return to your terminal.
Start Claude Code
After authenticating, this launches Claude Code.
Your first prompt
In the Claude prompt, type:
Watch the magic!
Claude will:
- ✓ Create a file called hello.py
- ✓ Write the Python code
- ✓ Run the script for you
- ✓ Show "Hello from AI!" in the output
🎉 Congratulations! You just used AI to write and run code!
Getting Back In
Closed your terminal? Here's how to reconnect:
1. Open your terminal app
Ghostty, WezTerm, or Windows Terminal
2. Connect to your VPS
3. Resume your session (if using NTM)
See your sessions
Resume a session
This brings back exactly where you left off — including any running Claude sessions!
💡 Pro tip: Set up SSH config for easier access
Add this to your local ~/.ssh/config file:
Host myserver
HostName YOUR_VPS_IP
User ubuntu
IdentityFile ~/.ssh/acfs_ed25519Then just type: ssh myserver
What you can do now
Start Claude Code
Launch your AI coding assistant
ccUse with
Manage terminal sessions
ntm new myprojectSearch with
Fast code search
rg "pattern"with
Visual git interface
lazygitHow to edit files manually (when AI gets something wrong)
Quick edits with nano
For simple fixes, nano is already installed on your VPS:
Open a file in nano
Nano shortcuts:
- Ctrl + O, then Enter — Save
- Ctrl + X — Exit
- Ctrl + W — Search
Full IDE with Cursor (recommended)
Cursor is an AI-native code editor with great remote editing support (like VS Code Remote SSH).
- Download Cursor from cursor.com
- Open the command palette: Cmd/Ctrl + Shift + P
- Search: Remote-SSH: Connect to Host
- Connect to ubuntu@YOUR_VPS_IP (it will use your SSH key)
💡 Tip
Ready for the Advanced Workflow?
After completing the Learning Hub basics, dive into the powerful multi-agent workflow that lets you build production-ready software at incredible speed. You'll learn how to orchestrate multiple AI agents working in parallel, use the "best of all worlds" planning technique, and run agent swarms that build features while you sleep.
Happy coding!
Your agentic coding flywheel is ready to spin.