Telegram Commands Reference
Complete list of Telegram bot commands.
Built-in Commands
| Command | Description |
|---|---|
/start | Show welcome message and help |
/help | List all available commands |
/url | Show web terminal URL |
/stop_proc | Stop any running background process |
/llm | Toggle LLM mode on/off |
/llm_clear | Clear LLM conversation history |
Predefined Shortcuts
| Command | Executes | Description |
|---|---|---|
/status | git status | Git status |
/pull | git pull | Git pull |
/log | git log --oneline -10 | Recent commits |
/diff | git diff --stat | Git diff summary |
/ls | ls -la | List files |
/branch | git branch -a | List branches |
/install | npm install | Install dependencies |
/build | npm run build | Build project |
/test | npm test | Run tests |
/dev | npm run dev | Start 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