Telegram Commands Reference

Complete list of Telegram bot commands.

Built-in Commands

CommandDescription
/startShow welcome message and help
/helpList all available commands
/urlShow web terminal URL
/stop_procStop any running background process
/llmToggle LLM mode on/off
/llm_clearClear LLM conversation history

Predefined Shortcuts

CommandExecutesDescription
/statusgit statusGit status
/pullgit pullGit pull
/loggit log --oneline -10Recent commits
/diffgit diff --statGit diff summary
/lsls -laList files
/branchgit branch -aList branches
/installnpm installInstall dependencies
/buildnpm run buildBuild project
/testnpm testRun tests
/devnpm run devStart dev server

Raw Commands

Send any text without / to execute it as a shell command:

ls -la
git log --oneline -5
cat README.md
echo "Hello World"
npm run lint

LLM Mode Commands

When LLM mode is enabled (/llm), send natural language:

show me the git status
list all JavaScript files
what changed in the last commit?
find TODO comments in the code
run the tests and tell me what failed

Response Format

Command output is returned in code blocks:

Running: `git status`...

​```
On branch main
Your branch is up to date with 'origin/main'.

nothing to commit, working tree clean
​```

Limitations

  • Output truncated at 4000 characters
  • Commands timeout after 60 seconds
  • Long-running commands (like /dev) run in background