Metadata-Version: 2.4
Name: doc-swarm-ai
Version: 0.1.7
Summary: Multi-agent documentation generator via MCP -- generates, verifies, and maintains project documentation
Project-URL: Homepage, https://github.com/fozzfut/doc-swarm
Project-URL: Repository, https://github.com/fozzfut/doc-swarm
Author: Ilya Sidorov
License: MIT
License-File: LICENSE
Keywords: agents,ai,documentation,markdown,mcp,obsidian
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Documentation
Requires-Python: >=3.10
Requires-Dist: click<9,>=8.0
Requires-Dist: mcp>=1.0
Requires-Dist: pyyaml<8,>=6.0
Requires-Dist: swarm-kb>=0.2.0
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# DocSwarm

Multi-agent documentation generator via MCP.

Scans your code, generates Obsidian-compatible markdown docs with frontmatter, verifies existing docs against code, and identifies gaps.

## Install

```bash
pip install doc-swarm
```

## Usage

```bash
# Scan project and show code map
doc-swarm scan . --scope src/

# Generate documentation
doc-swarm generate . --scope src/ --output docs

# Verify existing docs
doc-swarm verify . --docs docs
```

## License

MIT
