Metadata-Version: 2.4
Name: create-vibe-app
Version: 0.1.0
Summary: A CLI tool to scaffold Vibe Coding projects
Author-email: Vibe Coding Team <haoshaochun@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: typer[all]
Requires-Dist: rich

# 🎸 create-vibe-app

Scaffold AI-friendly project structures for **Vibe Coding** – a methodology that helps AI agents work more effectively on your codebase.

## ✨ What is Vibe Coding?

Vibe Coding is a development approach where:
- **AI agents** handle implementation based on clear structures
- **Knowledge compounds** through wiki and experience recording
- **Complexity-based routing** ensures the right workflow for each task

## 📦 Installation

```bash
pip install create-vibe-app
```

## 🚀 Usage

```bash
create-vibe-app my-project
cd my-project
code .
```

Then in your AI assistant:
> "Read MAIN.md, then help me build [your idea]"

## 📁 Generated Structure

```
my-project/
├── MAIN.md           # Project entry point
├── agent/            # AI agent definitions
│   ├── phase-router.md
│   ├── requirement-manager.md
│   ├── design-manager.md
│   ├── implementation-executor.md
│   └── experience-depositor.md
├── skill/            # Reusable workflow skills (10)
├── wiki/             # Project knowledge base
├── requirement/      # Task tracking
├── mcp/              # External tool configs
├── code/             # Your source code
└── reference/        # Reference implementations
```

## 🔄 Workflow

```
User Task → Analyze Intent → Detect Complexity → Route → Update Knowledge
                                ↓
                    Simple: Direct execution
                    Medium: Requirement → Design → Implement
                    Complex: Full flow + User confirmation
```

## 🤝 Contributing

Issues and PRs welcome!

## 📄 License

MIT
