Metadata-Version: 2.4
Name: pmflow-cli
Version: 0.1.1
Summary: CLI for pmflow — project management for AI-assisted development
Project-URL: Repository, https://github.com/zhanglaixian/pmflow
Author-email: zhanglaixian <zhanglaixian@zhuanzhuan.com>
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.12
Requires-Dist: httpx>=0.27
Requires-Dist: pmflow-shared>=0.1.1
Requires-Dist: rich>=13.0
Requires-Dist: tomli-w>=1.0
Requires-Dist: tomli>=2.0; python_version < '3.11'
Requires-Dist: typer>=0.12
Description-Content-Type: text/markdown

# pmflow

CLI for pmflow — an integrated project management and AI-assisted development platform.

pmflow connects project planning (PRDs, design docs) with AI coding tools, providing seamless context access via CLI and Claude Code slash commands.

## Installation

```bash
pip install pmflow-cli
```

## Quick Start

```bash
# Configure server connection
pmflow login --server https://your-server.com --token pmf_xxx

# Install Claude Code skills (optional)
pmflow skills install

# Basic commands
pmflow whoami                    # Check connection
pmflow ws list                   # List workspaces
pmflow issue list -w my-project  # List issues
pmflow ctx dump 3 -w my-project  # Dump issue context for AI
```

## Claude Code Integration

After running `pmflow skills install`, the following slash commands are available in Claude Code:

- `/pmflow:plan-space {slug}` — Load workspace context and plan implementation
- `/pmflow:plan-task {slug}-{seq}` — Load issue context and plan implementation
- `/pmflow:prdfix {slug}-{seq}` — Summarize implementation and create Feishu doc
