Help text, error messages, and strings for R-DOS. Use when writing user-facing text, help content, error messages, or modal labels. Reference spec/help.txt and spec/strings/ for authentic Q-DOS II phrasing.
R-DOS recreates Q-DOS II (1991) authentic text and messaging style.
spec/help.txt - Original Q-DOS II help textspec/strings/ - Organized strings by featurespec/qdos-strings.txt - Complete string dumpQ-DOS II style:
*** ERROR ***
Unable to open file: permission denied
Press any key to continue
In code:
self.state.error = Some("Unable to open file: permission denied".to_string());
self.state.view = MyView::Error;
fn help_content(&self) -> Vec<String> {
vec![
"My Plugin".to_string(),
"".to_string(),
"Brief description of what this does.".to_string(),
"".to_string(),
"Features:".to_string(),
" Feature 1 - Description".to_string(),
" Feature 2 - Description".to_string(),
"".to_string(),
"Keyboard shortcuts:".to_string(),
" Enter - Confirm action".to_string(),
" Esc - Cancel/Close".to_string(),
]
}
Standard format in help bars:
vec![
("Enter", "confirm"),
("Esc", "cancel"),
("↑↓", "navigate"),
("Space", "toggle"),
("F1", "help"),
]
" TITLE "" CONFIRM DELETE ", " SELECT FILE "" Playing [▶] "Copying FILE.TXT ====> /destination/path
Processing item 3 of 10 [████████░░░░░░░░] 30%
From original Q-DOS II:
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer