CyborgShell - Getting Started in 5 Minutes

Table of Contents

Overview

CyborgShell = 1980s BASIC + Modern JavaScript + AI + Cloud + Runs Everywhere

Type code on your phone, continue on Xbox, finish on PC. Same URL, same environment, zero setup.

Why It's Different

🔒 Browser-Based = Your Privacy

🔐 Complete Privacy Option

Two Ways to Code

Immediate Mode (No Line Numbers)

Type and run instantly:

api.print("Hello!");
for(let i=0; i<5; i++) api.print(i);

Program Mode (With Line Numbers)

Store and save:

10 api.print("Hello!");
20 for(let i=0; i<5; i++) api.print(i);
run
save myprogram
Key Rule: If you see a line number, it's stored. No line number? Runs immediately.

Essential Commands

# Files
save mycode          # Save current program
load mycode          # Load program
dir                  # List saved files
cls                  # Clear screen
run                  # Execute program

# Editing
list                 # Show program
edit 10              # Edit line 10
new                  # Clear program

AI in 4 Ways

1. Quick Questions

!what is the capital of France?
!how do I sort an array in JavaScript?

2. Conversations

chatgpt
write me a function to calculate fibonacci
now make it recursive

3. Named Sessions (Keep Context Separate)

chatgpt 
coding: help me debug this
story: write about robots
coding: continue helping
story: make it dramatic

4. Manus.im and other AI-Agents

Go to manus.im, ask it to go to cyborgshell.com, read the help and instruct it to perform a task.

💡 Pro tip: Sessions remember your conversations! Save them with chatgpt save sessionname and load later with chatgpt load sessionname. Great for building reusable knowledge bases.

For advanced session management (training, pipelines), see the Session Management Guide.

Your First Program

# Type this (immediate mode)
10 api.print("My first program!");
20 for(let i=1; i<=5; i++) 
30 {
40     api.print("Count: " + i);
50 }

# Run it
run

# Save it
save first

# Load it anytime
load first
run

Your First AI Pipeline

# Setup 3 files
newfile 3
files
file 1
filename input.txt
file 2
filename processed.txt
file 3
filename output.txt
file 1

# Link them with AI
link 2 1 chatgpt openai improve this text
link 3 2 translate Spanish

# Save the pipeline
project save my-first-pipeline

# Use it - edit file 1
file 1
edit 10
10 The quick brown fox jumps

# Files 2 and 3 auto-process!
files                # See D (dirty/processed) flag
saveall              # Save all results

💡 Tips

  1. No line number = immediate, with line number = stored
  2. Commands work on phone, Xbox, PC - identically
  3. AI sessions keep context - use named sessions for different tasks
  4. Projects are pipelines - edit input, output auto-generates
  5. Everything saves to cloud - access from any device

What Now?

Philosophy

No installation. No setup. No barriers.

Just code.

On your phone at lunch. On Xbox at night. On PC at work.

Welcome to CyborgShell. 🚀