From fdce66f28959c86641f074a47e5fadae05c56469 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:57:11 +0000 Subject: [PATCH 1/2] Initial plan From ef44df11a7703ae8978b8acf795476330d53c42a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 16:59:14 +0000 Subject: [PATCH 2/2] Add coh docs command Co-authored-by: jaraco <308610+jaraco@users.noreply.github.com> --- __init__.py | 1 + __main__.py | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/__init__.py b/__init__.py index 0cfe8dd..937e69f 100644 --- a/__init__.py +++ b/__init__.py @@ -6,5 +6,6 @@ """ __requires__ = [ + 'coherent.docs', 'coherent.test', ] diff --git a/__main__.py b/__main__.py index 3066bde..a75b8ed 100644 --- a/__main__.py +++ b/__main__.py @@ -37,6 +37,12 @@ def build() -> None: runpy.run_module('coherent.build', run_name='__main__') +@passthrough_command +def docs() -> None: + del sys.argv[1] + runpy.run_module('coherent.docs', run_name='__main__') + + @app.command(context_settings=dict(allow_extra_args=True)) def tag( kind_or_name: str,