2026-07-11 22:16:47 +07:00
|
|
|
pub const SYSTEM_PROMPT: &str = include_str!("../src-misc/system-prompt.txt");
|
|
|
|
|
pub const SYSTEM_TOOLS: &str = include_str!("../src-misc/system-tools.txt");
|
|
|
|
|
|
2026-07-11 13:16:10 +07:00
|
|
|
pub const HELP_TEXT: &str = "
|
|
|
|
|
ZESDEX - Help
|
|
|
|
|
=============
|
|
|
|
|
Navigation:
|
|
|
|
|
Ctrl+Q Quit
|
|
|
|
|
Ctrl+H Help (this screen)
|
|
|
|
|
Ctrl+P Settings
|
|
|
|
|
Ctrl+A Cycle agent mode (Auto/Normal/Plan/Yolo)
|
|
|
|
|
Ctrl+B Bash panel
|
|
|
|
|
Ctrl+S Session hub
|
|
|
|
|
Ctrl+T Task list
|
|
|
|
|
Ctrl+W Workflow view
|
|
|
|
|
Ctrl+K Key input mode
|
|
|
|
|
Esc Cancel / back
|
|
|
|
|
Tab Autocomplete
|
|
|
|
|
Up/Down History navigation
|
|
|
|
|
|
|
|
|
|
Modes:
|
|
|
|
|
Auto Automatic approval of most operations
|
|
|
|
|
Normal Manual approval for risky operations
|
|
|
|
|
Plan Planning mode - no code changes
|
|
|
|
|
Yolo Unrestricted - full autonomy
|
|
|
|
|
|
|
|
|
|
Input:
|
|
|
|
|
/help Show help
|
|
|
|
|
/clear Clear screen
|
2026-07-12 02:14:40 +07:00
|
|
|
/model Select AI model provider
|
2026-07-11 13:16:10 +07:00
|
|
|
/exit Exit application
|
|
|
|
|
/settings Open settings
|
|
|
|
|
/session Session management
|
|
|
|
|
|
|
|
|
|
Commands:
|
|
|
|
|
Any text is sent to the AI assistant as a prompt.
|
|
|
|
|
File paths use workspace-relative notation.
|
|
|
|
|
Use [0]/path for multi-workspace setups.
|
2026-07-11 23:45:13 +07:00
|
|
|
";
|