Metadata-Version: 2.5
Name: kbws-forge-cli
Version: 0.1.0
Summary: Forge CLI: agent scaffolding generator
Author-email: kbws13 <kbws13@163.com>
License-Expression: MIT
License-File: LICENSE
Keywords: cli,coding-agent,generator,scaffold
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.13
Requires-Dist: jinja2>=3.1
Requires-Dist: pydantic>=2.7
Requires-Dist: rich>=13.7
Requires-Dist: typer>=0.12
Description-Content-Type: text/markdown

# kbws-forge-cli

Forge 的 CLI 与脚手架生成器（PyPI 发布名：`kbws-forge-cli`），用于创建编码代理项目。

## 安装

```bash
pip install kbws-forge-cli
```

## 用法

```bash
forge init my-agent
cd my-agent
uv sync
uv run fastapi dev
```

生成的 `my-agent` 是一个基于 FastAPI 的最小后端，访问 http://127.0.0.1:8000 可看到 `{"message": "Hello World"}`。

## 开发

```bash
uv sync
uv run pytest packages/forge-cli/tests
```

## License

MIT License
