docs: refresh doc-forge library and MCP bundle

- collect regenerated doc-forge combined site (wiki + lib)
- drop stale lib/docforge duplicate subtree
- mcp bundle now uses docs:// module resources
This commit is contained in:
2026-09-12 13:12:55 +05:30
parent bd8ba6e67c
commit 167d44fcfe
107 changed files with 4754 additions and 40058 deletions

View File

@@ -343,6 +343,10 @@
@@ -427,6 +431,52 @@
<li class="md-nav__item">
<a href="../../../wiki/05_development/03_gsdfc_guide/" class="md-nav__link">
<span class="md-ellipsis">
Gsdfc Guide
</span>
</a>
</li>
<li class="md-nav__item">
<a href="../../../wiki/05_development/04_mcp_guide/" class="md-nav__link">
<span class="md-ellipsis">
Mcp Guide
</span>
</a>
</li>
</ul>
</nav>
@@ -1458,6 +1508,16 @@
<p>This module defines the <code>Project</code> class, the top-level container used by
doc-forge to represent a documented codebase. A <code>Project</code> aggregates multiple
modules and provides access to them through a unified interface.</p>
<hr />
<details class="notes" open>
<summary>Notes</summary>
<ul>
<li>Modules are keyed by their dotted import path.</li>
<li>Objects are renderer-agnostic; the same model feeds every renderer.</li>
</ul>
</details> <hr />
@@ -1514,7 +1574,7 @@ introspection. Each module is stored by its dotted import path.</p>
<tr class="doc-section-item">
<td><code><span title="docforge.models.project.Project.modules">modules</span></code></td>
<td>
<code>Dict[str, <a class="autorefs autorefs-internal" title="docforge.models.module.Module" href="../module/#docforge.models.module.Module">Module</a>]</code>
<code>dict[str, <a class="autorefs autorefs-internal" title="docforge.models.module.Module" href="../module/#docforge.models.module.Module">Module</a>]</code>
</td>
<td>
<div class="doc-md-description">
@@ -1557,6 +1617,19 @@ introspection. Each module is stored by its dotted import path.</p>
</table>
<details class="example" open>
<summary>Example</summary>
<p>Create a project and register a module:</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>
<span class="normal">3</span>
<span class="normal">4</span></pre></div></td><td class="code"><div><pre><span></span><code>```python
project = Project(&quot;mypackage&quot;)
project.add_module(module)
```
</code></pre></div></td></tr></table></div>
</details>
<div class="doc doc-children">