updated mcp
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-03-08 17:57:34 +05:30
parent 9191de9dff
commit 0e49f02c4c
167 changed files with 7632 additions and 98942 deletions

View File

@@ -961,6 +961,15 @@
<nav class="md-nav" aria-label="cli">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#docforge.cli--summary" class="md-nav__link">
<span class="md-ellipsis">
Summary
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#docforge.cli--typical-usage" class="md-nav__link">
<span class="md-ellipsis">
@@ -1006,7 +1015,8 @@
<div class="doc doc-contents first">
<p>Command line interface entry point for doc-forge.</p>
<h3 id="docforge.cli--summary">Summary</h3>
<p>Command line interface entry point for doc-forge.</p>
<p>This module exposes the primary CLI entry function used by the
<code>doc-forge</code> command. The actual command implementation resides in
<code>docforge.cli.main</code>, while this module provides a stable import path
@@ -1016,14 +1026,19 @@ generating renderer sources, building documentation sites, exporting
machine-readable documentation bundles, and starting development or MCP
servers.</p>
<hr />
<h4 id="docforge.cli--typical-usage">Typical usage</h4>
<h3 id="docforge.cli--typical-usage">Typical usage</h3>
<p>The CLI is normally invoked through the installed command:</p>
<div class="language-text highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal">1</span></pre></div></td><td class="code"><div><pre><span></span><code>doc-forge &lt;command&gt; [options]
</code></pre></div></td></tr></table></div>
<div class="language-bash highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal"><a href="#__codelineno-0-1">1</a></span></pre></div></td><td class="code"><div><pre><span></span><code><span id="__span-0-1"><a id="__codelineno-0-1" name="__codelineno-0-1"></a>doc-forge<span class="w"> </span>&lt;command&gt;<span class="w"> </span><span class="o">[</span>options<span class="o">]</span>
</span></code></pre></div></td></tr></table></div>
<p>Programmatic invocation is also possible:</p>
<p>Example:</p>
<div class="language-text highlight"><table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre><span></span><span class="normal">1</span>
<span class="normal">2</span></pre></div></td><td class="code"><div><pre><span></span><code>from docforge.cli import main
<span class="normal">2</span>
<span class="normal">3</span>
<span class="normal">4</span></pre></div></td><td class="code"><div><pre><span></span><code>```python
from docforge.cli import main
main()
```
</code></pre></div></td></tr></table></div>
<hr />