Virtual OS Commands
Cheat sheet for CipherXOS Zero-Server Terminal
ls, cd, pwd, clear
Standard UNIX navigation. 'ls' lists files, 'cd folder' to enter, 'cd ..' to go back, 'pwd' to print working directory.
touch <file> / mkdir <folder>
Create new empty files or directories directly in the VFS memory.
cat <file> / rm <file>
'cat' prints the source code of a file to the terminal. 'rm' permanently deletes the file from VFS.
run <file.js> (or node)
Execute a JavaScript file using background Web Workers. Supports console.log and catches errors. Max 5s timeout.
asm <file.asm> / vm-run <file.bin>
(OS-in-OS) Compile assembly code into binary, and execute it on the custom Cipher-8 Virtual CPU.
echo "text" > <file>
Write text directly into a file. Use > to overwrite, and >> to append text at the end.
snapshot / rollback
Local version control. 'snapshot' zips the entire codebase into LocalStorage. 'rollback' restores the exact state.
grep "pattern" *
Global Regex search. Scans all files in the current directory and prints lines matching the pattern.
ai "prompt"
Dispatches a task directly to the AI Agent in the chatbox for autonomous coding.
curl <url>
Fetches data from an external API or URL and prints the JSON/Text (Truncated to 1000 chars).
swarm status / swarm run
Controls the WebRTC P2P mesh network for distributed execution (Experimental).
python <file.py>
Boot the Wasm Python Micro-VM and execute Python scripts locally with real-time stdout piping.
swarm seed
Package the entire OPFS VFS and seed it to the global WebTorrent P2P CDN. Generates a Magnet URI.
matrix
Launch the WebGPU-accelerated 3D Holographic File System visualizer.
agent start | task <desc>
Boot the Autonomous WebWorker AI. Use 'agent task' to make it autonomously write code to the VFS.
[UP/DOWN Arrows] & [TAB]
Arrow keys cycle through command history. TAB key auto-completes filenames in the current directory.