Metadata-Version: 2.1
Name: aipm-cli
Version: 0.1.0
Summary: Local project management tool for AI coding workflows
License: MIT License
        
        Copyright (c) 2026 arthurchan1906
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Keywords: ai,project-management,cli,developer-tools
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# AIPM CLI

AIPM CLI 是一个给 AI 编码项目使用的本地项目管理工具。

PyPI 分发名：`aipm-cli`

特性：
- `aipmc init` 在当前项目创建 `.pmai/` 隐藏目录
- JSON 数据库存放在 `.pmai/data/pmai.json`
- Web 配置存放在 `.pmai/config.json`
- AI 使用说明可写入 `.pmai/USAGE.md`
- CLI 可记录 canon、task、decision、commit、daily
- Web 直接用 Python 标准库 `http.server` 提供，无需 FastAPI
- 可通过 PyPI 安装并直接使用

常用命令：

```bash
pip install aipm-cli
aipmc init
aipmc help
aipmc info
aipmc canon show
aipmv
```

运行时目录：
- `.pmai/data/pmai.json`
- `.pmai/config.json`
- `.pmai/USAGE.md`

主要模块：
- `src/pmai/bootstrap.py`
- `src/pmai/cli_main.py`
- `src/pmai/usage_guide.py`
- `src/pmai/store.py`
- `src/pmai/web_server.py`
- `src/pmai/run_server.py`
