Metadata-Version: 2.4
Name: dev-ready
Version: 0.1.1
Summary: Scaffold AI-development-ready FastAPI projects: pinned upstream template plus Claude Code skills, MCP config, and design docs
License: MIT License
        
        Copyright (c) 2026 Moofon Li
        
        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.
License-File: LICENSE
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# dev-ready

Scaffold a production-grade, AI-development-ready FastAPI project in one command:

```bash
uvx dev-ready init my-app
```

> Status: bootstrap phase. Repository structure and design docs are in place; the CLI is not yet implemented.

## What it generates

- Base: [fastapi/full-stack-fastapi-template](https://github.com/fastapi/full-stack-fastapi-template) at a pinned, CI-verified commit (never untested "latest")
- Overlay: CLAUDE.md, Claude Code skills, MCP server configuration, and design-doc templates so the generated project is immediately workable with AI coding agents

## Tech stack

Python >= 3.12, uv/uvx for distribution, questionary for prompts, GitHub Actions for upstream tracking and releases. Design details and ADRs: [docs/architecture.md](docs/architecture.md).

## Development

```bash
uv sync --dev
uv run dev-ready     # run the CLI
uv run pytest        # tests
uv run ruff check .  # lint
```

## Development workflow (multi-agent)

This repo is developed with an AI-agent workflow: Architect -> Engineer -> QA -> Security -> Release. Agent instructions live in [CLAUDE.md](CLAUDE.md) and reviewer roles in [.bob/](.bob/).

## Repository layout

```
docs/         requirements, architecture (ADRs), CLI spec
src/dev_ready cli / prompts / fetch / overlay / manifest / report
templates/    overlay assets copied into generated projects
tests/        unit / integration / e2e
.bob/         IBM Bob reviewer role definitions (QA, Security, SRE)
.github/      CI, weekly upstream bump, release workflows

Upstream pins live in src/dev_ready/manifest.json (bundled with the package,
so a released CLI always carries the pin it was tested with).
```

## License

MIT — see [LICENSE](LICENSE). Generated projects include content derived from fastapi/full-stack-fastapi-template (MIT).
