feat(bd-91j1): enhance robot-docs with quick_start and example_output

Add quick_start section with glab equivalents, lore-exclusive features,
and read/write split guidance. Add example_output to issues, mrs, search,
and who commands. Update strip_schemas to also strip example_output in
brief mode. Update beads tracking state.

Closes: bd-91j1
This commit is contained in:
teernisse
2026-02-12 11:34:10 -05:00
parent ecbfef537a
commit 35c828ba73
3 changed files with 65 additions and 1 deletions

View File

@@ -77,6 +77,7 @@ pub fn strip_schemas(commands: &mut serde_json::Value) {
for (_cmd_name, cmd) in map.iter_mut() {
if let Some(obj) = cmd.as_object_mut() {
obj.remove("response_schema");
obj.remove("example_output");
}
}
}