Metadata-Version: 2.4
Name: ChatDraw
Version: 0.1.2
Summary: ChatArch drawing assistant package shell
Author-email: ChatArch <1073853456@qq.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/ChatArch/ChatDraw
Project-URL: Repository, https://github.com/ChatArch/ChatDraw
Project-URL: Documentation, https://arch.gh.wzhecnu.cn/ChatDraw/
Keywords: chatdraw,chatarch,cli,drawing
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click<9.0,>=8.0
Provides-Extra: dev
Requires-Dist: build<2.0,>=1.2; extra == "dev"
Requires-Dist: pytest<9.0,>=8.0; extra == "dev"
Requires-Dist: twine<7.0,>=5.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: mkdocs<2.0,>=1.6; extra == "docs"
Requires-Dist: mkdocs-material<10.0,>=9.5; extra == "docs"
Requires-Dist: mkdocs-static-i18n<2.0,>=1.2; extra == "docs"
Requires-Dist: mike<3.0,>=2.0; extra == "docs"
Dynamic: license-file

<div align="center">
    <a href="https://pypi.python.org/pypi/ChatDraw">
        <img src="https://img.shields.io/pypi/v/ChatDraw.svg" alt="PyPI version" />
    </a>
    <a href="https://github.com/ChatArch/ChatDraw/actions/workflows/ci.yml">
        <img src="https://github.com/ChatArch/ChatDraw/actions/workflows/ci.yml/badge.svg" alt="Tests" />
    </a>
    <a href="https://arch.gh.wzhecnu.cn/ChatDraw/">
        <img src="https://img.shields.io/badge/docs-mkdocs-blue.svg" alt="Documentation" />
    </a>
</div>

<div align="center">

[英文版](README.en.md) | 简体中文
</div>

# ChatDraw

`ChatDraw` 是 ChatArch 绘图方向的 Python CLI 包壳。当前公开 CLI 已清理模板 `hello` 命令，只保留真实 root-only 包信息入口；后续新增绘图能力时，必须同步 Python API、CLI 树、文档和测试。

## 快速开始

```bash
pip install ChatDraw
chatdraw --version
chatdraw --tree
```

开发环境：

```bash
pip install -e ".[dev,docs]"
python -m pytest -q
mkdocs build --strict
python -m build
```

## CLI 树

```text
chatdraw  # ChatDraw drawing assistant package shell
├── --help  # show command help
├── --version  # show the installed package version
└── --tree  # show this CLI tree
```

`chatdraw hello` 是脚手架残留，已从公开 CLI 删除。

## 文档

- 文档首页：https://arch.gh.wzhecnu.cn/ChatDraw/
- CLI 树：https://arch.gh.wzhecnu.cn/ChatDraw/cli-tree/
- 英文文档：https://arch.gh.wzhecnu.cn/ChatDraw/en/

## 开发说明

扩展命令前先阅读 `DEVELOP.md` 和 `AGENTS.md`，并保持 `--tree`、README、MkDocs、测试与 changelog 同步。
