Conversation
- Fix generate_cli_docs.py for Typer 0.26.7: TyperOption/TyperArgument no longer subclass click.Option/click.Argument, so use duck-typing to detect option vs argument params - Re-enrich group-level help text for 9 CLI groups that had terse descriptions: arc, bot, config, decision, draft, inspect, manual, media, memory, snapshot - Regenerate CLI reference docs (11 files updated) - Update DOC_STATUS.md: all recurring checks pass, dates updated Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016pm7KsHD2225tMUcJUqi8M
This was referenced Jun 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
generate_cli_docs.pyfor Typer 0.26.7 —TyperOption/TyperArgumentno longer subclassclick.Option/click.Argument, causing all option/argument tables to silently disappear from generated CLI docs. Fixed with duck-typing detection (hasattr(param, 'opts')+ starts-with-dash check).arc,bot,config,decision,draft,inspect,manual,media,memory,snapshot. Updated bothTyper()constructors in individual files andadd_typer()calls in__init__.py.Changes since last run (11 commits)
No new backlog approvals
Checked PR #79 and #81 comments — no items approved for implementation.
Backlog (unchanged, waiting for approval)
State
e0675da→1afe4f1Generated by Claude Code